diff --git a/src/server/API/API.csproj b/src/server/API/API.csproj
index aa0111a2b..b68460d17 100644
--- a/src/server/API/API.csproj
+++ b/src/server/API/API.csproj
@@ -25,6 +25,12 @@
+
+
+
+
+
+
@@ -55,5 +61,11 @@
+
+
+
+
+
+
diff --git a/src/server/API/Authorization/ShrineUserContext.cs b/src/server/API/Authorization/ShrineUserContext.cs
new file mode 100644
index 000000000..5aba9c486
--- /dev/null
+++ b/src/server/API/Authorization/ShrineUserContext.cs
@@ -0,0 +1,80 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+using Model.Authorization;
+using Model.Options;
+using Model.Integration.Shrine;
+
+namespace API.Authorization
+{
+ public class ShrineUserContext : IUserContext
+ {
+ readonly ShrineResearcher researcher;
+
+ public ShrineUserContext(ShrineResearcher researcher)
+ {
+ this.researcher = researcher;
+ }
+
+ public string[] Groups { get; } = Array.Empty();
+
+ public string[] Roles { get; } = new string[] { Role.Fed };
+
+ public bool IsInRole(string role) => role == Role.Fed;
+
+ public bool IsAdmin => false;
+
+ public bool IsQuarantined => false;
+
+ public string Identity => researcher.UserName;
+
+
+ string iss;
+ public string Issuer
+ {
+ get
+ {
+ iss ??= researcher.UserDomainName;
+ return iss;
+ }
+ }
+
+ string uuid;
+ public string UUID
+ {
+ get
+ {
+ if (uuid == null)
+ {
+ var issu = Issuer;
+ var id = Identity;
+ if (id != null && issu != null)
+ {
+ uuid = $"{id}@{issu}";
+ }
+ }
+ return uuid;
+ }
+ }
+
+ public bool IsInstitutional => false;
+
+ readonly Guid idNonce = Guid.NewGuid();
+ public Guid IdNonce => idNonce;
+
+ public SessionType SessionType => SessionType.Research;
+
+ Guid? sessionNonce = Guid.NewGuid();
+ public Guid? SessionNonce => sessionNonce;
+
+ public bool Identified => false;
+
+ public AuthenticationMechanism AuthenticationMechanism => AuthenticationMechanism.Unsecured;
+
+ public override string ToString() => UUID;
+ }
+}
+
diff --git a/src/server/API/Controllers/CohortCountController.cs b/src/server/API/Controllers/CohortCountController.cs
index cda84c9f7..c5fdbb2cb 100644
--- a/src/server/API/Controllers/CohortCountController.cs
+++ b/src/server/API/Controllers/CohortCountController.cs
@@ -7,6 +7,9 @@
using System.Threading;
using System.Threading.Tasks;
using API.DTO.Cohort;
+using API.DTO.Integration.Shrine;
+using API.DTO.Integration.Shrine4_1;
+using API.Integration.Shrine4_1;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
@@ -15,10 +18,18 @@
using Model.Cohort;
using Model.Compiler;
using Model.Error;
+using Newtonsoft.Json;
namespace API.Controllers
{
- [Authorize(Policy = TokenType.Access)]
+ public class Test
+ {
+ public string QueryJSON { get; set; }
+ }
+
+ //[Authorize(Policy = TokenType.Access)]
+ [AllowAnonymous]
+ [Produces("application/json")]
[Route("api/cohort/count")]
public class CohortCountController : Controller
{
@@ -29,7 +40,30 @@ public CohortCountController(ILogger logger)
log = logger;
}
- [HttpPost]
+ [HttpPost("shrine")]
+ public async Task> ShrineCount(
+ [FromBody] Test input,
+ [FromServices] ShrineQueryDefinitionConverter queryConverter,
+ [FromServices] CohortCounter counter,
+ CancellationToken cancelToken)
+ {
+ try
+ {
+ var dto = JsonConvert.DeserializeObject(input.QueryJSON);
+ var shrineQuery = dto.ToQuery();
+
+ var query = queryConverter.ToLeafQuery(shrineQuery);
+ var cohort = await counter.Count(query, cancelToken);
+
+ return Ok(cohort.Count.SqlStatements);
+ }
+ catch (Exception ex)
+ {
+ return BadRequest(ex.Message);
+ }
+ }
+
+ [HttpPost]
public async Task> Count(
[FromBody] PatientCountQueryDTO patientCountQuery,
[FromServices] CohortCounter counter,
diff --git a/src/server/API/Controllers/ConfigController.cs b/src/server/API/Controllers/ConfigController.cs
index 50277b017..757d0bf39 100644
--- a/src/server/API/Controllers/ConfigController.cs
+++ b/src/server/API/Controllers/ConfigController.cs
@@ -24,6 +24,7 @@ public class ConfigController : Controller
readonly ClientOptions clientOptions;
readonly AttestationOptions attestationOptions;
readonly DeidentificationOptions deidentOptions;
+ readonly IntegrationOptions integrationOptions;
readonly IServerStateCache serverStateCache;
public ConfigController(
@@ -33,6 +34,7 @@ public ConfigController(
IOptions clientOptions,
IOptions attestationOptions,
IOptions deidentOptions,
+ IOptions integrationOptions,
IServerStateCache serverStateCache)
{
this.authenticationOptions = authenticationOptions.Value;
@@ -41,6 +43,7 @@ public ConfigController(
this.clientOptions = clientOptions.Value;
this.attestationOptions = attestationOptions.Value;
this.deidentOptions = deidentOptions.Value;
+ this.integrationOptions = integrationOptions.Value;
this.serverStateCache = serverStateCache;
}
@@ -112,6 +115,15 @@ public ActionResult Get()
{
Server = versionOptions.Version.ToString(),
Db = serverStateCache.GetServerState().Db.Version.ToString()
+ },
+ Integration = new IntegrationConfigDTO
+ {
+ Enabled = integrationOptions.Enabled,
+ Shrine = integrationOptions.SHRINE != null
+ ? new IntegrationConfigDTO.IntegrationTypeDTO
+ {
+ Enabled = integrationOptions.SHRINE.Enabled
+ } : null
}
};
diff --git a/src/server/API/Controllers/ExportController.cs b/src/server/API/Controllers/ExportController.cs
index 12780782a..2e355ebd2 100644
--- a/src/server/API/Controllers/ExportController.cs
+++ b/src/server/API/Controllers/ExportController.cs
@@ -12,9 +12,7 @@
using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Model.Authorization;
-using Model.Export;
using Model.Options;
-using Services.Export;
namespace API.Controllers
{
diff --git a/src/server/API/Controllers/IntegrationController.cs b/src/server/API/Controllers/IntegrationController.cs
new file mode 100644
index 000000000..f5227a800
--- /dev/null
+++ b/src/server/API/Controllers/IntegrationController.cs
@@ -0,0 +1,124 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+using System.Threading;
+using API.DTO.Cohort;
+using API.DTO.Integration.Shrine;
+using API.Integration.Shrine;
+using API.Integration.Shrine4_1;
+using Microsoft.AspNetCore.Authorization;
+using Microsoft.AspNetCore.Http;
+using Microsoft.AspNetCore.Mvc;
+using Microsoft.Extensions.Logging;
+using Microsoft.Extensions.Options;
+using Model.Authorization;
+using Model.Integration.Shrine;
+using Model.Options;
+
+namespace API.Controllers
+{
+ [Authorize(Policy = TokenType.Access)]
+ [Authorize(Policy = Access.Institutional)]
+ [Route("api/integration")]
+ public class IntegrationController : Controller
+ {
+ readonly ILogger log;
+ readonly IntegrationOptions opts;
+ readonly ShrineQueryDefinitionConverter converter;
+ readonly IUserContext user;
+ readonly IShrineUserQueryCache userQueryCache;
+ readonly IShrineQueryResultCache queryResultCache;
+ readonly IShrineMessageBroker broker;
+
+ public IntegrationController(
+ ILogger log,
+ IOptions opts,
+ IUserContext user,
+ IShrineUserQueryCache userQueryCache,
+ IShrineQueryResultCache queryResultCache,
+ IShrineMessageBroker broker,
+ ShrineQueryDefinitionConverter converter
+ )
+ {
+ this.log = log;
+ this.opts = opts.Value;
+ this.user = user;
+ this.userQueryCache = userQueryCache;
+ this.queryResultCache = queryResultCache;
+ this.broker = broker;
+ this.converter = converter;
+ }
+
+ [HttpPost("shrine/count")]
+ public ActionResult ShrineCount(
+ [FromBody] PatientCountQueryDTO patientCountQuery
+ )
+ {
+ if (!opts.Enabled || !opts.SHRINE.Enabled) return BadRequest();
+
+ try
+ {
+ var queryId = ShrineQueryDefinitionConverter.GenerateRandomLongId();
+ var queryDefinition = converter.ToShrineQuery(patientCountQuery);
+
+ var researcher = opts.SHRINE.Researcher;
+ var node = opts.SHRINE.Node;
+ var topic = opts.SHRINE.Topic;
+ var runQuery = new ShrineRunQueryForResult
+ {
+ Query = queryDefinition,
+ Researcher = new ShrineResearcher
+ {
+ Id = researcher.Id,
+ VersionInfo = queryDefinition.VersionInfo,
+ UserName = researcher.Name,
+ UserDomainName = researcher.Domain,
+ NodeId = node.Id
+ },
+ Topic = new ShrineTopic
+ {
+ Id = topic.Id,
+ VersionInfo = queryDefinition.VersionInfo,
+ ResearcherId = researcher.Id,
+ Name = topic.Name,
+ Description = topic.Description
+ },
+ ProtocolVersion = 2
+ };
+ var dto = new ShrineRunQueryForResultDTO(runQuery);
+ userQueryCache.Put(queryId, user, patientCountQuery);
+ broker.SendMessageToHub(queryId, dto, ShrineDeliveryContentsType.RunQueryAtHub);
+
+ return Ok(queryId);
+ }
+ catch (Exception ex)
+ {
+ log.LogError("Failed to initialize SHRINE query. Error:{Error}", ex.Message);
+ return StatusCode(StatusCodes.Status500InternalServerError);
+ }
+ }
+
+ [HttpGet("shrine/cohort/{queryId}/count")]
+ public ActionResult GetShrineCountResult(long queryId)
+ {
+ if (!opts.Enabled || !opts.SHRINE.Enabled) return BadRequest();
+
+ try
+ {
+ var results = queryResultCache.GetOrDefault(queryId);
+ if (results == null) return NotFound();
+
+ return Ok(results);
+ }
+ catch (Exception ex)
+ {
+ log.LogError("Failed to retrieve SHRINE query results. Error:{Error}", ex.Message);
+ return StatusCode(StatusCodes.Status500InternalServerError);
+ }
+ }
+ }
+}
+
diff --git a/src/server/API/Controllers/QueryController.cs b/src/server/API/Controllers/QueryController.cs
index 969122b3b..940483473 100644
--- a/src/server/API/Controllers/QueryController.cs
+++ b/src/server/API/Controllers/QueryController.cs
@@ -28,13 +28,11 @@ public class QueryController : Controller
{
readonly ILogger log;
readonly QueryManager manager;
- readonly IUserContext user;
- public QueryController(QueryManager manager, ILogger logger, IUserContext userContext)
+ public QueryController(QueryManager manager, ILogger logger)
{
log = logger;
this.manager = manager;
- user = userContext;
}
[Authorize(Policy = Access.Institutional)]
@@ -81,6 +79,7 @@ public async Task> Get(string ident)
public async Task> Save(
string id,
[FromBody] QuerySaveDTO querySave,
+ [FromServices] IUserContext user,
CancellationToken cancelToken)
{
try
diff --git a/src/server/API/Controllers/UserController.cs b/src/server/API/Controllers/UserController.cs
index 3fed3c070..92c7b2569 100644
--- a/src/server/API/Controllers/UserController.cs
+++ b/src/server/API/Controllers/UserController.cs
@@ -25,27 +25,15 @@ public class UserController : Controller
{
readonly ILogger logger;
readonly AuthenticationOptions authenticationOptions;
- readonly LeafVersionOptions versionOptions;
- readonly CohortOptions cohortOptions;
- readonly ClientOptions clientOptions;
readonly IUserJwtProvider jwtProvider;
- readonly IUserContext userContext;
public UserController(
ILogger logger,
IOptions authenticationOptions,
- IOptions versionOptions,
- IOptions cohortOptions,
- IOptions clientOptions,
- IUserJwtProvider userJwtProvider,
- IUserContext userContext)
+ IUserJwtProvider userJwtProvider)
{
this.logger = logger;
this.authenticationOptions = authenticationOptions.Value;
- this.versionOptions = versionOptions.Value;
- this.cohortOptions = cohortOptions.Value;
- this.clientOptions = clientOptions.Value;
- this.userContext = userContext;
jwtProvider = userJwtProvider;
}
@@ -76,18 +64,20 @@ public async Task> GetUser()
[HttpGet("attest")]
public ActionResult Attest(
[FromQuery] Attestation attestation,
+ [FromServices] IUserContextProvider userContextProvider,
[FromServices] IInvalidatedTokenCache invalidatedCache)
{
- if (authenticationOptions.Mechanism != userContext.AuthenticationMechanism)
+ var user = userContextProvider.GetUserContext();
+ if (authenticationOptions.Mechanism != user.AuthenticationMechanism)
{
return StatusCode(StatusCodes.Status401Unauthorized);
}
try
{
- if (invalidatedCache.IsInvalidated(userContext.IdNonce))
+ if (invalidatedCache.IsInvalidated(user.IdNonce))
{
- logger.LogWarning("Id token is invalidated. IdNonce:{IdNonce} Attestation:{@Attestation}", userContext.IdNonce, attestation);
+ logger.LogWarning("Id token is invalidated. IdNonce:{IdNonce} Attestation:{@Attestation}", user.IdNonce, attestation);
return StatusCode(StatusCodes.Status401Unauthorized);
}
@@ -107,18 +97,21 @@ public ActionResult Attest(
[Authorize(Policy = TokenType.Access)]
[Authorize(Policy = Access.Institutional)]
[HttpGet("refresh")]
- public ActionResult Refresh([FromServices] IInvalidatedTokenCache invalidatedCache)
+ public ActionResult Refresh(
+ [FromServices] IInvalidatedTokenCache invalidatedCache,
+ [FromServices] IUserContextProvider userContextProvider)
{
- if (authenticationOptions.Mechanism != userContext.AuthenticationMechanism)
+ var user = userContextProvider.GetUserContext();
+ if (authenticationOptions.Mechanism != user.AuthenticationMechanism)
{
return StatusCode(StatusCodes.Status401Unauthorized);
}
try
{
- if (invalidatedCache.IsInvalidated(userContext.IdNonce))
+ if (invalidatedCache.IsInvalidated(user.IdNonce))
{
- logger.LogWarning("Id token is invalidated. IdNonce:{IdNonce} Attestation:{@Attestation}", userContext.IdNonce);
+ logger.LogWarning("Id token is invalidated. IdNonce:{IdNonce} Attestation:{@Attestation}", user.IdNonce);
return StatusCode(StatusCodes.Status401Unauthorized);
}
diff --git a/src/server/API/DTO/Config/ConfigDTO.cs b/src/server/API/DTO/Config/ConfigDTO.cs
index 41fec882f..4d0611b73 100644
--- a/src/server/API/DTO/Config/ConfigDTO.cs
+++ b/src/server/API/DTO/Config/ConfigDTO.cs
@@ -15,6 +15,7 @@ public class ConfigDTO
public CohortConfigDTO Cohort { get; set; }
public ClientOptionsDTO Client { get;set; }
public VersionConfigDTO Version { get; set; }
+ public IntegrationConfigDTO Integration { get; set; }
}
public class AuthenticationConfigDTO
@@ -106,4 +107,15 @@ public class VersionConfigDTO
public string Server { get; set; }
public string Db { get; set; }
}
+
+ public class IntegrationConfigDTO
+ {
+ public bool Enabled { get; set; }
+ public IntegrationTypeDTO Shrine { get; set; }
+
+ public class IntegrationTypeDTO
+ {
+ public bool Enabled { get; set; }
+ }
+ }
}
diff --git a/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs b/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs
new file mode 100644
index 000000000..d69ea47ab
--- /dev/null
+++ b/src/server/API/DTO/Integration/Shrine/4_1/ShrineExpressionDTO.cs
@@ -0,0 +1,337 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+using System.Linq;
+using System.Collections.Generic;
+using Model.Compiler;
+using Model.Integration.Shrine4_1;
+
+namespace API.DTO.Integration.Shrine4_1
+{
+ public class ShrineQueryDefinitionDTO
+ {
+ public ShrineConjunctionDTO Expression { get; set; }
+
+ public ShrineQueryDefinitionDTO() { }
+
+ public ShrineQueryDefinitionDTO(ShrineQueryDefinition definition)
+ {
+ Expression = new ShrineConjunctionDTO(definition.Expression);
+ }
+ }
+
+ public class ShrineAnonymousEncodedClassDTO
+ {
+ public string EncodedClass { get; set; }
+
+ public ShrineAnonymousEncodedClassDTO() { }
+
+ public ShrineAnonymousEncodedClassDTO(string encodedClass)
+ {
+ EncodedClass = encodedClass;
+ }
+ }
+
+ public abstract class ShrineGroupDTO : ShrineAnonymousEncodedClassDTO
+ {
+ public int NMustBeTrue { get; set; }
+ public ShrineConjunctionCompareDTO Compare { get; set; }
+
+ public ShrineGroupDTO() { }
+
+ public ShrineGroupDTO(ShrineGroup expr)
+ {
+ NMustBeTrue = expr.NMustBeTrue;
+ Compare = new ShrineConjunctionCompareDTO(expr.Compare);
+ }
+ }
+
+ public class ShrineConjunctionDTO : ShrineAnonymousEncodedClassDTO
+ {
+ public int NMustBeTrue { get; set; }
+ public ShrineConjunctionCompareDTO Compare { get; set; }
+ public IEnumerable Possibilities { get; set; }
+
+ public ShrineConjunctionDTO()
+ {
+ EncodedClass = "Conjunction";
+ }
+
+ public ShrineConjunctionDTO(ShrineConjunction conjunction)
+ {
+ EncodedClass = "Conjunction";
+ Possibilities = conjunction.Possibilities.Select(p => new ShrineConceptGroupOrTimelineDTO(p));
+ }
+ }
+
+ public class ShrineConceptGroupOrTimelineDTO : ShrineConceptGroupDTO
+ {
+ public ShrineConceptGroupDTO First { get; set; }
+ public IEnumerable Subsequent { get; set; } = new List();
+
+ public bool IsConceptGroup => First == null;
+ public bool IsTimeline => First != null;
+
+ public ShrineConceptGroupOrTimelineDTO() { }
+
+ public ShrineConceptGroupOrTimelineDTO(ShrineConceptGroupOrTimeline cg)
+ {
+ if (cg.IsConceptGroup)
+ {
+ Concepts = new ShrineConceptConjunctionDTO(cg.Concepts);
+ EncodedClass = "ConceptGroup";
+ }
+ else
+ {
+ First = new ShrineConceptGroupDTO(cg.First);
+ Subsequent = cg.Subsequent.Select(s => new ShrineTimelineSubsequentEventDTO(s));
+ EncodedClass = "Timeline";
+ }
+ }
+ }
+
+ public class ShrineTimelineSubsequentEventDTO
+ {
+ public ShrineConceptGroupDTO ConceptGroup { get; set; }
+ public ShrineAnonymousEncodedClassDTO PreviousOccurrence { get; set; }
+ public ShrineAnonymousEncodedClassDTO ThisOccurrence { get; set; }
+ public ShrineTimelineSubsequentEventTimeConstraintDTO TimeConstraint { get; set; }
+
+ public ShrineTimelineSubsequentEventDTO() { }
+
+ public ShrineTimelineSubsequentEventDTO(ShrineTimelineSubsequentEvent sub)
+ {
+ ConceptGroup = new ShrineConceptGroupDTO(sub.ConceptGroup);
+ PreviousOccurrence = new ShrineAnonymousEncodedClassDTO(sub.PreviousOccurrence.ToString());
+ ThisOccurrence = new ShrineAnonymousEncodedClassDTO(sub.ThisOccurrence.ToString());
+ TimeConstraint = sub.TimeConstraint != null ? new ShrineTimelineSubsequentEventTimeConstraintDTO(sub.TimeConstraint) : null;
+ }
+ }
+
+ public class ShrineTimelineSubsequentEventTimeConstraintDTO
+ {
+ public ShrineAnonymousEncodedClassDTO Operator { get; set; }
+ public ShrineAnonymousEncodedClassDTO TimeUnit { get; set; }
+ public int Value { get; set; }
+
+ public ShrineTimelineSubsequentEventTimeConstraintDTO() { }
+
+ public ShrineTimelineSubsequentEventTimeConstraintDTO(ShrineTimelineSubsequentEventTimeConstraint timeConstraint)
+ {
+ Operator = new ShrineAnonymousEncodedClassDTO(timeConstraint.Operator.ToString());
+ TimeUnit = new ShrineAnonymousEncodedClassDTO(timeConstraint.TimeUnit.ToString());
+ Value = timeConstraint.Value;
+ }
+ }
+
+ public class ShrineConceptGroupDTO : ShrineGroupDTO
+ {
+ public long? StartDate { get; set; }
+ public long? EndDate { get; set; }
+ public int OccursAtLeast { get; set; } = 1;
+ public ShrineConceptConjunctionDTO Concepts { get; set; }
+
+ public ShrineConceptGroupDTO() { }
+
+ public ShrineConceptGroupDTO(ShrineConceptGroup group) : base(group)
+ {
+ StartDate = group.StartDate != null ? ((DateTimeOffset)group.StartDate).ToUnixTimeMilliseconds() : null;
+ EndDate = group.EndDate != null ? ((DateTimeOffset)group.EndDate).ToUnixTimeMilliseconds() : null;
+ OccursAtLeast = group.OccursAtLeast.HasValue ? (int)group.OccursAtLeast : 1;
+ Concepts = new ShrineConceptConjunctionDTO(group.Concepts);
+ }
+ }
+
+ public class ShrineConceptConjunctionDTO : ShrineAnonymousEncodedClassDTO
+ {
+ public int NMustBeTrue { get; set; }
+ public ShrineConjunctionCompareDTO Compare { get; set; }
+ public IEnumerable Possibilities { get; set; }
+
+ public ShrineConceptConjunctionDTO() { }
+
+ public ShrineConceptConjunctionDTO(ShrineConceptConjunction conjunction)
+ {
+ NMustBeTrue = conjunction.NMustBeTrue;
+ Compare = new ShrineConjunctionCompareDTO(conjunction.Compare);
+ Possibilities = conjunction.Possibilities.Select(p => new ShrineConceptDTO(p));
+ }
+ }
+
+ public class ShrineConceptDTO
+ {
+ public string DisplayName { get; set; }
+ public string TermPath { get; set; }
+ public ShrineConceptConstraintDTO Constraint { get; set; }
+ public static readonly string EncodedClass = "Concept";
+
+ public ShrineConceptDTO() { }
+
+ public ShrineConceptDTO(ShrineConcept concept)
+ {
+ DisplayName = concept.DisplayName;
+ TermPath = concept.TermPath;
+ Constraint = new ShrineConceptConstraintDTO(concept.Constraint);
+ }
+ }
+
+ public class ShrineConceptConstraintDTO
+ {
+ public ShrineAnonymousEncodedClassDTO Operator { get; set; }
+ public decimal? Value { get; set; }
+ public decimal? Value1 { get; set; }
+ public decimal? Value2 { get; set; }
+ public string Unit { get; set; }
+ public string EncodedClass { get; set; }
+
+ public ShrineConceptConstraintDTO() { }
+
+ public ShrineConceptConstraintDTO(ShrineConceptConstraint constraint)
+ {
+ Operator = new ShrineAnonymousEncodedClassDTO { EncodedClass = constraint.Operator.ToString() };
+ Value = constraint.Value;
+ Value1 = constraint.Value1;
+ Value2 = constraint.Value2;
+ Unit = constraint.Unit;
+ }
+ }
+
+ public class ShrineConjunctionCompareDTO : ShrineAnonymousEncodedClassDTO
+ {
+ public ShrineConjunctionCompareDTO() { }
+
+ public ShrineConjunctionCompareDTO(ShrineConjunctionCompare compare)
+ {
+ EncodedClass = compare.EncodedClass.ToString();
+ }
+ }
+
+ public static class ShrineQueryDefinitionExtensions
+ {
+ public static ShrineConjunctionCompare ToCompare(this ShrineConjunctionCompareDTO dto)
+ {
+ _ = Enum.TryParse(dto.EncodedClass, out ShrineConjunctionComparison encodedClass);
+ return new ShrineConjunctionCompare
+ {
+ EncodedClass = encodedClass
+ };
+ }
+
+ public static ShrineConcept ToConcept(this ShrineConceptDTO dto)
+ {
+ return new ShrineConcept
+ {
+ DisplayName = dto.DisplayName,
+ TermPath = dto.TermPath,
+ Constraint = dto.Constraint != null ? dto.Constraint.ToConstraint() : null
+ };
+ }
+
+ public static ShrineConceptConstraint ToConstraint(this ShrineConceptConstraintDTO dto)
+ {
+ NumericFilterType op = NumericFilterType.None;
+ if (dto.Operator != null)
+ {
+ _ = Enum.TryParse(dto.Operator.EncodedClass, out NumericFilterType filterType);
+ op = filterType;
+ }
+ if (op == NumericFilterType.None && dto.Value1.HasValue && dto.Value2.HasValue)
+ {
+ op = NumericFilterType.Between;
+ }
+
+ return new ShrineConceptConstraint
+ {
+ Operator = op,
+ Value = dto.Value,
+ Value1 = dto.Value1,
+ Value2 = dto.Value2,
+ Unit = dto.Unit
+ };
+ }
+
+ public static ShrineConceptGroup ToConceptGroup(this ShrineConceptGroupDTO dto)
+ {
+ return new ShrineConceptGroup
+ {
+ StartDate = dto.StartDate != null ? DateTimeOffset.FromUnixTimeMilliseconds((long)dto.StartDate).UtcDateTime : null,
+ EndDate = dto.EndDate != null ? DateTimeOffset.FromUnixTimeMilliseconds((long)dto.EndDate).UtcDateTime : null,
+ OccursAtLeast = dto.OccursAtLeast,
+ Concepts = dto.Concepts.ToConjunction()
+ };
+ }
+
+ public static ShrineConceptGroupOrTimeline ToConceptGroupOrTimeline(this ShrineConceptGroupOrTimelineDTO dto)
+ {
+ return new ShrineConceptGroupOrTimeline
+ {
+ StartDate = dto.StartDate != null ? DateTimeOffset.FromUnixTimeMilliseconds((long)dto.StartDate).UtcDateTime : null,
+ EndDate = dto.EndDate != null ? DateTimeOffset.FromUnixTimeMilliseconds((long)dto.EndDate).UtcDateTime : null,
+ OccursAtLeast = dto.OccursAtLeast,
+ Concepts = dto.IsConceptGroup ? dto.Concepts.ToConjunction() : null,
+ First = dto.IsTimeline ? dto.First.ToConceptGroup() : null,
+ Subsequent = dto.IsTimeline ? dto.Subsequent.Select(s => s.ToSubsequentEvent()) : null
+ };
+ }
+
+ public static ShrineConjunction ToConjunction(this ShrineConjunctionDTO dto)
+ {
+ return new ShrineConjunction
+ {
+ NMustBeTrue = dto.NMustBeTrue,
+ Compare = dto.Compare.ToCompare(),
+ Possibilities = dto.Possibilities.Select(p => p.ToConceptGroupOrTimeline())
+ };
+ }
+
+ public static ShrineTimelineSubsequentEvent ToSubsequentEvent(this ShrineTimelineSubsequentEventDTO dto)
+ {
+ _ = Enum.TryParse(dto.PreviousOccurrence.EncodedClass, out ShrineOccurrence previousOccurrence);
+ _ = Enum.TryParse(dto.ThisOccurrence.EncodedClass, out ShrineOccurrence thisOccurrence);
+
+ return new ShrineTimelineSubsequentEvent
+ {
+ ConceptGroup = dto.ConceptGroup.ToConceptGroup(),
+ PreviousOccurrence = previousOccurrence,
+ ThisOccurrence = thisOccurrence,
+ TimeConstraint = dto.TimeConstraint != null ? dto.TimeConstraint.ToTimeConstraint() : null
+ };
+ }
+
+ public static ShrineTimelineSubsequentEventTimeConstraint ToTimeConstraint(this ShrineTimelineSubsequentEventTimeConstraintDTO dto)
+ {
+ _ = Enum.TryParse(dto.Operator.EncodedClass, out NumericFilterType op);
+ _ = Enum.TryParse(dto.TimeUnit.EncodedClass, out DateIncrementType timeUnit);
+
+ return new ShrineTimelineSubsequentEventTimeConstraint
+ {
+ Operator = op,
+ TimeUnit = timeUnit,
+ Value = dto.Value
+ };
+ }
+
+ public static ShrineConceptConjunction ToConjunction(this ShrineConceptConjunctionDTO dto)
+ {
+ return new ShrineConceptConjunction
+ {
+ NMustBeTrue = dto.NMustBeTrue,
+ Compare = dto.Compare.ToCompare(),
+ Possibilities = dto.Possibilities.Select(p => p.ToConcept())
+ };
+ }
+
+
+ public static ShrineQueryDefinition ToDefinition(this ShrineQueryDefinitionDTO dto)
+ {
+ return new ShrineQueryDefinition
+ {
+ Expression = dto.Expression.ToConjunction()
+ };
+ }
+ }
+}
+
diff --git a/src/server/API/DTO/Integration/Shrine/4_1/ShrineQueryDTO.cs b/src/server/API/DTO/Integration/Shrine/4_1/ShrineQueryDTO.cs
new file mode 100644
index 000000000..a210fd221
--- /dev/null
+++ b/src/server/API/DTO/Integration/Shrine/4_1/ShrineQueryDTO.cs
@@ -0,0 +1,75 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+using API.DTO.Integration.Shrine;
+using Model.Integration.Shrine4_1;
+
+namespace API.DTO.Integration.Shrine4_1
+{
+ public class ShrineQueryDTO
+ {
+ public long Id { get; set; }
+ public ShrineVersionInfoDTO VersionInfo { get; set; }
+ public ShrineQueryDefinitionDTO QueryDefinition { get; set; }
+ public ShrineAnonymousEncodedClassDTO Output { get; set; }
+ public ShrineAnonymousEncodedClassDTO Status { get; set; }
+ public string QueryName { get; set; }
+ public long NodeOfOriginId { get; set; }
+ public long ResearcherId { get; set; }
+ public long TopicId { get; set; }
+ public string ProjectName { get; set; }
+ public bool Flagged { get; set; }
+ public string FlaggedMessage { get; set; }
+ public string EncodedClass { get; set; }
+
+ public ShrineQueryDTO() { }
+
+ public ShrineQueryDTO(ShrineQuery query)
+ {
+ Id = query.Id;
+ VersionInfo = new ShrineVersionInfoDTO(query.VersionInfo);
+ QueryDefinition = new ShrineQueryDefinitionDTO(query.QueryDefinition);
+ Status = new ShrineAnonymousEncodedClassDTO(query.Status.ToString());
+ Output = new ShrineAnonymousEncodedClassDTO(query.Output.ToString());
+ QueryName = query.QueryName;
+ NodeOfOriginId = query.NodeOfOriginId;
+ ResearcherId = query.ResearcherId;
+ TopicId = query.TopicId;
+ ProjectName = query.ProjectName;
+ Flagged = query.Flagged;
+ FlaggedMessage = query.FlaggedMessage;
+ EncodedClass = query?.EncodedClass.ToString();
+ }
+ }
+
+ public static class ShrineQueryExtensions
+ {
+ public static ShrineQuery ToQuery(this ShrineQueryDTO dto)
+ {
+ _ = Enum.TryParse(dto?.EncodedClass, out ShrineQueryType type);
+ _ = Enum.TryParse(dto?.Status?.EncodedClass, out ShrineStatusType status);
+ _ = Enum.TryParse(dto?.Output?.EncodedClass, out ShrineOutputType output);
+
+ return new ShrineQuery
+ {
+ Id = dto.Id,
+ VersionInfo = dto?.VersionInfo?.ToVersionInfo(),
+ Status = status,
+ QueryDefinition = dto.QueryDefinition.ToDefinition(),
+ Output = output,
+ QueryName = dto?.QueryName,
+ NodeOfOriginId = dto.NodeOfOriginId,
+ ResearcherId = dto.ResearcherId,
+ TopicId = dto.TopicId,
+ ProjectName = dto.ProjectName,
+ Flagged = dto.Flagged,
+ FlaggedMessage = dto.FlaggedMessage,
+ EncodedClass = type
+ };
+ }
+ }
+}
+
diff --git a/src/server/API/DTO/Integration/Shrine/ShrineDeliveryAttemptDTO.cs b/src/server/API/DTO/Integration/Shrine/ShrineDeliveryAttemptDTO.cs
new file mode 100644
index 000000000..216b52e24
--- /dev/null
+++ b/src/server/API/DTO/Integration/Shrine/ShrineDeliveryAttemptDTO.cs
@@ -0,0 +1,74 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+using Model.Integration.Shrine;
+
+namespace API.DTO.Integration.Shrine
+{
+ public class ShrineDeliveryAttemptDTO
+ {
+ public ShrineInnerDeliveryAttemptDTO DeliveryAttemptId { get; set; } = new ShrineInnerDeliveryAttemptDTO();
+ public long MillisecondsToComplete { get; set; }
+ public int RemainingAttempts { get; set; }
+ public string Contents { get; set; }
+
+ public ShrineDeliveryAttemptDTO() { }
+ }
+
+ public class ShrineInnerDeliveryAttemptDTO
+ {
+ public long Underlying { get; set; }
+ }
+
+ public class ShrineDeliveryContentsDTO
+ {
+ public string Contents { get; set; }
+ public long ContentsSubject { get; set; }
+ public string ContentsType { get; set; }
+ public int ProtocolVersion = 2;
+
+ public ShrineDeliveryContentsDTO() { }
+
+ public ShrineDeliveryContentsDTO(ShrineDeliveryContents contents)
+ {
+ Contents = contents.Contents;
+ ContentsSubject = contents.ContentsSubject;
+ ContentsType = contents.ContentsType.ToString();
+ }
+ }
+
+ public static class ShrineDeliveryExtensions
+ {
+ public static ShrineDeliveryAttempt ToDeliveryAttempt(this ShrineDeliveryAttemptDTO dto)
+ {
+ if (dto == null) return null;
+ return new ShrineDeliveryAttempt
+ {
+ DeliveryAttemptId = new ShrineInnerDeliveryAttempt
+ {
+ Underlying = dto.DeliveryAttemptId.Underlying
+ },
+ MillisecondsToComplete = dto.MillisecondsToComplete,
+ RemainingAttempts = dto.RemainingAttempts,
+ Contents = dto.Contents
+ };
+ }
+
+ public static ShrineDeliveryContents ToContents(this ShrineDeliveryContentsDTO dto)
+ {
+ if (dto == null) return null;
+ _ = Enum.TryParse(dto.ContentsType, out ShrineDeliveryContentsType contentsType);
+
+ return new ShrineDeliveryContents
+ {
+ Contents = dto.Contents,
+ ContentsSubject = dto.ContentsSubject,
+ ContentsType = contentsType
+ };
+ }
+ }
+}
+
diff --git a/src/server/API/DTO/Integration/Shrine/ShrineNodeDTO.cs b/src/server/API/DTO/Integration/Shrine/ShrineNodeDTO.cs
new file mode 100644
index 000000000..92f50ac3f
--- /dev/null
+++ b/src/server/API/DTO/Integration/Shrine/ShrineNodeDTO.cs
@@ -0,0 +1,66 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+using Model.Integration.Shrine;
+
+namespace API.DTO.Integration.Shrine
+{
+ public class ShrineNodeDTO
+ {
+ public long Id { get; set; }
+ public ShrineVersionInfoDTO VersionInfo { get; set; }
+ public string Name { get; set; }
+ public string Key { get; set; }
+ public string UserDomainName { get; set; }
+ public string MomQueueName { get; set; }
+ public string AdminEmail { get; set; }
+ public bool SendQueries { get; set; }
+ public int UnderstandsProtocol { get; set; }
+ public string MomId { get; set; }
+
+ public ShrineNodeDTO()
+ {
+
+ }
+
+ public ShrineNodeDTO(ShrineNode node)
+ {
+ Id = node.Id;
+ VersionInfo = new ShrineVersionInfoDTO(node.VersionInfo);
+ Name = node.Name;
+ Key = node.Key;
+ UserDomainName = node.UserDomainName;
+ MomQueueName = node.MomQueueName;
+ AdminEmail = node.AdminEmail;
+ SendQueries = node.SendQueries;
+ UnderstandsProtocol = node.UnderstandsProtocol;
+ MomId = node.MomId;
+ }
+ }
+
+ public static class ShrineNodeExtensions
+ {
+ public static ShrineNode ToNode(this ShrineNodeDTO dto)
+ {
+ if (dto == null) return null;
+
+ return new ShrineNode
+ {
+ Id = dto.Id,
+ VersionInfo = dto.VersionInfo.ToVersionInfo(),
+ Name = dto.Name,
+ Key = dto.Key,
+ UserDomainName = dto.UserDomainName,
+ MomQueueName = dto.MomQueueName,
+ AdminEmail = dto.AdminEmail,
+ SendQueries = dto.SendQueries,
+ UnderstandsProtocol = dto.UnderstandsProtocol,
+ MomId = dto.MomId
+ };
+ }
+ }
+}
+
diff --git a/src/server/API/DTO/Integration/Shrine/ShrineQueryStatusDTO.cs b/src/server/API/DTO/Integration/Shrine/ShrineQueryStatusDTO.cs
new file mode 100644
index 000000000..c93577761
--- /dev/null
+++ b/src/server/API/DTO/Integration/Shrine/ShrineQueryStatusDTO.cs
@@ -0,0 +1,35 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+using Model.Integration.Shrine;
+
+namespace API.DTO.Integration.Shrine
+{
+ public class ShrineQueryStatusDTO
+ {
+ public string EncodedClass { get; set; }
+
+ public ShrineQueryStatusDTO() { }
+
+ public ShrineQueryStatusDTO(ShrineQueryStatus status)
+ {
+ EncodedClass = status.EncodedClass.ToString();
+ }
+ }
+
+ public static class ShrineQueryStatusExtensions
+ {
+ public static ShrineQueryStatus ToStatus(this ShrineQueryStatusDTO dto)
+ {
+ _ = Enum.TryParse(dto.EncodedClass, out ShrineQueryStatusType type);
+ return new ShrineQueryStatus
+ {
+ EncodedClass = type
+ };
+ }
+ }
+}
+
diff --git a/src/server/API/DTO/Integration/Shrine/ShrineResearcherDTO.cs b/src/server/API/DTO/Integration/Shrine/ShrineResearcherDTO.cs
new file mode 100644
index 000000000..8e93391a0
--- /dev/null
+++ b/src/server/API/DTO/Integration/Shrine/ShrineResearcherDTO.cs
@@ -0,0 +1,50 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+using Model.Integration.Shrine;
+
+namespace API.DTO.Integration.Shrine
+{
+ public class ShrineResearcherDTO
+ {
+ public long Id { get; set; }
+ public ShrineVersionInfoDTO VersionInfo { get; set; }
+ public string UserName { get; set; }
+ public string UserDomainName { get; set; }
+ public long NodeId { get; set; }
+
+ public ShrineResearcherDTO()
+ {
+
+ }
+
+ public ShrineResearcherDTO(ShrineResearcher researcher)
+ {
+ Id = researcher.Id;
+ VersionInfo = new ShrineVersionInfoDTO(researcher.VersionInfo);
+ UserName = researcher.UserName;
+ UserDomainName = researcher.UserDomainName;
+ NodeId = researcher.NodeId;
+ }
+ }
+
+ public static class ShrineResearcherExtensions
+ {
+ public static ShrineResearcher ToReseacher(this ShrineResearcherDTO dto)
+ {
+ if (dto == null) return null;
+ return new ShrineResearcher
+ {
+ Id = dto.Id,
+ VersionInfo = dto.VersionInfo.ToVersionInfo(),
+ UserName = dto.UserName,
+ UserDomainName = dto.UserDomainName,
+ NodeId = dto.NodeId
+ };
+ }
+ }
+}
+
diff --git a/src/server/API/DTO/Integration/Shrine/ShrineResultProgressDTO.cs b/src/server/API/DTO/Integration/Shrine/ShrineResultProgressDTO.cs
new file mode 100644
index 000000000..098b05912
--- /dev/null
+++ b/src/server/API/DTO/Integration/Shrine/ShrineResultProgressDTO.cs
@@ -0,0 +1,95 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+using Model.Integration.Shrine;
+
+namespace API.DTO.Integration.Shrine
+{
+ public class ShrineResultProgressDTO
+ {
+ public long Id { get; set; }
+ public ShrineVersionInfoDTO VersionInfo { get; set; }
+ public long QueryId { get; set; }
+ public long AdapterNodeId { get; set; }
+ public string AdapterNodeName { get; set; }
+ public ShrineQueryStatusDTO Status { get; set; }
+ public string StatusMessage { get; set; }
+ public long? CrcQueryInstanceId { get; set; }
+ public string EncodedClass { get; set; }
+ public int? Count { get; set; }
+ public ShrineResultObfuscatingParametersDTO ObfuscatingParameters { get; set; }
+
+ public ShrineResultProgressDTO() { }
+
+ public ShrineResultProgressDTO(ShrineResultProgress progress)
+ {
+ Id = progress.Id;
+ VersionInfo = new ShrineVersionInfoDTO(progress.VersionInfo);
+ QueryId = progress.QueryId;
+ AdapterNodeId = progress.AdapterNodeId;
+ AdapterNodeName = progress.AdapterNodeName;
+ Status = new ShrineQueryStatusDTO(progress.Status);
+ StatusMessage = progress.StatusMessage;
+ CrcQueryInstanceId = progress?.CrcQueryInstanceId;
+ EncodedClass = progress.EncodedClass.ToString();
+ Count = progress?.Count;
+ ObfuscatingParameters = new ShrineResultObfuscatingParametersDTO(progress.ObfuscatingParameters);
+ }
+ }
+
+ public class ShrineResultObfuscatingParametersDTO
+ {
+ public int BinSize { get; set; }
+ public decimal StdDev { get; set; }
+ public int NoiseClamp { get; set; }
+ public int LowLimit { get; set; }
+
+ public ShrineResultObfuscatingParametersDTO(ShrineResultObfuscatingParameters parameters)
+ {
+ if (parameters == null) return;
+ BinSize = parameters.BinSize;
+ StdDev = parameters.StdDev;
+ NoiseClamp = parameters.NoiseClamp;
+ LowLimit = parameters.LowLimit;
+ }
+ }
+
+ public static class ShrineResultProgressExtensions
+ {
+ public static ShrineResultProgress ToProgress(this ShrineResultProgressDTO dto)
+ {
+ _ = Enum.TryParse(dto.EncodedClass, out ShrineQueryStatusType type);
+
+ return new ShrineResultProgress
+ {
+ Id = dto.Id,
+ VersionInfo = dto.VersionInfo.ToVersionInfo(),
+ QueryId = dto.QueryId,
+ AdapterNodeId = dto.AdapterNodeId,
+ AdapterNodeName = dto.AdapterNodeName,
+ Status = dto.Status.ToStatus(),
+ StatusMessage = dto.StatusMessage,
+ CrcQueryInstanceId = dto.CrcQueryInstanceId,
+ Count = dto.Count ?? -1,
+ ObfuscatingParameters = dto.ObfuscatingParameters?.ToParameters(),
+ EncodedClass = type
+ };
+ }
+
+ public static ShrineResultObfuscatingParameters ToParameters(this ShrineResultObfuscatingParametersDTO dto)
+ {
+ if (dto == null) return null;
+ return new ShrineResultObfuscatingParameters
+ {
+ BinSize = dto.BinSize,
+ StdDev = dto.StdDev,
+ NoiseClamp = dto.NoiseClamp,
+ LowLimit = dto.LowLimit
+ };
+ }
+ }
+}
+
diff --git a/src/server/API/DTO/Integration/Shrine/ShrineRunQueryForResultDTO.cs b/src/server/API/DTO/Integration/Shrine/ShrineRunQueryForResultDTO.cs
new file mode 100644
index 000000000..a17e70b10
--- /dev/null
+++ b/src/server/API/DTO/Integration/Shrine/ShrineRunQueryForResultDTO.cs
@@ -0,0 +1,53 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+using API.DTO.Integration.Shrine4_1;
+using Model.Integration.Shrine;
+
+namespace API.DTO.Integration.Shrine
+{
+ public class ShrineRunQueryForResultDTO
+ {
+ public ShrineQueryDTO Query { get; set; }
+ public ShrineNodeDTO Node { get; set; }
+ public ShrineTopicDTO Topic { get; set; }
+ public ShrineResultProgressDTO ResultProgress { get; set; }
+ public ShrineResearcherDTO Researcher { get; set; }
+ public int ProtocolVersion { get; set; }
+
+ public ShrineRunQueryForResultDTO()
+ {
+
+ }
+
+ public ShrineRunQueryForResultDTO(ShrineRunQueryForResult runQueryForResult)
+ {
+ Query = new ShrineQueryDTO(runQueryForResult.Query);
+ Node = runQueryForResult.Node != null ? new ShrineNodeDTO(runQueryForResult.Node) : null;
+ Topic = runQueryForResult.Topic != null ? new ShrineTopicDTO(runQueryForResult.Topic) : null;
+ ResultProgress = runQueryForResult.ResultProgress != null ? new ShrineResultProgressDTO(runQueryForResult.ResultProgress) : null;
+ Researcher = runQueryForResult.Researcher != null ? new ShrineResearcherDTO(runQueryForResult.Researcher) : null;
+ ProtocolVersion = runQueryForResult.ProtocolVersion;
+ }
+ }
+
+ public static class ShrineRunQueryForResultExtensions
+ {
+ public static ShrineRunQueryForResult ToRunQueryForResult(this ShrineRunQueryForResultDTO dto)
+ {
+ if (dto == null) return null;
+ return new ShrineRunQueryForResult
+ {
+ Query = dto?.Query.ToQuery(),
+ Node = dto?.Node.ToNode(),
+ Topic = dto?.Topic.ToTopic(),
+ ResultProgress = dto?.ResultProgress.ToProgress(),
+ Researcher = dto?.Researcher.ToReseacher()
+ };
+ }
+ }
+}
+
diff --git a/src/server/API/DTO/Integration/Shrine/ShrineTopicDTO.cs b/src/server/API/DTO/Integration/Shrine/ShrineTopicDTO.cs
new file mode 100644
index 000000000..577862503
--- /dev/null
+++ b/src/server/API/DTO/Integration/Shrine/ShrineTopicDTO.cs
@@ -0,0 +1,50 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+using Model.Integration.Shrine;
+
+namespace API.DTO.Integration.Shrine
+{
+ public class ShrineTopicDTO
+ {
+ public long Id { get; set; }
+ public ShrineVersionInfoDTO VersionInfo { get; set; }
+ public long ResearcherId { get; set; }
+ public string Name { get; set; }
+ public string Description { get; set; }
+
+ public ShrineTopicDTO()
+ {
+
+ }
+
+ public ShrineTopicDTO(ShrineTopic topic)
+ {
+ Id = topic.Id;
+ VersionInfo = new ShrineVersionInfoDTO(topic.VersionInfo);
+ ResearcherId = topic.ResearcherId;
+ Name = topic.Name;
+ Description = topic.Description;
+ }
+ }
+
+ public static class ShrineTopicExtensions
+ {
+ public static ShrineTopic ToTopic(this ShrineTopicDTO dto)
+ {
+ if (dto == null) return null;
+ return new ShrineTopic
+ {
+ Id = dto.Id,
+ VersionInfo = dto.VersionInfo.ToVersionInfo(),
+ ResearcherId = dto.ResearcherId,
+ Name = dto.Name,
+ Description = dto.Description
+ };
+ }
+ }
+}
+
diff --git a/src/server/API/DTO/Integration/Shrine/ShrineUpdateQueryAtQepDTO.cs b/src/server/API/DTO/Integration/Shrine/ShrineUpdateQueryAtQepDTO.cs
new file mode 100644
index 000000000..917cde49f
--- /dev/null
+++ b/src/server/API/DTO/Integration/Shrine/ShrineUpdateQueryAtQepDTO.cs
@@ -0,0 +1,60 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+using System.Linq;
+using System.Collections.Generic;
+using Model.Integration.Shrine;
+
+namespace API.DTO.Integration.Shrine
+{
+ public class ShrineUpdateQueryAtQepDTO
+ {
+ public long QueryId { get; set; }
+ public ShrineQueryStatusDTO QueryStatus { get; set; }
+ public long ChangeDate { get; set; }
+ public string EncodedClass { get; set; }
+ public IEnumerable ResultProgresses { get; set; }
+
+ public ShrineUpdateQueryAtQepDTO() { }
+
+ public ShrineUpdateQueryAtQepDTO(ShrineUpdateQueryAtQep update)
+ {
+ QueryId = update.QueryId;
+ QueryStatus = new ShrineQueryStatusDTO(update.QueryStatus);
+ ChangeDate = ((DateTimeOffset)update.ChangeDate).ToUnixTimeMilliseconds();
+ EncodedClass = update.EncodedClass.ToString();
+
+ if (update.ResultProgresses != null)
+ {
+ ResultProgresses = update.ResultProgresses.Select(p => new ShrineResultProgressDTO(p));
+ }
+ }
+ }
+
+ public static class ShrineUpdateQueryAtQepExtensions
+ {
+ public static ShrineUpdateQueryAtQep ToUpdate(this ShrineUpdateQueryAtQepDTO dto)
+ {
+ _ = Enum.TryParse(dto.EncodedClass, out ShrineQueryStatusType type);
+
+ var output = new ShrineUpdateQueryAtQep
+ {
+ QueryId = dto.QueryId,
+ QueryStatus = dto.QueryStatus.ToStatus(),
+ ChangeDate = DateTimeOffset.FromUnixTimeMilliseconds(dto.ChangeDate).UtcDateTime,
+ EncodedClass = type
+ };
+
+ if (dto.ResultProgresses != null)
+ {
+ output.ResultProgresses = dto.ResultProgresses.Select(p => p.ToProgress());
+ }
+
+ return output;
+ }
+ }
+}
+
diff --git a/src/server/API/DTO/Integration/Shrine/ShrineUpdateResultWithCrcResultDTO.cs b/src/server/API/DTO/Integration/Shrine/ShrineUpdateResultWithCrcResultDTO.cs
new file mode 100644
index 000000000..ab2c9f3b2
--- /dev/null
+++ b/src/server/API/DTO/Integration/Shrine/ShrineUpdateResultWithCrcResultDTO.cs
@@ -0,0 +1,67 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+using Model.Integration.Shrine;
+
+namespace API.DTO.Integration.Shrine
+{
+ public class ShrineUpdateResultWithCrcResultDTO : ShrineUpdateResultWithProgressDTO
+ {
+ public ShrineBreakdownDTO Breakdowns { get; set; }
+ public ShrineResultObfuscatingParametersDTO ObfuscatingParameters { get; set; }
+ public int Count { get; set; }
+
+ public ShrineUpdateResultWithCrcResultDTO(ShrineUpdateResultWithCrcResult update) : base(update)
+ {
+ ObfuscatingParameters = new ShrineResultObfuscatingParametersDTO(update.ObfuscatingParameters);
+ Count = update.Count;
+ if (update.Breakdowns != null)
+ {
+ Breakdowns = new ShrineBreakdownDTO(update.Breakdowns);
+ }
+ }
+ }
+
+ public class ShrineBreakdownDTO
+ {
+ public object[] Counts { get; set; }
+
+ public ShrineBreakdownDTO(ShrineBreakdown breakdown)
+ {
+ Counts = breakdown.Counts;
+ }
+ }
+
+ public static class ShrineUpdateResultWithCrcResultDTOExtensions
+ {
+ public static ShrineUpdateResultWithCrcResult ToUpdate(this ShrineUpdateResultWithCrcResultDTO dto)
+ {
+ _ = Enum.TryParse(dto.EncodedClass, out ShrineQueryStatusType type);
+
+ var output = new ShrineUpdateResultWithCrcResult
+ {
+ QueryId = dto.QueryId,
+ AdapterNodeKey = dto.AdapterNodeKey,
+ Status = dto.Status.ToStatus(),
+ StatusMessage = dto.StatusMessage,
+ CrcQueryInstanceId = dto.CrcQueryInstanceId,
+ AdapterTime = DateTimeOffset.FromUnixTimeMilliseconds(dto.AdapterTime).UtcDateTime,
+ EncodedClass = type,
+ ObfuscatingParameters = dto.ObfuscatingParameters.ToParameters(),
+ Count = dto.Count,
+ Breakdowns = dto?.Breakdowns.ToBreakdown()
+ };
+
+ return output;
+ }
+
+ public static ShrineBreakdown ToBreakdown(this ShrineBreakdownDTO dto)
+ {
+ return new ShrineBreakdown { Counts = dto.Counts };
+ }
+ }
+}
+
diff --git a/src/server/API/DTO/Integration/Shrine/ShrineUpdateResultWithProgressDTO.cs b/src/server/API/DTO/Integration/Shrine/ShrineUpdateResultWithProgressDTO.cs
new file mode 100644
index 000000000..bbe104d4a
--- /dev/null
+++ b/src/server/API/DTO/Integration/Shrine/ShrineUpdateResultWithProgressDTO.cs
@@ -0,0 +1,54 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+using Model.Integration.Shrine;
+
+namespace API.DTO.Integration.Shrine
+{
+ public class ShrineUpdateResultWithProgressDTO
+ {
+ public long QueryId { get; set; }
+ public string AdapterNodeKey { get; set; }
+ public ShrineQueryStatusDTO Status { get; set; }
+ public string StatusMessage { get; set; }
+ public long? CrcQueryInstanceId { get; set; }
+ public long AdapterTime { get; set; }
+ public string EncodedClass { get; set; }
+
+ public ShrineUpdateResultWithProgressDTO(ShrineUpdateResultWithProgress update)
+ {
+ QueryId = update.QueryId;
+ AdapterNodeKey = update.AdapterNodeKey;
+ Status = new ShrineQueryStatusDTO(update.Status);
+ StatusMessage = update.StatusMessage;
+ CrcQueryInstanceId = update.CrcQueryInstanceId;
+ AdapterTime = ((DateTimeOffset)update.AdapterTime).ToUnixTimeMilliseconds();
+ EncodedClass = update.EncodedClass.ToString();
+ }
+ }
+
+ public static class ShrineUpdateResultWithProgressDTOExtensions
+ {
+ public static ShrineUpdateResultWithProgress ToUpdate(this ShrineUpdateResultWithProgressDTO dto)
+ {
+ _ = Enum.TryParse(dto.EncodedClass, out ShrineQueryStatusType type);
+
+ var output = new ShrineUpdateResultWithProgress
+ {
+ QueryId = dto.QueryId,
+ AdapterNodeKey = dto.AdapterNodeKey,
+ Status = dto.Status.ToStatus(),
+ StatusMessage = dto.StatusMessage,
+ CrcQueryInstanceId = dto.CrcQueryInstanceId,
+ AdapterTime = DateTimeOffset.FromUnixTimeMilliseconds(dto.AdapterTime).UtcDateTime,
+ EncodedClass = type
+ };
+
+ return output;
+ }
+ }
+}
+
diff --git a/src/server/API/DTO/Integration/Shrine/ShrineVersionInfoDTO.cs b/src/server/API/DTO/Integration/Shrine/ShrineVersionInfoDTO.cs
new file mode 100644
index 000000000..7c0b4aacc
--- /dev/null
+++ b/src/server/API/DTO/Integration/Shrine/ShrineVersionInfoDTO.cs
@@ -0,0 +1,48 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+using Model.Integration.Shrine;
+
+namespace API.DTO.Integration.Shrine
+{
+ public class ShrineVersionInfoDTO
+ {
+ public int ProtocolVersion { get; set; }
+ public int ItemVersion { get; set; }
+ public string ShrineVersion { get; set; }
+ public long CreateDate { get; set; }
+ public long ChangeDate { get; set; }
+
+ public ShrineVersionInfoDTO() { }
+
+ public ShrineVersionInfoDTO(ShrineVersionInfo ver)
+ {
+ if (ver == null) return;
+
+ ProtocolVersion = ver.ProtocolVersion;
+ ItemVersion = ver.ItemVersion;
+ ShrineVersion = ver.ShrineVersion;
+ CreateDate = ((DateTimeOffset)ver.CreateDate).ToUnixTimeMilliseconds();
+ ChangeDate = ((DateTimeOffset)ver.ChangeDate).ToUnixTimeMilliseconds();
+ }
+ }
+
+ public static class ShrineVersionInfoExtensions
+ {
+ public static ShrineVersionInfo ToVersionInfo(this ShrineVersionInfoDTO dto)
+ {
+ return new ShrineVersionInfo
+ {
+ ProtocolVersion = dto.ProtocolVersion,
+ ItemVersion = dto.ItemVersion,
+ ShrineVersion = dto.ShrineVersion,
+ CreateDate = DateTimeOffset.FromUnixTimeMilliseconds(dto.CreateDate).UtcDateTime,
+ ChangeDate = DateTimeOffset.FromUnixTimeMilliseconds(dto.ChangeDate).UtcDateTime
+ };
+ }
+ }
+}
+
diff --git a/src/server/API/GlobalSuppressions.cs b/src/server/API/GlobalSuppressions.cs
new file mode 100644
index 000000000..eb011dc41
--- /dev/null
+++ b/src/server/API/GlobalSuppressions.cs
@@ -0,0 +1,8 @@
+// This file is used by Code Analysis to maintain SuppressMessage
+// attributes that are applied to this project.
+// Project-level suppressions either have no target or are given
+// a specific target and scoped to a namespace, type, member, etc.
+
+using System.Diagnostics.CodeAnalysis;
+
+[assembly: SuppressMessage("Naming", "CA1707:Identifiers should not contain underscores", Justification = "", Scope = "namespace", Target = "~N:API.DTO.Integration.Shrine4_1")]
diff --git a/src/server/API/Integration/Shrine/4_1/ShrineDemographicsConverter.cs b/src/server/API/Integration/Shrine/4_1/ShrineDemographicsConverter.cs
new file mode 100644
index 000000000..413310704
--- /dev/null
+++ b/src/server/API/Integration/Shrine/4_1/ShrineDemographicsConverter.cs
@@ -0,0 +1,92 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+using System.Linq;
+using Model.Cohort;
+using Model.Integration.Shrine;
+
+namespace API.Integration.Shrine4_1
+{
+ public class ShrineDemographicsConverter
+ {
+ public ShrineBreakdown ToShrineBreakdown(DemographicProvider.Result result)
+ {
+ var stats = result.Demographics.Statistics;
+ var leafGenders = stats.BinarySplitData.Where(bs => bs.Category == "Gender").First();
+ var leafVitals = stats.BinarySplitData.Where(bs => bs.Category == "VitalStatus").First();
+ var leafRaces = stats.NihRaceEthnicityData.EthnicBackgrounds;
+ var leafAges = stats.AgeByGenderData.Buckets;
+
+ object[][] gender =
+ {
+ new object[] { "Female", leafGenders.Left.Value },
+ new object[] { "Male", leafGenders.Right.Value },
+ new object[] { "Unknown", -1 }
+ };
+
+ object[][] races = leafRaces.Select(r =>
+ {
+ var h = r.Value.Hispanic;
+ var n = r.Value.NotHispanic;
+ var u = r.Value.Unknown;
+ var sum = h.Females + h.Males + h.Others + n.Females + n.Males + n.Others + u.Females + u.Males + u.Others;
+ return new object[] { Capitalize(r.Key), sum };
+ }).ToArray();
+
+ object[][] vitals =
+ {
+ new object[] { "Living", leafVitals.Left.Value },
+ new object[] { "Deceased", leafVitals.Right.Value },
+ new object[] { "Deferred", -1 },
+ new object[] { "Not recorded", -1 }
+ };
+
+ // SHRINE uses slightly different age buckets, but we can avoid recalculating everything
+ var zero = leafAges.Where(a => a.Key == "<1" || a.Key == "1-9").Sum(a => a.Value.Females + a.Value.Males + a.Value.Others);
+ var ten = leafAges.Where(a => a.Key == "10-17").Sum(a => a.Value.Females + a.Value.Males + a.Value.Others);
+ var eighteen = leafAges.Where(a => a.Key == "18-24" || a.Key == "25-34").Sum(a => a.Value.Females + a.Value.Males + a.Value.Others);
+ var thirtyfive = leafAges.Where(a => a.Key == "35-44").Sum(a => a.Value.Females + a.Value.Males + a.Value.Others);
+ var fortyfive = leafAges.Where(a => a.Key == "45-54").Sum(a => a.Value.Females + a.Value.Males + a.Value.Others);
+ var fiftyfive = leafAges.Where(a => a.Key == "55-64").Sum(a => a.Value.Females + a.Value.Males + a.Value.Others);
+ var sixtyfive = leafAges.Where(a => a.Key == "65-74").Sum(a => a.Value.Females + a.Value.Males + a.Value.Others);
+ var seventyfive = leafAges.Where(a => a.Key == "75-84").Sum(a => a.Value.Females + a.Value.Males + a.Value.Others);
+ var eightyfive = leafAges.Where(a => a.Key == ">84").Sum(a => a.Value.Females + a.Value.Males + a.Value.Others);
+ var sixtyfiveplus = sixtyfive + seventyfive + eightyfive;
+
+ object[][] ages =
+ {
+ // Note: the spaces are not a typo. SHRINE (I assume unintentionally?) has spaces before buckets,
+ // so we have to match them to get viz to line up
+ new object[] { " 0-9 years old", NegativeOneIfZero(zero) },
+ new object[] { " 10-17 years old", NegativeOneIfZero(ten) },
+ new object[] { " 18-34 years old", NegativeOneIfZero(eighteen) },
+ new object[] { " 35-44 years old", NegativeOneIfZero(thirtyfive) },
+ new object[] { " 45-54 years old", NegativeOneIfZero(fortyfive) },
+ new object[] { " 55-64 years old", NegativeOneIfZero(fiftyfive) },
+ new object[] { " 65-74 years old", NegativeOneIfZero(sixtyfive) },
+ new object[] { " 75-84 years old", NegativeOneIfZero(seventyfive) },
+ new object[] { ">= 65 years old", NegativeOneIfZero(sixtyfiveplus) },
+ new object[] { ">= 85 years old", NegativeOneIfZero(eightyfive) }
+ };
+
+ return new ShrineBreakdown
+ {
+ Counts = new object[]
+ {
+ new object[] { "PATIENT_GENDER_COUNT_XML", gender },
+ new object[] { "PATIENT_RACE_COUNT_XML", races },
+ new object[] { "PATIENT_VITALSTATUS_COUNT_XML", vitals },
+ new object[] { "PATIENT_AGE_COUNT_XML", ages },
+ }
+ };
+ }
+
+ static int NegativeOneIfZero(int value) => value == 0 ? -1 : value;
+
+ static string Capitalize(string text) => char.ToUpper(text[0]) + text.Remove(0, 1);
+ }
+}
+
diff --git a/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs b/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs
new file mode 100644
index 000000000..e3afbbe68
--- /dev/null
+++ b/src/server/API/Integration/Shrine/4_1/ShrineQueryDefinitionConverter.cs
@@ -0,0 +1,324 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using API.DTO.Cohort;
+using API.DTO.Compiler;
+using Microsoft.Extensions.Options;
+using Model.Compiler;
+using Model.Integration.Shrine;
+using Model.Integration.Shrine4_1;
+using Model.Options;
+
+namespace API.Integration.Shrine4_1
+{
+ public class ShrineQueryDefinitionConverter
+ {
+ readonly string UniversalIdPrefix = $"urn:leaf:concept:shrine:";
+ readonly ShrineIntegrationOptions opts;
+
+ public ShrineQueryDefinitionConverter(IOptions opts)
+ {
+ this.opts = opts.Value;
+ }
+
+ public IPatientCountQueryDTO ToLeafQuery(ShrineQuery shrineQuery)
+ {
+ var possibilities = shrineQuery.QueryDefinition.Expression.Possibilities;
+ var panels = possibilities.Select((grp, i) => grp.IsConceptGroup
+ ? ShrineConceptGroupToPanelDTO(grp, i)
+ : ShrineTimelineToPanelDTO(grp, i)
+ );
+
+ return new PatientCountQueryDTO
+ {
+ QueryId = Guid.NewGuid().ToString(),
+ Panels = panels,
+ PanelFilters = Array.Empty()
+ };
+ }
+
+ PanelDTO ShrineConceptGroupToPanelDTO(ShrineConceptGroup conceptGroup, int i)
+ {
+ return new PanelDTO
+ {
+ IncludePanel = conceptGroup.Concepts.NMustBeTrue > 0,
+ Index = i,
+ Domain = PanelDomain.Panel,
+ DateFilter = conceptGroup.StartDate.HasValue || conceptGroup.EndDate.HasValue ?
+ new DateBoundary
+ {
+ Start = new DateFilter { Date = conceptGroup.StartDate ?? new DateTime(1900, 1, 1), DateIncrementType = DateIncrementType.Specific },
+ End = new DateFilter { Date = conceptGroup.EndDate ?? DateTime.Now, DateIncrementType = DateIncrementType.Specific }
+ }
+ : null,
+ SubPanels = new List
+ {
+ new SubPanelDTO
+ {
+ IncludeSubPanel = true,
+ Index = 0,
+ MinimumCount = conceptGroup.OccursAtLeast.HasValue ? (int)conceptGroup.OccursAtLeast : 1,
+ PanelIndex = i,
+ PanelItems = conceptGroup.Concepts.Possibilities.Select((c,j) =>
+ {
+ return new PanelItemDTO
+ {
+ Index = j,
+ SubPanelIndex = 0,
+ PanelIndex = i,
+ NumericFilter = c?.Constraint != null && c?.Constraint?.Operator != NumericFilterType.None
+ ? new NumericFilter
+ {
+ FilterType = c.Constraint.Operator,
+ Filter = c.Constraint.Value.HasValue
+ ? new decimal[] { (decimal)c.Constraint.Value }
+ : new decimal[] { (decimal)c.Constraint.Value1, (decimal)c.Constraint.Value2 }
+ }
+ : null,
+ Resource = new ResourceRef
+ {
+ UiDisplayName = c.DisplayName,
+ UniversalId = UniversalIdPrefix + c.TermPath
+ }
+ };
+ })
+ }
+ }
+ };
+ }
+
+ PanelDTO ShrineTimelineToPanelDTO(ShrineConceptGroupOrTimeline timeline, int i)
+ {
+ var first = new SubPanelDTO
+ {
+ IncludeSubPanel = timeline.First.Concepts.NMustBeTrue > 0,
+ Index = 0,
+ MinimumCount = timeline.First.Concepts.NMustBeTrue,
+ PanelIndex = i,
+ PanelItems = timeline.First.Concepts.Possibilities.Select((c, j) =>
+ {
+ return new PanelItemDTO
+ {
+ Index = j,
+ SubPanelIndex = 0,
+ PanelIndex = i,
+ RecencyFilter = timeline.Subsequent.First().PreviousOccurrence == ShrineOccurrence.First
+ ? RecencyFilterType.Min
+ : RecencyFilterType.None,
+ NumericFilter = c?.Constraint != null && c?.Constraint?.Operator != NumericFilterType.None
+ ? new NumericFilter
+ {
+ FilterType = c.Constraint.Operator,
+ Filter = c.Constraint.Value.HasValue
+ ? new decimal[] { (decimal)c.Constraint.Value }
+ : new decimal[] { (decimal)c.Constraint.Value1, (decimal)c.Constraint.Value2 }
+ }
+ : null,
+ Resource = new ResourceRef
+ {
+ UiDisplayName = c.DisplayName,
+ UniversalId = UniversalIdPrefix + c.TermPath
+ }
+ };
+ })
+ };
+
+ var subsequent = timeline.Subsequent.Select((sub, i) =>
+ {
+ return new SubPanelDTO
+ {
+ IncludeSubPanel = sub.ConceptGroup.NMustBeTrue > 0,
+ Index = i + 1,
+ MinimumCount = (int)sub.ConceptGroup.OccursAtLeast,
+ JoinSequence = new SubPanelJoinSequence
+ {
+ Increment = sub.TimeConstraint != null ? sub.TimeConstraint.Value : -1,
+ DateIncrementType = sub.TimeConstraint != null ? sub.TimeConstraint.TimeUnit : DateIncrementType.None,
+ SequenceType = SequenceType.AnytimeFollowing
+ },
+ PanelIndex = i,
+ PanelItems = sub.ConceptGroup.Concepts.Possibilities.Select((c, j) =>
+ {
+ return new PanelItemDTO
+ {
+ Index = j,
+ SubPanelIndex = 0,
+ PanelIndex = i,
+ RecencyFilter = sub.ThisOccurrence == ShrineOccurrence.First
+ ? RecencyFilterType.Min
+ : RecencyFilterType.None,
+ NumericFilter = c?.Constraint != null && c?.Constraint?.Operator != NumericFilterType.None
+ ? new NumericFilter
+ {
+ FilterType = c.Constraint.Operator,
+ Filter = c.Constraint.Value.HasValue
+ ? new decimal[] { (decimal)c.Constraint.Value }
+ : new decimal[] { (decimal)c.Constraint.Value1, (decimal)c.Constraint.Value2 }
+ }
+ : null,
+ Resource = new ResourceRef
+ {
+ UiDisplayName = c.DisplayName,
+ UniversalId = UniversalIdPrefix + c.TermPath
+ }
+ };
+ })
+ };
+ });
+
+ return new PanelDTO
+ {
+ IncludePanel = timeline.First.Concepts.NMustBeTrue > 0,
+ Index = i,
+ Domain = PanelDomain.Panel,
+ DateFilter = timeline.StartDate.HasValue ?
+ new DateBoundary
+ {
+ Start = new DateFilter { Date = timeline.StartDate.Value },
+ End = new DateFilter { Date = timeline.EndDate.Value }
+ }
+ : null,
+ SubPanels = new List() { first }.Union(subsequent)
+ };
+ }
+
+ public ShrineQuery ToShrineQuery(IPatientCountQueryDTO leafQuery)
+ {
+ var panels = leafQuery.All();
+
+ return new ShrineQuery
+ {
+ Id = GenerateRandomLongId(),
+ VersionInfo = new ShrineVersionInfo
+ {
+ ProtocolVersion = 2,
+ ShrineVersion = "4.1.0-SNAPSHOT",
+ ItemVersion = 2,
+ CreateDate = DateTime.Now,
+ ChangeDate = DateTime.Now
+ },
+ Status = ShrineStatusType.SentToHub,
+ QueryDefinition = new ShrineQueryDefinition
+ {
+ Expression = new ShrineConjunction
+ {
+ NMustBeTrue = panels.Count(),
+ Compare = new ShrineConjunctionCompare
+ {
+ EncodedClass = ShrineConjunctionComparison.AtLeast
+ },
+ Possibilities = panels.Select(p =>
+ {
+ return p.SubPanels.Count() > 1 && p.SubPanels.ElementAt(1).PanelItems.Any()
+ ? LeafNonSequenceToShrineConceptGroup(p)
+ : LeafSequenceToShrineTimeline(p);
+ })
+ }
+ },
+ Output = ShrineOutputType.Count,
+ QueryName = "Query"
+ };
+ }
+
+ ShrineConceptGroupOrTimeline LeafNonSequenceToShrineConceptGroup(IPanelDTO panel)
+ {
+ var subpanel = panel.SubPanels.First();
+
+ return new ShrineConceptGroupOrTimeline
+ {
+ Concepts = LeafSubPanelToShrineConceptConjunction(panel, subpanel)
+ };
+ }
+
+ ShrineConceptGroupOrTimeline LeafSequenceToShrineTimeline(IPanelDTO panel)
+ {
+ var firstSubpanel = panel.SubPanels.First();
+ var first = new ShrineConceptGroup
+ {
+ Concepts = LeafSubPanelToShrineConceptConjunction(panel, firstSubpanel)
+ };
+
+ var subsequent = panel.SubPanels.Skip(1).Select(subpanel =>
+ {
+ return new ShrineTimelineSubsequentEvent
+ {
+ ConceptGroup = new ShrineConceptGroup
+ {
+ Concepts = LeafSubPanelToShrineConceptConjunction(panel, subpanel)
+ },
+ PreviousOccurrence = ShrineOccurrence.Any,
+ ThisOccurrence = ShrineOccurrence.Any,
+ TimeConstraint = subpanel.JoinSequence.SequenceType == SequenceType.WithinFollowing
+ ? new ShrineTimelineSubsequentEventTimeConstraint
+ {
+ Operator = NumericFilterType.LessThanOrEqual,
+ TimeUnit = subpanel.JoinSequence.DateIncrementType,
+ Value = subpanel.JoinSequence.Increment
+ }
+ : null
+ };
+ });
+
+ return new ShrineConceptGroupOrTimeline
+ {
+ First = first,
+ Subsequent = subsequent
+ };
+ }
+
+ ShrineConceptConjunction LeafSubPanelToShrineConceptConjunction(IPanelDTO panel, ISubPanelDTO subpanel)
+ {
+ return new ShrineConceptConjunction
+ {
+ NMustBeTrue = panel.IncludePanel ? 1 : 0,
+ Compare = new ShrineConjunctionCompare
+ {
+ EncodedClass = panel.IncludePanel ? ShrineConjunctionComparison.AtLeast : ShrineConjunctionComparison.AtMost,
+ },
+ Possibilities = subpanel.PanelItems.Select(pi =>
+ {
+ return new ShrineConcept
+ {
+ DisplayName = pi.Resource.UiDisplayName,
+ TermPath = pi.Resource.UniversalId.ToString().Replace(UniversalIdPrefix, ""),
+ Constraint = pi.NumericFilter != null && pi.NumericFilter.FilterType != NumericFilterType.None
+ ? new ShrineConceptConstraint
+ {
+ Operator = pi.NumericFilter.FilterType,
+ Value = pi.NumericFilter.FilterType != NumericFilterType.Between ? pi.NumericFilter.Filter.First() : null,
+ Value1 = pi.NumericFilter.FilterType == NumericFilterType.Between ? pi.NumericFilter.Filter.First() : null,
+ Value2 = pi.NumericFilter.FilterType == NumericFilterType.Between ? pi.NumericFilter.Filter.Last() : null
+ }
+ : null
+ };
+ }),
+ StartDate = panel.DateFilter?.Start?.Date,
+ EndDate = panel.DateFilter?.End?.Date,
+ OccursAtLeast = panel.IncludePanel ? subpanel.MinimumCount : 0
+ };
+ }
+
+ public static long GenerateRandomLongId()
+ {
+ //return LongRandom(10000000000000000, long.MaxValue, new Random());
+ Random random = new();
+ byte[] bytes = new byte[8];
+ random.NextBytes(bytes);
+ return BitConverter.ToInt64(bytes, 0);
+ }
+
+ static long LongRandom(long min, long max, Random rand)
+ {
+ long result = rand.Next((int)(min >> 32), (int)(max >> 32));
+ result <<= 32;
+ result |= (long)rand.Next((int)min, (int)max);
+ return result;
+ }
+ }
+}
+
diff --git a/src/server/API/Integration/Shrine/ShrineMessageBroker.cs b/src/server/API/Integration/Shrine/ShrineMessageBroker.cs
new file mode 100644
index 000000000..71360cd69
--- /dev/null
+++ b/src/server/API/Integration/Shrine/ShrineMessageBroker.cs
@@ -0,0 +1,107 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+using System.Net.Http;
+using System.Text;
+using System.Threading.Tasks;
+using API.DTO.Integration.Shrine;
+using Microsoft.Extensions.Options;
+using Model.Integration.Shrine;
+using Model.Options;
+using Newtonsoft.Json;
+using Newtonsoft.Json.Serialization;
+
+namespace API.Integration.Shrine
+{
+ public interface IShrineMessageBroker
+ {
+ Task<(HttpResponseMessage, ShrineDeliveryContents)> ReadHubMessageAndAcknowledge();
+ Task SendMessageToHub(ShrineDeliveryContents contents);
+ Task SendMessageToHub(long queryId, object contents, ShrineDeliveryContentsType type);
+ }
+
+ public class ShrineMessageBroker : IShrineMessageBroker
+ {
+ readonly HttpClient client;
+ readonly ShrineIntegrationOptions opts;
+ readonly int TimeOutSeconds = 5;
+ readonly JsonSerializerSettings serializerSettings = new JsonSerializerSettings
+ {
+ ContractResolver = new CamelCasePropertyNamesContractResolver()
+ };
+
+ public ShrineMessageBroker(HttpClient client, IOptions opts)
+ {
+ this.client = client;
+ this.opts = opts.Value.SHRINE;
+ }
+
+ public async Task<(HttpResponseMessage, ShrineDeliveryContents)> ReadHubMessageAndAcknowledge()
+ {
+ var req = new HttpRequestMessage
+ {
+ RequestUri = new Uri($"{opts.HubApiURI}/shrine-api/mom/receiveMessage/{opts.Node.Name}?timeOutSeconds={TimeOutSeconds}"),
+ Method = HttpMethod.Get
+ };
+
+ var resp = await client.SendAsync(req);
+ req.Dispose();
+ if (!resp.IsSuccessStatusCode || resp.Content == null)
+ {
+ return (resp, null);
+ }
+
+ var jsonMessage = await resp.Content.ReadAsStringAsync();
+ if (string.IsNullOrEmpty(jsonMessage))
+ {
+ return (resp, null);
+ }
+ var message = JsonConvert.DeserializeObject(jsonMessage).ToDeliveryAttempt();
+
+ var ack = new HttpRequestMessage
+ {
+ RequestUri = new Uri($"{opts.HubApiURI}/shrine-api/mom/acknowledge/{message.DeliveryAttemptId.Underlying}"),
+ Method = HttpMethod.Put
+ };
+ _ = await client.SendAsync(ack);
+ ack.Dispose();
+
+ var contents = JsonConvert.DeserializeObject(message.Contents);
+
+ return (resp, contents.ToContents());
+ }
+
+ public async Task SendMessageToHub(long queryId, object contents, ShrineDeliveryContentsType type)
+ {
+ var delivery = new ShrineDeliveryContents
+ {
+ ContentsSubject = queryId,
+ Contents = JsonConvert.SerializeObject(contents, serializerSettings),
+ ContentsType = type
+ };
+ return await SendMessageToHub(delivery);
+ }
+
+ public async Task SendMessageToHub(ShrineDeliveryContents contents)
+ {
+ var request = new HttpRequestMessage
+ {
+ RequestUri = new Uri($"{opts.HubApiURI}/shrine-api/mom/sendMessage/hub"),
+ Method = HttpMethod.Put,
+ Content = new StringContent(
+ JsonConvert.SerializeObject(new ShrineDeliveryContentsDTO(contents), serializerSettings),
+ Encoding.UTF8,
+ "application/x-www-form-urlencoded"
+ )
+ };
+ var response = await client.SendAsync(request);
+ request.Dispose();
+
+ return response;
+ }
+ }
+}
+
diff --git a/src/server/API/Jobs/BackgroundShrineCacheSynchronizer.cs b/src/server/API/Jobs/BackgroundShrineCacheSynchronizer.cs
new file mode 100644
index 000000000..82f338f7f
--- /dev/null
+++ b/src/server/API/Jobs/BackgroundShrineCacheSynchronizer.cs
@@ -0,0 +1,68 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+using Microsoft.Extensions.Hosting;
+using Microsoft.Extensions.Logging;
+using Model.Integration.Shrine;
+using System.Threading;
+using System.Threading.Tasks;
+
+namespace API.Jobs
+{
+ public class BackgroundShrineCacheSynchronizer : BackgroundService
+ {
+ readonly ILogger logger;
+ readonly IShrineQueryResultCache queryResultCache;
+ readonly IShrineUserQueryCache userQueryCache;
+ readonly int cacheDeleteFrequencyMinutes = 60;
+
+ DateTime? lastCacheDelete;
+
+ public BackgroundShrineCacheSynchronizer(
+ ILogger logger,
+ IShrineQueryResultCache queryResultCache,
+ IShrineUserQueryCache userQueryCache)
+ {
+ this.logger = logger;
+ this.queryResultCache = queryResultCache;
+ this.userQueryCache = userQueryCache;
+ }
+
+ protected override async Task ExecuteAsync(CancellationToken stoppingToken)
+ {
+ logger.LogInformation("BackgroundShrineCacheSynchronizer is starting");
+
+ stoppingToken.Register(() =>
+ {
+ logger.LogInformation("BackgroundShrineCacheSynchronizer is stopped");
+ });
+
+ while (!stoppingToken.IsCancellationRequested)
+ {
+ try
+ {
+ if (lastCacheDelete == null) continue;
+ logger.LogInformation($"BackgroundShrineCacheSynchronizer will delete old cached records older than {cacheDeleteFrequencyMinutes} minutes");
+
+ var resultCount = queryResultCache.DeleteOlderThan((DateTime)lastCacheDelete);
+ var queryCount = userQueryCache.DeleteOlderThan((DateTime)lastCacheDelete);
+ lastCacheDelete = DateTime.Now;
+
+ logger.LogInformation("BackgroundShrineCacheSynchronizer deleted {resultCount} results and {queryCount} queries", resultCount, queryCount);
+ }
+ catch (Exception ex)
+ {
+ logger.LogError("BackgroundShrineCacheSynchronizer failed to clear caches. Error: {Error}", ex.ToString());
+ }
+ finally
+ {
+ await Task.Delay(TimeSpan.FromMinutes(cacheDeleteFrequencyMinutes));
+ }
+ }
+ }
+ }
+}
+
diff --git a/src/server/API/Jobs/BackgroundShrinePollingService.cs b/src/server/API/Jobs/BackgroundShrinePollingService.cs
new file mode 100644
index 000000000..6386e9806
--- /dev/null
+++ b/src/server/API/Jobs/BackgroundShrinePollingService.cs
@@ -0,0 +1,296 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+using System.Threading;
+using System.Threading.Tasks;
+using API.DTO.Integration.Shrine;
+using API.DTO.Cohort;
+using API.Authorization;
+using API.Integration.Shrine;
+using API.Integration.Shrine4_1;
+using Microsoft.Extensions.DependencyInjection;
+using Microsoft.Extensions.Hosting;
+using Microsoft.Extensions.Logging;
+using Model.Authorization;
+using Model.Cohort;
+using Model.Integration.Shrine;
+using Newtonsoft.Json;
+using Model.Compiler;
+using Model.Options;
+using Microsoft.Extensions.Options;
+
+namespace API.Jobs
+{
+ public class BackgroundShrinePollingService : BackgroundService
+ {
+ readonly ILogger logger;
+ readonly IShrineMessageBroker broker;
+ readonly IShrineQueryResultCache queryResultCache;
+ readonly IShrineUserQueryCache userQueryCache;
+ readonly IServiceScopeFactory serviceScopeFactory;
+ readonly DeidentificationOptions deidentOpts;
+ readonly ShrineIntegrationOptions opts;
+ readonly ShrineQueryDefinitionConverter queryConverter;
+ readonly ShrineDemographicsConverter demographicsConverter;
+ readonly int ErrorPauseSeconds = 300;
+
+ public BackgroundShrinePollingService(
+ ILogger logger,
+ IShrineMessageBroker broker,
+ IShrineQueryResultCache queryResultCache,
+ IShrineUserQueryCache userQueryCache,
+ IServiceScopeFactory serviceScopeFactory,
+ IOptions deidentOpts,
+ IOptions opts,
+ ShrineQueryDefinitionConverter queryConverter,
+ ShrineDemographicsConverter demographicsConverter
+ )
+ {
+ this.logger = logger;
+ this.broker = broker;
+ this.queryResultCache = queryResultCache;
+ this.userQueryCache = userQueryCache;
+ this.serviceScopeFactory = serviceScopeFactory;
+ this.queryConverter = queryConverter;
+ this.demographicsConverter = demographicsConverter;
+ this.opts = opts.Value.SHRINE;
+ this.deidentOpts = deidentOpts.Value;
+ }
+
+ protected override async Task ExecuteAsync(CancellationToken stoppingToken)
+ {
+ logger.LogInformation("BackgroundShrinePollingService is starting");
+
+ stoppingToken.Register(() =>
+ {
+ logger.LogInformation("BackgroundShrinePollingService is stopped");
+ });
+
+ while (!stoppingToken.IsCancellationRequested)
+ {
+ try
+ {
+ var (response, message) = await broker.ReadHubMessageAndAcknowledge();
+ if (message == null)
+ {
+ if (!response.IsSuccessStatusCode)
+ {
+ // Error, delay before next poll
+ await Task.Delay(TimeSpan.FromSeconds(ErrorPauseSeconds), stoppingToken);
+ }
+ continue;
+ }
+
+ _ = Task.Run(async () =>
+ {
+ switch (message.ContentsType)
+ {
+ case ShrineDeliveryContentsType.UpdateQueryAtQep:
+ var update = JsonConvert.DeserializeObject(message.Contents).ToUpdate();
+ HandleUpdateQueryAtQepMessage(update);
+ break;
+
+ case ShrineDeliveryContentsType.RunQueryForResult:
+ try
+ {
+ var dto = JsonConvert.DeserializeObject(message.Contents);
+ var run = dto.ToRunQueryForResult();
+ await HandleRunQueryForResultMessage(run, stoppingToken);
+ }
+ catch (JsonSerializationException ex)
+ {
+ logger.LogError("BackgroundShrinePollingService failed to parse SHRINE message. Error: {Error}", ex.ToString());
+ }
+ catch (Exception ex)
+ {
+ logger.LogError("BackgroundShrinePollingService encountered an error. Error: {Error}", ex.ToString());
+ }
+ break;
+
+ case ShrineDeliveryContentsType.Result:
+ var result = JsonConvert.DeserializeObject(message.Contents).ToProgress();
+ HandleResultMessage(result);
+ break;
+
+ default:
+ break;
+ }
+ }, stoppingToken);
+ }
+ catch (JsonSerializationException e)
+ {
+ logger.LogError("BackgroundShrinePollingService failed to parse SHRINE message. Error: {Error}", e.ToString());
+ }
+ catch (Exception e)
+ {
+ logger.LogError("BackgroundShrinePollingService failed to synchronize with SHRINE. Error: {Error}", e.ToString());
+ logger.LogInformation($"BackgroundShrinePollingService pausing {ErrorPauseSeconds} seconds.");
+ await Task.Delay(TimeSpan.FromSeconds(ErrorPauseSeconds), stoppingToken);
+ }
+ }
+
+ logger.LogInformation("BackgroundShrinePollingService is stopped");
+ }
+
+ void HandleUpdateQueryAtQepMessage(ShrineUpdateQueryAtQep update)
+ {
+ if (update.ResultProgresses != null)
+ {
+ queryResultCache.Put(update.ToQueryResult());
+ }
+ }
+
+ void HandleResultMessage(ShrineResultProgress progress)
+ {
+ queryResultCache.Put(progress);
+ }
+
+ async Task HandleRunQueryForResultMessage(ShrineRunQueryForResult run, CancellationToken stoppingToken)
+ {
+ // Let hub know query received
+ await SendQueryReceievedByAdapter(run.Query.Id);
+
+ // Get user context, convert query
+ var (user, query) = GetContext(run);
+
+ // Let hub know query converted, executing
+ await SendQuerySubmittedToCrc(run.Query.Id);
+
+ // Query conversion failed, tell hub no patients
+ if (query == null)
+ {
+ await SendFailedQueryResult(run.Query.Id);
+ return;
+ }
+
+ // Create scope to ensure query run as this user
+ using (var scope = serviceScopeFactory.CreateAsyncScope())
+ {
+ var userContextProvider = scope.ServiceProvider.GetRequiredService();
+ userContextProvider.SetUserContext(user);
+ var counter = scope.ServiceProvider.GetRequiredService();
+
+ var cohort = await counter.Count(query, stoppingToken);
+ var count = new CohortCountDTO(cohort);
+
+ if (!cohort.ValidationContext.PreflightPassed)
+ {
+ await SendFailedQueryResult(run.Query.Id);
+ return;
+ }
+
+ queryResultCache.Put(run.Query.Id, run.Researcher);
+
+ // Check if we need to get demographics as well
+ if (run.Query.Output == Model.Integration.Shrine4_1.ShrineOutputType.DemographicsAndCount)
+ {
+ var queryRef = new QueryRef(count.QueryId);
+ var demographicsProvider = scope.ServiceProvider.GetRequiredService();
+ var demographics = await demographicsProvider.GetDemographicsAsync(queryRef, stoppingToken);
+ var breakdowns = demographicsConverter.ToShrineBreakdown(demographics);
+
+ // Let hub know demographics result
+ await SendQueryResult(run.Query.Id, count.Result.Value, breakdowns);
+ }
+ else
+ {
+ // Let hub know query result
+ await SendQueryResult(run.Query.Id, count.Result.Value);
+ }
+ }
+ }
+
+ async Task SendFailedQueryResult(long queryId)
+ {
+ await SendQueryResult(queryId, -1);
+ }
+
+ async Task SendQueryResult(long queryId, int count)
+ {
+ await SendQueryResult(queryId, count, null);
+ }
+
+ async Task SendQueryResult(long queryId, int count, ShrineBreakdown breakdowns)
+ {
+ var message = new ShrineUpdateResultWithCrcResult
+ {
+ QueryId = queryId,
+ AdapterNodeKey = opts.Node.Key,
+ Count = count,
+ CrcQueryInstanceId = 42,
+ Breakdowns = breakdowns,
+ ObfuscatingParameters = new ShrineResultObfuscatingParameters
+ {
+ BinSize = 5,
+ StdDev = 6.5M,
+ NoiseClamp = deidentOpts.Cohort.Enabled && deidentOpts.Cohort.Noise.Enabled
+ ? Math.Max(deidentOpts.Cohort.Noise.LowerBound, deidentOpts.Cohort.Noise.UpperBound)
+ : 10,
+ LowLimit = deidentOpts.Cohort.Enabled && deidentOpts.Cohort.LowCellSizeMasking.Enabled
+ ? deidentOpts.Cohort.LowCellSizeMasking.Threshold
+ : 10
+ },
+ Status = new ShrineQueryStatus { EncodedClass = ShrineQueryStatusType.ResultFromCRC },
+ StatusMessage = "FINISHED",
+ AdapterTime = DateTime.Now,
+ EncodedClass = ShrineQueryStatusType.UpdateResultWithCrcResult
+ };
+ var dto = new ShrineUpdateResultWithCrcResultDTO(message);
+
+ _ = await broker.SendMessageToHub(queryId, dto, ShrineDeliveryContentsType.UpdateResult);
+ }
+
+ async Task SendQueryReceievedByAdapter(long queryId)
+ {
+ await SendQueryReceivedMessage(queryId, ShrineQueryStatusType.ReceivedByAdapter, ShrineQueryStatusType.UpdateResultWithProgress);
+ }
+
+ async Task SendQuerySubmittedToCrc(long queryId)
+ {
+ await SendQueryReceivedMessage(queryId, ShrineQueryStatusType.SubmittedToCRC, ShrineQueryStatusType.UpdateResultWithProgress);
+ }
+
+ async Task SendQueryReceivedMessage(long queryId, ShrineQueryStatusType innerClass, ShrineQueryStatusType outerClass)
+ {
+ var message = new ShrineUpdateResultWithProgress
+ {
+ QueryId = queryId,
+ AdapterNodeKey = opts.Node.Key,
+ Status = new ShrineQueryStatus { EncodedClass = innerClass },
+ AdapterTime = DateTime.Now,
+ EncodedClass = outerClass
+ };
+ var dto = new ShrineUpdateResultWithProgressDTO(message);
+
+ _ = await broker.SendMessageToHub(queryId, dto, ShrineDeliveryContentsType.UpdateResult);
+ }
+
+ (IUserContext, IPatientCountQueryDTO) GetContext(ShrineRunQueryForResult run)
+ {
+ var cached = userQueryCache.GetOrDefault(run.Query.Id);
+
+ // If run by a Leaf user, grab from cache
+ if (cached != null)
+ {
+ return (cached.User, cached.Query);
+ }
+
+ // Else not from Leaf, so set user context and transform query defintion
+ IPatientCountQueryDTO query = null;
+ try
+ {
+ query = queryConverter.ToLeafQuery(run.Query);
+ }
+ catch (Exception ex)
+ {
+ logger.LogError("Failed to convert SHRINE query to Leaf query. SHRINE query: {@Query}. Error: {Error}", run.Query, ex.ToString());
+ }
+
+ return (new ShrineUserContext(run.Researcher), query);
+ }
+ }
+}
+
diff --git a/src/server/API/Middleware/Federation/RejectInvalidFederatedUserMiddleware.cs b/src/server/API/Middleware/Federation/RejectInvalidFederatedUserMiddleware.cs
index f9362e1c9..2e3d50a8e 100644
--- a/src/server/API/Middleware/Federation/RejectInvalidFederatedUserMiddleware.cs
+++ b/src/server/API/Middleware/Federation/RejectInvalidFederatedUserMiddleware.cs
@@ -15,9 +15,9 @@ public class RejectInvalidFederatedUserMiddleware : IMiddleware
readonly IUserContext user;
readonly ILogger logger;
- public RejectInvalidFederatedUserMiddleware(IUserContext userContext, ILogger logger)
+ public RejectInvalidFederatedUserMiddleware(IUserContext user, ILogger logger)
{
- this.user = userContext;
+ this.user = user;
this.logger = logger;
}
diff --git a/src/server/API/Options/Config.Integration.cs b/src/server/API/Options/Config.Integration.cs
new file mode 100644
index 000000000..3dd78dd38
--- /dev/null
+++ b/src/server/API/Options/Config.Integration.cs
@@ -0,0 +1,45 @@
+// Copyright (c) 2022, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+
+namespace API.Options
+{
+ public static partial class Config
+ {
+ public static class Integration
+ {
+ public const string Enabled = @"Integration:Enabled";
+
+ public static class SHRINE
+ {
+ public const string Section = @"Integration:SHRINE";
+ public const string Enabled = @"Integration:SHRINE:Enabled";
+ public const string HubApiURI = @"Integration:SHRINE:HubApiURI";
+
+ public static class Node
+ {
+ public const string Id = @"Integration:SHRINE:Node:Id";
+ public const string Key = @"Integration:SHRINE:Node:Key";
+ public const string Name = @"Integration:SHRINE:Node:Name";
+ }
+
+ public static class Researcher
+ {
+ public const string Id = @"Integration:SHRINE:Researcher:Id";
+ public const string Name = @"Integration:SHRINE:Researcher:Name";
+ public const string Domain = @"Integration:SHRINE:Researcher:Domain";
+ }
+
+ public static class Topic
+ {
+ public const string Id = @"Integration:SHRINE:Topic:Id";
+ public const string Name = @"Integration:SHRINE:Topic:Name";
+ public const string Description = @"Integration:SHRINE:Topic:Description";
+ }
+ }
+ }
+ }
+}
diff --git a/src/server/API/Options/StartupExtensions.Options.cs b/src/server/API/Options/StartupExtensions.Options.cs
index 2b69d0de9..0ff3f28d8 100644
--- a/src/server/API/Options/StartupExtensions.Options.cs
+++ b/src/server/API/Options/StartupExtensions.Options.cs
@@ -50,6 +50,9 @@ public static IServiceCollection ConfigureLeafOptions(
// Import Options
services.ConfigureImportOptions(configuration);
+ // Integrations Options
+ services.ConfigureIntegrationOptions(configuration);
+
// Authentication Options
services.ConfigureAuthenticationOptions(configuration);
@@ -251,6 +254,50 @@ static IServiceCollection ConfigureImportOptions(this IServiceCollection service
return services;
}
+ static IServiceCollection ConfigureIntegrationOptions(this IServiceCollection services, IConfiguration config)
+ {
+ var enabled = config.GetValue(Config.Integration.Enabled);
+
+ if (enabled)
+ {
+ config.TryGetValue(Config.Integration.SHRINE.Enabled, out bool shrineEnabled);
+ if (shrineEnabled)
+ {
+ var shrine = new ShrineIntegrationOptions
+ {
+ Enabled = shrineEnabled,
+ HubApiURI = config.GetValue(Config.Integration.SHRINE.HubApiURI),
+ Node = new ShrineIntegrationOptions.LocalNode
+ {
+ Id = config.GetValue(Config.Integration.SHRINE.Node.Id),
+ Key = config.GetValue(Config.Integration.SHRINE.Node.Key),
+ Name = config.GetValue(Config.Integration.SHRINE.Node.Name)
+ },
+ Researcher = new ShrineIntegrationOptions.LocalResearcher
+ {
+ Id = config.GetValue(Config.Integration.SHRINE.Researcher.Id),
+ Name = config.GetValue(Config.Integration.SHRINE.Researcher.Name),
+ Domain = config.GetValue(Config.Integration.SHRINE.Researcher.Domain)
+ },
+ Topic = new ShrineIntegrationOptions.DefaultTopic
+ {
+ Id = config.GetValue(Config.Integration.SHRINE.Topic.Id),
+ Name = config.GetValue(Config.Integration.SHRINE.Topic.Name),
+ Description = config.GetValue(Config.Integration.SHRINE.Topic.Description)
+ }
+ };
+
+ services.Configure(opts =>
+ {
+ opts.Enabled = true;
+ opts.SHRINE = shrine;
+ });
+ }
+ }
+
+ return services;
+ }
+
static IServiceCollection ConfigureClientOptions(this IServiceCollection services, IConfiguration config)
{
services.Configure(opts =>
@@ -412,14 +459,15 @@ static IServiceCollection ConfigureCompilerOptions(this IServiceCollection servi
// App Db Connection
services.Configure(opts =>
{
- opts.ConnectionString = config.GetByProxy(Config.Db.App.Connection);
+ opts.ConnectionString = "Server=localhost,1432;Database=LeafDB;uid=sa;Password=Jefferson407!;"; //config.GetByProxy(Config.Db.App.Connection);
+ //opts.ConnectionString = config.GetByProxy(Config.Db.App.Connection);
opts.DefaultTimeout = config.GetValue(Config.Db.App.DefaultTimeout);
});
// Clin Db Connection
services.Configure(opts =>
{
- opts.ConnectionString = config.GetByProxy(Config.Db.Clin.Connection);
+ opts.ConnectionString = "Server=127.0.0.1,1432;Database=SynPuf_OMOP;uid=sa;Password=Jefferson407!;"; //config.GetByProxy(Config.Db.Clin.Connection);
opts.DefaultTimeout = config.GetValue(Config.Db.Clin.DefaultTimeout);
opts.WithRdbms(config.GetValue(Config.Db.Clin.RDBMS));
opts.Cohort.WithQueryStrategy(config.GetValue(Config.Db.Clin.Cohort.QueryStrategy));
diff --git a/src/server/API/Options/StartupExtensions.Services.cs b/src/server/API/Options/StartupExtensions.Services.cs
index 7a8efc597..ab117fff3 100644
--- a/src/server/API/Options/StartupExtensions.Services.cs
+++ b/src/server/API/Options/StartupExtensions.Services.cs
@@ -9,6 +9,8 @@
using API.Jwt;
using API.Middleware.Federation;
using API.Middleware.Logging;
+using API.Integration.Shrine;
+using API.Integration.Shrine4_1;
using Microsoft.AspNetCore.Hosting;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
@@ -25,6 +27,7 @@
using Model.Compiler.SqlBuilder;
using Model.Compiler.PanelSqlCompiler;
using Model.Export;
+using Model.Integration.Shrine;
using Model.Network;
using Model.Options;
using Model.Search;
@@ -47,6 +50,7 @@
using Services.Import;
using Services.Notification;
using Services.Obfuscation;
+using System.Net.Http;
namespace API.Options
{
@@ -59,6 +63,7 @@ public static IServiceCollection RegisterLeafServices(
services.AddHttpContextAccessor();
services.AddScoped();
+ services.AddScoped();
services.AddTransient();
services.AddTransient();
@@ -91,6 +96,11 @@ public static IServiceCollection RegisterLeafServices(
client.DefaultRequestHeaders.Add("Accept", @"application/json");
});
+ services.AddHttpClient(client =>
+ {
+ client.DefaultRequestHeaders.Add("Accept", @"application/json");
+ });
+
if (environment.IsProduction())
{
services.AddHostedService();
@@ -121,6 +131,7 @@ public static IServiceCollection RegisterLeafServices(
services.AddTransient();
services.AddTransient();
+ services.AddIntegrationServices(environment);
services.AddAdminServices();
services.RegisterLeafCore();
@@ -182,6 +193,42 @@ static IServiceCollection AddIAMServices(this IServiceCollection services)
return services;
}
+ static IServiceCollection AddIntegrationServices(this IServiceCollection services, Microsoft.AspNetCore.Hosting.IHostingEnvironment environment)
+ {
+ var sp = services.BuildServiceProvider();
+ var integrationOpts = sp.GetRequiredService>().Value;
+
+ if (integrationOpts.Enabled)
+ {
+ if (integrationOpts.SHRINE.Enabled)
+ {
+ services.AddHostedService();
+ services.AddHostedService();
+ services.AddTransient();
+ services.AddTransient();
+ services.AddTransient();
+ services.AddSingleton();
+ services.AddSingleton();
+
+ /* Use for testing only!! */
+ if (!environment.IsProduction())
+ {
+ services.AddHttpClient().ConfigurePrimaryHttpMessageHandler(() => new HttpClientHandler
+ {
+ ClientCertificateOptions = ClientCertificateOption.Manual,
+ //ServerCertificateCustomValidationCallback = HttpClientHandler.DangerousAcceptAnyServerCertificateValidator,
+ ServerCertificateCustomValidationCallback = (request, cert, chain, errors) =>
+ {
+ return true;
+ }
+ });
+ }
+ }
+ }
+
+ return services;
+ }
+
static IServiceCollection AddCohortQueryExecutionService(this IServiceCollection services)
{
var sp = services.BuildServiceProvider();
diff --git a/src/server/API/appsettings.json b/src/server/API/appsettings.json
index 7200af4ef..07071a191 100644
--- a/src/server/API/appsettings.json
+++ b/src/server/API/appsettings.json
@@ -18,7 +18,7 @@
"DefaultTimeout": 180,
"RDBMS": "MSSQL",
"Cohort": {
- "QueryStrategy": "PARALLEL",
+ "QueryStrategy": "CTE",
"MaxParallelThreads": 5
}
}
@@ -62,8 +62,10 @@
},
"Compiler": {
"Alias": "@",
- "FieldPersonId": "person_id",
- "FieldEncounterId": "visit_occurrence_id"
+ //"FieldPersonId": "person_id",
+ //"FieldEncounterId": "visit_occurrence_id",
+ "FieldPersonId": "PatientDurableKey",
+ "FieldEncounterId": "EncounterDurableKey"
},
"Cohort": {
"RowLimit": 200000,
@@ -83,6 +85,28 @@
"Enabled": true
}
},
+ "Integration": {
+ "Enabled": true,
+ "SHRINE": {
+ "Enabled": true,
+ "HubApiURI": "https://localhost:6443",
+ "Node": {
+ "Id": 8304711555476111654,
+ "Key": "leaftest",
+ "Name": "leaftest"
+ },
+ "Researcher": {
+ "Id": 24823904,
+ "Name": "demo",
+ "Domain": "i2b2demo"
+ },
+ "Topic": {
+ "Id": 1481654093,
+ "Name": "Testing",
+ "Description": "This is a topic for testing SHRINE 2020 (1)"
+ }
+ }
+ },
"Import": {
"REDCap": {
"Enabled": false,
@@ -102,13 +126,13 @@
"Cohort": {
"Enabled": true,
"Noise": {
- "Enabled": false,
- "LowerBound": -10,
- "UpperBound": 10
+ "Enabled": true,
+ "LowerBound": -3,
+ "UpperBound": 3
},
"LowCellSizeMasking": {
- "Enabled": false,
- "Threshold": 10
+ "Enabled": true,
+ "Threshold": 3
}
}
},
diff --git a/src/server/Model/Authorization/UserContextProvider.cs b/src/server/Model/Authorization/UserContextProvider.cs
new file mode 100644
index 000000000..7a895ad8f
--- /dev/null
+++ b/src/server/Model/Authorization/UserContextProvider.cs
@@ -0,0 +1,41 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+using Model.Error;
+
+namespace Model.Authorization
+{
+ public interface IUserContextProvider
+ {
+ void SetUserContext(IUserContext userContext);
+ IUserContext GetUserContext();
+ }
+
+ public class UserContextProvider : IUserContextProvider
+ {
+ IUserContext userContext;
+
+ public UserContextProvider(IUserContext userContext = null)
+ {
+ if (userContext != null)
+ {
+ this.userContext = userContext;
+ }
+ }
+
+ public void SetUserContext(IUserContext userContext)
+ {
+ this.userContext = userContext;
+ }
+
+ public IUserContext GetUserContext()
+ {
+ if (userContext == null) throw new LeafAuthorizationException("No user context is available");
+ return userContext;
+ }
+ }
+}
+
diff --git a/src/server/Model/Cohort/CohortCounter.cs b/src/server/Model/Cohort/CohortCounter.cs
index 9a9edf73a..e2dcf06a7 100644
--- a/src/server/Model/Cohort/CohortCounter.cs
+++ b/src/server/Model/Cohort/CohortCounter.cs
@@ -54,8 +54,8 @@ public CohortCounter(
IPatientCohortService counter,
ICohortCacheService cohortCache,
IObfuscationService obfuscator,
- IUserContext user,
- ILogger log)
+ ILogger log,
+ IUserContextProvider userContextProvider)
{
this.runtime = opts.Value.Runtime;
this.deidentOpts = deidentOpts.Value;
@@ -64,7 +64,7 @@ public CohortCounter(
this.counter = counter;
this.obfuscator = obfuscator;
this.cohortCache = cohortCache;
- this.user = user;
+ this.user = userContextProvider.GetUserContext();
this.log = log;
}
@@ -180,6 +180,16 @@ async Task FullCount(IPatientCountQueryDTO queryDTO, CancellationToken t
token.ThrowIfCancellationRequested();
+ // DEBUGGING ONLY
+ return new Result
+ {
+ ValidationContext = ctx,
+ Count = new PatientCount
+ {
+ SqlStatements = cohort.SqlStatements
+ }
+ };
+
var cached = await CacheCohort(cohort);
var result = new Result
{
diff --git a/src/server/Model/Cohort/DemographicProvider.cs b/src/server/Model/Cohort/DemographicProvider.cs
index 4fffeb9c7..838cf33cd 100644
--- a/src/server/Model/Cohort/DemographicProvider.cs
+++ b/src/server/Model/Cohort/DemographicProvider.cs
@@ -39,23 +39,26 @@ Task ExecuteDemographicsAsync(
readonly IUserContext user;
readonly ClientOptions clientOpts;
readonly DeidentificationOptions deidentOpts;
+ readonly IntegrationOptions integrationOpts;
readonly ILogger log;
- public DemographicProvider (
- IUserContext user,
+ public DemographicProvider(
+ IUserContextProvider userContextProvider,
DemographicCompilerValidationContextProvider contextProvider,
IOptions clientOpts,
IOptions deidentOpts,
+ IOptions integrationOpts,
IDemographicSqlCompiler compiler,
IDemographicsExecutor executor,
ILogger log)
{
- this.user = user;
+ this.user = userContextProvider.GetUserContext();
this.contextProvider = contextProvider;
this.compiler = compiler;
this.executor = executor;
this.clientOpts = clientOpts.Value;
this.deidentOpts = deidentOpts.Value;
+ this.integrationOpts = integrationOpts.Value;
this.log = log;
}
@@ -130,7 +133,7 @@ void ThrowIfSettingsInvalid()
{
throw new Exception("Both Visualize and Patient List are disabled");
}
- if (deidentOpts.Cohort.Noise.Enabled)
+ if (deidentOpts.Cohort.Noise.Enabled && !integrationOpts.Enabled)
{
throw new Exception("Demographics cannot be returned if Cohort De-identification Noise is enabled");
}
diff --git a/src/server/Model/Compiler/NumericFilterType.cs b/src/server/Model/Compiler/NumericFilterType.cs
index fd5a4a58b..76a943bb1 100644
--- a/src/server/Model/Compiler/NumericFilterType.cs
+++ b/src/server/Model/Compiler/NumericFilterType.cs
@@ -10,10 +10,10 @@ public enum NumericFilterType
{
None,
GreaterThan,
- GreaterThanOrEqualTo,
+ GreaterThanOrEqual,
LessThan,
- LessThanOrEqualTo,
- EqualTo,
+ LessThanOrEqual,
+ Equal,
Between
}
}
diff --git a/src/server/Model/Compiler/PanelConverter.cs b/src/server/Model/Compiler/PanelConverter.cs
index 97e77ed02..ad96ef2db 100644
--- a/src/server/Model/Compiler/PanelConverter.cs
+++ b/src/server/Model/Compiler/PanelConverter.cs
@@ -33,12 +33,12 @@ public class PanelConverter
public PanelConverter(
PreflightResourceChecker preflightSearch,
- IUserContext userContext,
+ IUserContextProvider userContextProvider,
IOptions compilerOptions,
ICachedCohortPreparer cohortPreparer,
ILogger logger)
{
- user = userContext;
+ this.user = userContextProvider.GetUserContext();
this.preflightSearch = preflightSearch;
this.compilerOptions = compilerOptions.Value;
this.cohortPreparer = cohortPreparer;
@@ -120,7 +120,7 @@ public async Task GetPanelsAsync(IQueryDefinition query)
/// The panels.
/// PanelDTOs.
/// Import panel items referenced in panels.
- public IEnumerable CrosswalkImportIds(IEnumerable panels, IEnumerable importRefs)
+ public static IEnumerable CrosswalkImportIds(IEnumerable panels, IEnumerable importRefs)
{
var mapped = panels.Select(p => p).ToList();
@@ -152,7 +152,12 @@ public void LocalizeDefinition(IQueryDefinition definition, PatientCountQuery lo
var map = new Dictionary(localQuery.Panels
.GetConcepts()
- .Select(c => new KeyValuePair(key: c.UniversalId.ToString(), value: new ResourceRef { Id = c.Id, UniversalId = c.UniversalId.ToString() })));
+ .Select(c =>
+ new KeyValuePair(
+ key: c.UniversalId.ToString(),
+ value: new ResourceRef { Id = c.Id, UniversalId = c.UniversalId.ToString() })
+ )
+ );
var items = definition.Panels
.SelectMany(p => p.SubPanels)
@@ -217,7 +222,7 @@ IEnumerable GetPanels(IEnumerable panels, IEnumerable
return GetPanels(panels, feder);
}
- IEnumerable GetPanels(IEnumerable panels, LocalConceptMap concepts)
+ static IEnumerable GetPanels(IEnumerable panels, LocalConceptMap concepts)
{
var converted = new List();
@@ -230,7 +235,7 @@ IEnumerable GetPanels(IEnumerable panels, LocalConceptMap conc
return converted;
}
- ICollection GetSubPanels(IEnumerable dtos, LocalConceptMap concepts)
+ static ICollection GetSubPanels(IEnumerable dtos, LocalConceptMap concepts)
{
var subs = new List();
@@ -244,7 +249,7 @@ ICollection GetSubPanels(IEnumerable dtos, LocalConceptM
return subs;
}
- IEnumerable GetPanelItems(IEnumerable dtos, LocalConceptMap concepts)
+ static IEnumerable GetPanelItems(IEnumerable dtos, LocalConceptMap concepts)
{
var items = new List();
@@ -257,7 +262,7 @@ IEnumerable GetPanelItems(IEnumerable dtos, LocalConce
return items;
}
- IEnumerable GetPanels(IEnumerable panels, FederatedConceptMap concepts)
+ static IEnumerable GetPanels(IEnumerable panels, FederatedConceptMap concepts)
{
var converted = new List();
@@ -270,7 +275,7 @@ IEnumerable GetPanels(IEnumerable panels, FederatedConceptMap
return converted;
}
- ICollection GetSubPanels(IEnumerable dtos, FederatedConceptMap concepts)
+ static ICollection GetSubPanels(IEnumerable dtos, FederatedConceptMap concepts)
{
var subs = new List();
@@ -284,7 +289,7 @@ ICollection GetSubPanels(IEnumerable dtos, FederatedConc
return subs;
}
- IEnumerable GetPanelItems(IEnumerable dtos, FederatedConceptMap concepts)
+ static IEnumerable GetPanelItems(IEnumerable dtos, FederatedConceptMap concepts)
{
var items = new List();
diff --git a/src/server/Model/Compiler/PanelItem.cs b/src/server/Model/Compiler/PanelItem.cs
index 3832a9b2d..9d4b59921 100644
--- a/src/server/Model/Compiler/PanelItem.cs
+++ b/src/server/Model/Compiler/PanelItem.cs
@@ -13,7 +13,6 @@ public class PanelItem : BasePanelItem
{
public Concept Concept { get; set; }
public IEnumerable Specializations { get; set; }
- public string SqlRecencyFilter { get; set; }
public bool UseNumericFilter
{
get
diff --git a/src/server/Model/Compiler/PanelValidator.cs b/src/server/Model/Compiler/PanelValidator.cs
index ebaf27a50..23406d75b 100644
--- a/src/server/Model/Compiler/PanelValidator.cs
+++ b/src/server/Model/Compiler/PanelValidator.cs
@@ -213,11 +213,11 @@ void throwIfNotLength(int expected)
switch (filter.FilterType)
{
- case NumericFilterType.EqualTo:
+ case NumericFilterType.Equal:
case NumericFilterType.GreaterThan:
- case NumericFilterType.GreaterThanOrEqualTo:
+ case NumericFilterType.GreaterThanOrEqual:
case NumericFilterType.LessThan:
- case NumericFilterType.LessThanOrEqualTo:
+ case NumericFilterType.LessThanOrEqual:
throwIfNotLength(1);
return;
case NumericFilterType.Between:
diff --git a/src/server/Model/Compiler/SqlBuilder/PanelItemSqlSet.cs b/src/server/Model/Compiler/SqlBuilder/PanelItemSqlSet.cs
index a25c5f9bf..796176978 100644
--- a/src/server/Model/Compiler/SqlBuilder/PanelItemSqlSet.cs
+++ b/src/server/Model/Compiler/SqlBuilder/PanelItemSqlSet.cs
@@ -24,12 +24,31 @@ public PanelItemSequentialSqlSet(
internal override void SetSelect()
{
- Select = new[] { PersonId, EncounterId, Date, EventId };
+ if (!panelitem.UseRecencyFilter)
+ {
+ Select = new[] { PersonId, EncounterId, Date, EventId };
+ }
+ else
+ {
+ Select = new ISelectable[] { PersonId, EncounterId, AggregateDate, EventId };
+ }
}
internal override void SetGroupBy()
{
- // Do nothing. Group By clauses in a sequence are added in the parent PanelSequentialSqlSet.
+ if (panelitem.UseRecencyFilter)
+ {
+ if (concept.IsEventBased)
+ {
+ GroupBy = new[] { PersonId, EncounterId, EventId };
+ }
+ else
+ {
+ GroupBy = new[] { PersonId, EncounterId };
+ }
+ }
+
+ // Otherwise do nothing. Group By clauses in a sequence are added in the parent PanelSequentialSqlSet.
}
internal override void SetHaving()
@@ -41,17 +60,18 @@ internal override void SetHaving()
class PanelItemSqlSet : NamedSet
{
- readonly CompilerOptions compilerOptions;
- readonly Panel panel;
- readonly SubPanel subpanel;
- readonly PanelItem panelitem;
- readonly Concept concept;
+ readonly internal CompilerOptions compilerOptions;
+ readonly internal Panel panel;
+ readonly internal SubPanel subpanel;
+ readonly internal PanelItem panelitem;
+ readonly internal Concept concept;
readonly List where = new List();
internal ISqlDialect dialect;
internal Column PersonId;
internal Column EncounterId;
internal EventIdColumn EventId;
+ internal ExpressedColumn AggregateDate;
internal AutoAliasedColumn Date;
internal AutoAliasedColumn Number;
@@ -101,6 +121,12 @@ void SetColumns()
{
EncounterId = new Column(compilerOptions.FieldEncounterId, this);
Date = new AutoAliasedColumn(concept.SqlFieldDate, aliasMarker, this);
+
+ if (panelitem.UseRecencyFilter)
+ {
+ var op = panelitem.RecencyFilter == RecencyFilterType.Min ? "MIN" : "MAX";
+ AggregateDate = new ExpressedColumn(new Expression($"{op}({Date})"), Date.Name.Replace(aliasMarker + ".", ""));
+ }
}
if (concept.IsEventBased)
{
@@ -163,7 +189,7 @@ void CheckDate()
var start = GetDateExpression(panel.DateFilter.Start);
var end = GetDateExpression(panel.DateFilter.End, true);
- if (panel.PanelType == PanelType.Sequence && subpanel.Index > 0)
+ if (panel.PanelType == PanelType.Sequence && subpanel.Index > 0 && !panelitem.UseRecencyFilter)
{
var offset = new Expression(dialect.DateAdd(DateIncrementType.Month, -6, start));
where.Add(Date >= offset);
@@ -198,16 +224,16 @@ void CheckNumericFilter()
case NumericFilterType.GreaterThan:
where.Add(Number > val1);
return;
- case NumericFilterType.GreaterThanOrEqualTo:
+ case NumericFilterType.GreaterThanOrEqual:
where.Add(Number >= val1);
return;
case NumericFilterType.LessThan:
where.Add(Number < val1);
return;
- case NumericFilterType.LessThanOrEqualTo:
+ case NumericFilterType.LessThanOrEqual:
where.Add(Number <= val1);
return;
- case NumericFilterType.EqualTo:
+ case NumericFilterType.Equal:
where.Add(Number == val1);
return;
case NumericFilterType.Between:
diff --git a/src/server/Model/Compiler/SqlBuilder/PanelSqlCompiler.cs b/src/server/Model/Compiler/SqlBuilder/PanelSqlCompiler.cs
index 7abf52b60..fe7c1738a 100644
--- a/src/server/Model/Compiler/SqlBuilder/PanelSqlCompiler.cs
+++ b/src/server/Model/Compiler/SqlBuilder/PanelSqlCompiler.cs
@@ -22,11 +22,11 @@ public class PanelSqlCompiler : IPanelSqlCompiler
readonly CompilerOptions compilerOptions;
public PanelSqlCompiler(
- IUserContext user,
+ IUserContextProvider userContextProvider,
ISqlDialect dialect,
IOptions compilerOptions)
{
- this.user = user;
+ this.user = userContextProvider.GetUserContext();
this.dialect = dialect;
this.compilerOptions = compilerOptions.Value;
}
@@ -51,7 +51,7 @@ public string BuildPanelSql(Panel panel)
default:
return string.Empty;
}
- ValidateSql(sql);
+ //ValidateSql(sql);
return sql;
}
diff --git a/src/server/Model/Compiler/SqlBuilder/SubPanelSqlSet.cs b/src/server/Model/Compiler/SqlBuilder/SubPanelSqlSet.cs
index f12fead86..3d79a13c2 100644
--- a/src/server/Model/Compiler/SqlBuilder/SubPanelSqlSet.cs
+++ b/src/server/Model/Compiler/SqlBuilder/SubPanelSqlSet.cs
@@ -57,8 +57,8 @@ void SetSelect()
PersonId = new Column(first.PersonId);
EncounterId = new Column(first.EncounterId);
- Date = new AutoAliasedColumn(first.Date.Name, first.Date.AliasMarker);
EventId = new EventIdColumn(first.EventId);
+ Date = new AutoAliasedColumn(first.Date.Name, first.Date.AliasMarker);
}
}
}
diff --git a/src/server/Model/Compiler/SubPanel.cs b/src/server/Model/Compiler/SubPanel.cs
index c7d8a55fc..083e88dad 100644
--- a/src/server/Model/Compiler/SubPanel.cs
+++ b/src/server/Model/Compiler/SubPanel.cs
@@ -5,7 +5,6 @@
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
using System;
using System.Collections.Generic;
-using System.Linq;
namespace Model.Compiler
{
diff --git a/src/server/Model/Error/LeafAuthorizationException.cs b/src/server/Model/Error/LeafAuthorizationException.cs
new file mode 100644
index 000000000..55b2276a4
--- /dev/null
+++ b/src/server/Model/Error/LeafAuthorizationException.cs
@@ -0,0 +1,26 @@
+// Copyright (c) 2021, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+
+namespace Model.Error
+{
+ public class LeafAuthorizationException : ApplicationException
+ {
+ public LeafErrorCode ErrorCode { get; private set; } = LeafErrorCode.Forbidden;
+
+ public LeafAuthorizationException()
+ {
+ }
+
+ public LeafAuthorizationException(string message) : base(message)
+ {
+ }
+
+ public LeafAuthorizationException(string message, Exception innerException) : base(message, innerException)
+ {
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/server/Model/Integration/Shrine/4_1/ShrineExpression.cs b/src/server/Model/Integration/Shrine/4_1/ShrineExpression.cs
new file mode 100644
index 000000000..2004ec5ed
--- /dev/null
+++ b/src/server/Model/Integration/Shrine/4_1/ShrineExpression.cs
@@ -0,0 +1,119 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+using System.Collections.Generic;
+using Model.Compiler;
+
+namespace Model.Integration.Shrine4_1
+{
+ public class ShrineQueryDefinition
+ {
+ public ShrineConjunction Expression { get; set; }
+ }
+
+ public abstract class ShrineExpression
+ {
+ public int NMustBeTrue { get; set; }
+ public DateTime? StartDate { get; set; }
+ public DateTime? EndDate { get; set; }
+ public int? OccursAtLeast { get; set; }
+ public ShrineConjunction Concepts { get; set; }
+ public ShrineConjunctionCompare Compare { get; set; } = new ShrineConjunctionCompare();
+ }
+
+ public abstract class ShrineGroup : ShrineExpression
+ {
+
+ }
+
+ public class ShrineConjunction : ShrineExpression
+ {
+ public IEnumerable Possibilities { get; set; } = new List();
+ }
+
+ public class ShrineConceptGroupOrTimeline : ShrineConceptGroup
+ {
+ public ShrineConceptGroup First { get; set; }
+ public IEnumerable Subsequent { get; set; } = new List();
+
+ public bool IsConceptGroup => First == null;
+ public bool IsTimeline => First != null;
+ }
+
+ public class ShrineTimelineSubsequentEvent
+ {
+ public ShrineConceptGroup ConceptGroup { get; set; }
+ public ShrineOccurrence PreviousOccurrence { get; set; }
+ public ShrineOccurrence ThisOccurrence { get; set; }
+ public ShrineTimelineSubsequentEventTimeConstraint TimeConstraint { get; set; }
+
+ public ShrineTimelineSubsequentEvent() { }
+ }
+
+ public class ShrineTimelineSubsequentEventTimeConstraint
+ {
+ public NumericFilterType Operator { get; set; }
+ public DateIncrementType TimeUnit { get; set; }
+ public int Value { get; set; }
+ }
+
+ public class ShrineConceptConjunction : ShrineExpression
+ {
+ public IEnumerable Possibilities { get; set; } = new List();
+ }
+
+ public class ShrineConceptGroup : ShrineGroup
+ {
+ public new ShrineConceptConjunction Concepts { get; set; }
+ }
+
+ public class ShrineTimelineGroup : ShrineGroup
+ {
+ public ShrineConceptGroup ConceptGroup { get; set; }
+
+ }
+
+ public class ShrineTimeline : ShrineGroup
+ {
+ public ShrineConceptGroup First { get; set; }
+ public IEnumerable Subsequent { get; set; }
+ }
+
+ public class ShrineConcept : ShrineExpression
+ {
+ public string DisplayName { get; set; }
+ public string TermPath { get; set; }
+ public ShrineConceptConstraint Constraint { get; set; }
+ }
+
+ public class ShrineConceptConstraint
+ {
+ public NumericFilterType Operator { get; set; }
+ public decimal? Value { get; set; }
+ public decimal? Value1 { get; set; }
+ public decimal? Value2 { get; set; }
+ public string Unit { get; set; }
+ }
+
+ public class ShrineConjunctionCompare
+ {
+ public ShrineConjunctionComparison EncodedClass { get; set; } = ShrineConjunctionComparison.AtLeast;
+ }
+
+ public enum ShrineConjunctionComparison
+ {
+ AtLeast,
+ Exactly,
+ AtMost
+ }
+
+ public enum ShrineOccurrence
+ {
+ Any,
+ First
+ }
+}
+
diff --git a/src/server/Model/Integration/Shrine/4_1/ShrineQuery.cs b/src/server/Model/Integration/Shrine/4_1/ShrineQuery.cs
new file mode 100644
index 000000000..c3555588b
--- /dev/null
+++ b/src/server/Model/Integration/Shrine/4_1/ShrineQuery.cs
@@ -0,0 +1,45 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+using Model.Integration.Shrine;
+
+namespace Model.Integration.Shrine4_1
+{
+ public class ShrineQuery
+ {
+ public long Id { get; set; }
+ public ShrineVersionInfo VersionInfo { get; set; }
+ public ShrineQueryDefinition QueryDefinition { get; set; }
+ public ShrineStatusType Status { get; set; }
+ public ShrineOutputType Output { get; set; }
+ public string QueryName { get; set; }
+ public long NodeOfOriginId { get; set; }
+ public long ResearcherId { get; set; }
+ public long TopicId { get; set; }
+ public string ProjectName { get; set; }
+ public bool Flagged { get; set; } = false;
+ public string FlaggedMessage { get; set; }
+ public ShrineQueryType EncodedClass { get; set; }
+ }
+
+ public enum ShrineQueryType
+ {
+ QueryProgress
+ }
+
+ public enum ShrineOutputType
+ {
+ Count,
+ DemographicsAndCount
+ }
+
+ public enum ShrineStatusType
+ {
+ ReadyForAdapters,
+ SentToHub
+ }
+}
+
diff --git a/src/server/Model/Integration/Shrine/IShrineQueryResultCache.cs b/src/server/Model/Integration/Shrine/IShrineQueryResultCache.cs
new file mode 100644
index 000000000..7b6abdbc5
--- /dev/null
+++ b/src/server/Model/Integration/Shrine/IShrineQueryResultCache.cs
@@ -0,0 +1,140 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading;
+using System.Collections;
+
+namespace Model.Integration.Shrine
+{
+ public interface IShrineQueryResultCache : IEnumerable
+ {
+ IEnumerable All();
+ ShrineQueryResult GetOrDefault(long id);
+ ShrineQueryResult PopOrDefault(long id);
+ void Put(ShrineQueryResult result);
+ void Put(ShrineResultProgress nodeResult);
+ void Put(long id, ShrineResearcher user);
+ void Put(IEnumerable nodeResults);
+ int DeleteOlderThan(DateTime earliest);
+ }
+
+ public class ShrineQueryResultCache : IShrineQueryResultCache
+ {
+ readonly Dictionary store = new();
+ readonly ReaderWriterLockSlim sync = new();
+
+ public ShrineQueryResultCache(IEnumerable initial)
+ {
+
+ store = initial.ToDictionary(ne => ne.Id);
+ sync = new ReaderWriterLockSlim();
+ }
+
+ public IEnumerable All()
+ {
+ sync.EnterReadLock();
+ var all = store.Values;
+ sync.ExitReadLock();
+ return all;
+ }
+
+ public ShrineQueryResult GetOrDefault(long id)
+ {
+ sync.EnterReadLock();
+ store.TryGetValue(id, out var result);
+ sync.ExitReadLock();
+ return result;
+ }
+
+ public void Put(ShrineQueryResult result)
+ {
+ sync.EnterWriteLock();
+ store[result.Id] = result;
+ store[result.Id].Updated = DateTime.Now;
+ sync.ExitWriteLock();
+ }
+
+ public void Put(long id, ShrineResearcher user)
+ {
+ sync.EnterWriteLock();
+ if (!store.ContainsKey(id))
+ {
+ store[id] = new ShrineQueryResult(id);
+ }
+ store[id].User = user;
+ sync.ExitWriteLock();
+ }
+
+ public void Put(ShrineResultProgress nodeResult)
+ {
+ sync.EnterWriteLock();
+ if (!store.ContainsKey(nodeResult.QueryId))
+ {
+ store[nodeResult.QueryId] = new ShrineQueryResult(nodeResult.QueryId);
+ }
+ store[nodeResult.QueryId].Results[nodeResult.AdapterNodeId] = nodeResult;
+ store[nodeResult.QueryId].Updated = DateTime.Now;
+ sync.ExitWriteLock();
+ }
+
+ public void Put(IEnumerable nodeResults)
+ {
+ if (!nodeResults.Any()) return;
+
+ sync.EnterWriteLock();
+ var first = nodeResults.First();
+ if (!store.ContainsKey(first.QueryId))
+ {
+ store[first.QueryId] = new ShrineQueryResult(first.QueryId);
+ }
+ foreach (var nodeResult in nodeResults)
+ {
+ store[first.QueryId].Results[nodeResult.AdapterNodeId] = nodeResult;
+ }
+ store[first.QueryId].Updated = DateTime.Now;
+ sync.ExitWriteLock();
+ }
+
+ public ShrineQueryResult PopOrDefault(long id)
+ {
+ sync.EnterWriteLock();
+ store.Remove(id, out var result);
+ sync.ExitWriteLock();
+ return result;
+ }
+
+ public int DeleteOlderThan(DateTime earliest)
+ {
+ var deleteCount = 0;
+
+ sync.EnterWriteLock();
+ foreach (var result in All())
+ {
+ if (result.Updated < earliest)
+ {
+ store.Remove(result.Id, out var _);
+ deleteCount++;
+ }
+ }
+ sync.ExitWriteLock();
+
+ return deleteCount;
+ }
+
+ public IEnumerator GetEnumerator()
+ {
+ return All().GetEnumerator();
+ }
+
+ IEnumerator IEnumerable.GetEnumerator()
+ {
+ return GetEnumerator();
+ }
+ }
+}
+
diff --git a/src/server/Model/Integration/Shrine/IShrineUserQueryCache.cs b/src/server/Model/Integration/Shrine/IShrineUserQueryCache.cs
new file mode 100644
index 000000000..5260bc1e6
--- /dev/null
+++ b/src/server/Model/Integration/Shrine/IShrineUserQueryCache.cs
@@ -0,0 +1,105 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+using System.Collections;
+using System.Collections.Generic;
+using System.Threading;
+using Model.Authorization;
+using Model.Compiler;
+
+namespace Model.Integration.Shrine
+{
+ public interface IShrineUserQueryCache : IEnumerable
+ {
+ IEnumerable All();
+ ShrineUserQueryEntry GetOrDefault(long id);
+ ShrineUserQueryEntry PopOrDefault(long id);
+ void Put(long id, IUserContext user, IPatientCountQueryDTO query);
+ int DeleteOlderThan(DateTime earliest);
+ }
+
+ public class ShrineUserContextCache : IShrineUserQueryCache
+ {
+ readonly Dictionary store = new();
+ readonly ReaderWriterLockSlim sync = new();
+
+ public IEnumerable All()
+ {
+ sync.EnterReadLock();
+ var all = store.Values;
+ sync.ExitReadLock();
+ return all;
+ }
+
+ public ShrineUserQueryEntry GetOrDefault(long id)
+ {
+ sync.EnterReadLock();
+ store.TryGetValue(id, out var result);
+ sync.ExitReadLock();
+ return result;
+ }
+
+ public ShrineUserQueryEntry PopOrDefault(long id)
+ {
+ sync.EnterWriteLock();
+ store.Remove(id, out var result);
+ sync.ExitWriteLock();
+ return result;
+ }
+
+ public void Put(long id, IUserContext user, IPatientCountQueryDTO query)
+ {
+ sync.EnterWriteLock();
+ store[id] = new ShrineUserQueryEntry(user, query, id);
+ sync.ExitWriteLock();
+ }
+
+ public int DeleteOlderThan(DateTime earliest)
+ {
+ var deleteCount = 0;
+
+ sync.EnterWriteLock();
+ foreach (var user in All())
+ {
+ if (user.Added < earliest)
+ {
+ store.Remove(user.QueryId, out var _);
+ deleteCount++;
+ }
+ }
+ sync.ExitWriteLock();
+
+ return deleteCount;
+ }
+
+ public IEnumerator GetEnumerator()
+ {
+ return All().GetEnumerator();
+ }
+
+ IEnumerator IEnumerable.GetEnumerator()
+ {
+ return GetEnumerator();
+ }
+ }
+
+ public class ShrineUserQueryEntry
+ {
+ public IUserContext User { get; }
+ public IPatientCountQueryDTO Query { get; }
+ public long QueryId { get; }
+ public DateTime Added { get; set; }
+
+ public ShrineUserQueryEntry(IUserContext user, IPatientCountQueryDTO query, long queryId)
+ {
+ User = user;
+ Query = query;
+ QueryId = queryId;
+ Added = DateTime.Now;
+ }
+ }
+}
+
diff --git a/src/server/Model/Integration/Shrine/ShrineCohortCounter.cs b/src/server/Model/Integration/Shrine/ShrineCohortCounter.cs
new file mode 100644
index 000000000..11649d516
--- /dev/null
+++ b/src/server/Model/Integration/Shrine/ShrineCohortCounter.cs
@@ -0,0 +1,64 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+using Microsoft.Extensions.Logging;
+using Microsoft.Extensions.Options;
+using Model.Authorization;
+using Model.Options;
+using Model.Integration.Shrine4_1;
+using Model.Compiler;
+
+namespace Model.Integration.Shrine
+{
+ public class ShrineCohortCounter
+ {
+ readonly ILogger log;
+ readonly IUserContext user;
+ readonly IShrineUserQueryCache userQueryCache;
+ readonly IShrineQueryResultCache queryResultCache;
+ readonly ShrineIntegrationOptions opts;
+
+ public ShrineCohortCounter(
+ ILogger log,
+ IOptions opts,
+ IUserContext user,
+ IShrineUserQueryCache userQueryCache,
+ IShrineQueryResultCache queryResultCache)
+ {
+ this.user = user;
+ this.userQueryCache = userQueryCache;
+ this.queryResultCache = queryResultCache;
+ this.log = log;
+ this.opts = opts.Value;
+ }
+
+ public ShrineRunQueryForResult SubmitQueryToShrine(ShrineQuery query)
+ {
+ return new ShrineRunQueryForResult
+ {
+ Query = query,
+ Researcher = new ShrineResearcher
+ {
+ Id = opts.Researcher.Id,
+ VersionInfo = query.VersionInfo,
+ UserName = opts.Researcher.Name,
+ UserDomainName = opts.Researcher.Domain,
+ NodeId = opts.Node.Id
+ },
+ Topic = new ShrineTopic
+ {
+ Id = opts.Topic.Id,
+ VersionInfo = query.VersionInfo,
+ ResearcherId = opts.Researcher.Id,
+ Name = opts.Topic.Name,
+ Description = opts.Topic.Description
+ },
+ ProtocolVersion = 2
+ };
+ }
+ }
+}
+
diff --git a/src/server/Model/Integration/Shrine/ShrineDeliveryAttempt.cs b/src/server/Model/Integration/Shrine/ShrineDeliveryAttempt.cs
new file mode 100644
index 000000000..cd16c0e46
--- /dev/null
+++ b/src/server/Model/Integration/Shrine/ShrineDeliveryAttempt.cs
@@ -0,0 +1,41 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+
+namespace Model.Integration.Shrine
+{
+ public class ShrineDeliveryAttempt
+ {
+ public ShrineInnerDeliveryAttempt DeliveryAttemptId { get; set; } = new ShrineInnerDeliveryAttempt();
+ public long MillisecondsToComplete { get; set; }
+ public int RemainingAttempts { get; set; }
+ public string Contents { get; set; }
+ }
+
+ public class ShrineInnerDeliveryAttempt
+ {
+ public long Underlying { get; set; }
+ }
+
+ public class ShrineDeliveryContents
+ {
+ public string Contents { get; set; }
+ public long ContentsSubject { get; set; }
+ public ShrineDeliveryContentsType ContentsType { get; set; }
+ public int ProtocolVersion = 2;
+ }
+
+ public enum ShrineDeliveryContentsType
+ {
+ Unknown,
+ UpdateQueryAtQep,
+ RunQueryForResult,
+ RunQueryAtHub,
+ Result,
+ UpdateResult
+ }
+}
+
diff --git a/src/server/Model/Integration/Shrine/ShrineNode.cs b/src/server/Model/Integration/Shrine/ShrineNode.cs
new file mode 100644
index 000000000..2bff23afb
--- /dev/null
+++ b/src/server/Model/Integration/Shrine/ShrineNode.cs
@@ -0,0 +1,23 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+namespace Model.Integration.Shrine
+{
+ public class ShrineNode
+ {
+ public long Id { get; set; }
+ public ShrineVersionInfo VersionInfo { get; set; }
+ public string Name { get; set; }
+ public string Key { get; set; }
+ public string UserDomainName { get; set; }
+ public string MomQueueName { get; set; }
+ public string AdminEmail { get; set; }
+ public bool SendQueries { get; set; }
+ public int UnderstandsProtocol { get; set; }
+ public string MomId { get; set; }
+ }
+}
+
diff --git a/src/server/Model/Integration/Shrine/ShrineQueryResult.cs b/src/server/Model/Integration/Shrine/ShrineQueryResult.cs
new file mode 100644
index 000000000..b34d79c3e
--- /dev/null
+++ b/src/server/Model/Integration/Shrine/ShrineQueryResult.cs
@@ -0,0 +1,24 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+using System.Collections.Generic;
+
+namespace Model.Integration.Shrine
+{
+ public class ShrineQueryResult
+ {
+ public long Id { get; set; }
+ public DateTime Updated = DateTime.Now;
+ public ShrineResearcher User { get; set; }
+ public Dictionary Results = new();
+
+ public ShrineQueryResult(long id)
+ {
+ Id = id;
+ }
+ }
+}
+
diff --git a/src/server/Model/Integration/Shrine/ShrineQueryStatus.cs b/src/server/Model/Integration/Shrine/ShrineQueryStatus.cs
new file mode 100644
index 000000000..cf2da07c2
--- /dev/null
+++ b/src/server/Model/Integration/Shrine/ShrineQueryStatus.cs
@@ -0,0 +1,31 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+namespace Model.Integration.Shrine
+{
+ public class ShrineQueryStatus
+ {
+ public ShrineQueryStatusType EncodedClass { get; set; }
+ }
+
+ public enum ShrineQueryStatusType
+ {
+ Unknown,
+ SentToAdapters,
+ ReceivedAtHub,
+ UpdateQueryAtQepWithStatus,
+ UpdateQueryReadyForAdapters,
+ IdAssigned,
+ SubmittedToCRC,
+ ResultProgress,
+ ReceivedByAdapter,
+ CrcResult,
+ ResultFromCRC,
+ UpdateResultWithProgress,
+ UpdateResultWithCrcResult
+ }
+}
+
diff --git a/src/server/Model/Integration/Shrine/ShrineResearcher.cs b/src/server/Model/Integration/Shrine/ShrineResearcher.cs
new file mode 100644
index 000000000..03a4ec134
--- /dev/null
+++ b/src/server/Model/Integration/Shrine/ShrineResearcher.cs
@@ -0,0 +1,18 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+namespace Model.Integration.Shrine
+{
+ public class ShrineResearcher
+ {
+ public long Id { get; set; }
+ public ShrineVersionInfo VersionInfo { get; set; }
+ public string UserName { get; set; }
+ public string UserDomainName { get; set; }
+ public long NodeId { get; set; }
+ }
+}
+
diff --git a/src/server/Model/Integration/Shrine/ShrineResultProgress.cs b/src/server/Model/Integration/Shrine/ShrineResultProgress.cs
new file mode 100644
index 000000000..1efa7d141
--- /dev/null
+++ b/src/server/Model/Integration/Shrine/ShrineResultProgress.cs
@@ -0,0 +1,33 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+
+namespace Model.Integration.Shrine
+{
+ public class ShrineResultProgress
+ {
+ public long Id { get; set; }
+ public ShrineVersionInfo VersionInfo { get; set; }
+ public long QueryId { get; set; }
+ public long AdapterNodeId { get; set; }
+ public string AdapterNodeName { get; set; }
+ public ShrineQueryStatus Status { get; set; }
+ public string StatusMessage { get; set; }
+ public long? CrcQueryInstanceId { get; set; }
+ public ShrineQueryStatusType EncodedClass { get; set; }
+ public int Count { get; set; } = -1;
+ public ShrineResultObfuscatingParameters ObfuscatingParameters { get; set; }
+ }
+
+ public class ShrineResultObfuscatingParameters
+ {
+ public int BinSize { get; set; }
+ public decimal StdDev { get; set; }
+ public int NoiseClamp { get; set; }
+ public int LowLimit { get; set; }
+ }
+}
+
diff --git a/src/server/Model/Integration/Shrine/ShrineRunQueryForResult.cs b/src/server/Model/Integration/Shrine/ShrineRunQueryForResult.cs
new file mode 100644
index 000000000..4921c646f
--- /dev/null
+++ b/src/server/Model/Integration/Shrine/ShrineRunQueryForResult.cs
@@ -0,0 +1,21 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+using Model.Integration.Shrine4_1;
+
+namespace Model.Integration.Shrine
+{
+ public class ShrineRunQueryForResult
+ {
+ public ShrineQuery Query { get; set; }
+ public ShrineNode Node { get; set; }
+ public ShrineTopic Topic { get; set; }
+ public ShrineResultProgress ResultProgress { get; set; }
+ public ShrineResearcher Researcher { get; set; }
+ public int ProtocolVersion { get; set; }
+ }
+}
+
diff --git a/src/server/Model/Integration/Shrine/ShrineTopic.cs b/src/server/Model/Integration/Shrine/ShrineTopic.cs
new file mode 100644
index 000000000..9c79b182b
--- /dev/null
+++ b/src/server/Model/Integration/Shrine/ShrineTopic.cs
@@ -0,0 +1,18 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+namespace Model.Integration.Shrine
+{
+ public class ShrineTopic
+ {
+ public long Id { get; set; }
+ public ShrineVersionInfo VersionInfo { get; set; }
+ public long ResearcherId { get; set; }
+ public string Name { get; set; }
+ public string Description { get; set; }
+ }
+}
+
diff --git a/src/server/Model/Integration/Shrine/ShrineUpdateQueryAtQep.cs b/src/server/Model/Integration/Shrine/ShrineUpdateQueryAtQep.cs
new file mode 100644
index 000000000..df219db96
--- /dev/null
+++ b/src/server/Model/Integration/Shrine/ShrineUpdateQueryAtQep.cs
@@ -0,0 +1,30 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+using System.Linq;
+using System.Collections.Generic;
+
+namespace Model.Integration.Shrine
+{
+ public class ShrineUpdateQueryAtQep
+ {
+ public long QueryId { get; set; }
+ public ShrineQueryStatus QueryStatus { get; set; }
+ public DateTime ChangeDate { get; set; }
+ public ShrineQueryStatusType EncodedClass { get; set; }
+ public IEnumerable ResultProgresses { get; set; }
+
+ public ShrineQueryResult ToQueryResult()
+ {
+ return new ShrineQueryResult(QueryId)
+ {
+ Updated = ChangeDate,
+ Results = ResultProgresses?.ToDictionary(p => p.QueryId)
+ };
+ }
+ }
+}
+
diff --git a/src/server/Model/Integration/Shrine/ShrineUpdateResultWithCrcResult.cs b/src/server/Model/Integration/Shrine/ShrineUpdateResultWithCrcResult.cs
new file mode 100644
index 000000000..67b4bbdc8
--- /dev/null
+++ b/src/server/Model/Integration/Shrine/ShrineUpdateResultWithCrcResult.cs
@@ -0,0 +1,21 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+namespace Model.Integration.Shrine
+{
+ public class ShrineUpdateResultWithCrcResult : ShrineUpdateResultWithProgress
+ {
+ public ShrineBreakdown Breakdowns { get; set; }
+ public ShrineResultObfuscatingParameters ObfuscatingParameters { get; set; }
+ public int Count { get; set; }
+ }
+
+ public class ShrineBreakdown
+ {
+ public object[] Counts { get; set; }
+ }
+}
+
diff --git a/src/server/Model/Integration/Shrine/ShrineUpdateResultWithProgress.cs b/src/server/Model/Integration/Shrine/ShrineUpdateResultWithProgress.cs
new file mode 100644
index 000000000..cf40bdf65
--- /dev/null
+++ b/src/server/Model/Integration/Shrine/ShrineUpdateResultWithProgress.cs
@@ -0,0 +1,20 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+namespace Model.Integration.Shrine
+{
+ public class ShrineUpdateResultWithProgress
+ {
+ public long QueryId { get; set; }
+ public string AdapterNodeKey { get; set; }
+ public ShrineQueryStatus Status { get; set; }
+ public string StatusMessage { get; set; }
+ public long? CrcQueryInstanceId { get; set; }
+ public DateTime AdapterTime { get; set; }
+ public ShrineQueryStatusType EncodedClass { get; set; }
+ }
+}
+
diff --git a/src/server/Model/Integration/Shrine/ShrineVersionInfo.cs b/src/server/Model/Integration/Shrine/ShrineVersionInfo.cs
new file mode 100644
index 000000000..8aced911c
--- /dev/null
+++ b/src/server/Model/Integration/Shrine/ShrineVersionInfo.cs
@@ -0,0 +1,18 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+namespace Model.Integration.Shrine
+{
+ public class ShrineVersionInfo
+ {
+ public int ProtocolVersion { get; set; }
+ public int ItemVersion { get; set; }
+ public string ShrineVersion { get; set; }
+ public DateTime CreateDate { get; set; }
+ public DateTime ChangeDate { get; set; }
+ }
+}
+
diff --git a/src/server/Model/Model.csproj b/src/server/Model/Model.csproj
index 2090fb0ad..82a30f7cd 100644
--- a/src/server/Model/Model.csproj
+++ b/src/server/Model/Model.csproj
@@ -18,6 +18,9 @@
+
+
+
@@ -27,6 +30,9 @@
+
+
+
diff --git a/src/server/Model/Options/IntegrationOptions.cs b/src/server/Model/Options/IntegrationOptions.cs
new file mode 100644
index 000000000..f471b9346
--- /dev/null
+++ b/src/server/Model/Options/IntegrationOptions.cs
@@ -0,0 +1,46 @@
+// Copyright (c) 2023, UW Medicine Research IT, University of Washington
+// Developed by Nic Dobbins and Cliff Spital, CRIO Sean Mooney
+// This Source Code Form is subject to the terms of the Mozilla Public
+// License, v. 2.0. If a copy of the MPL was not distributed with this
+// file, You can obtain one at http://mozilla.org/MPL/2.0/.
+using System;
+
+namespace Model.Options
+{
+ public class IntegrationOptions
+ {
+ public bool Enabled { get; set; } = false;
+ public ShrineIntegrationOptions SHRINE { get; set; }
+ }
+
+ public class ShrineIntegrationOptions : IEnabled
+ {
+ public bool Enabled { get; set; } = false;
+ public string HubApiURI { get; set; }
+ public LocalNode Node { get; set; }
+ public LocalResearcher Researcher { get; set; }
+ public DefaultTopic Topic { get; set; }
+
+ public class LocalNode
+ {
+ public long Id { get; set; }
+ public string Key { get; set; }
+ public string Name { get; set; }
+ }
+
+ public class LocalResearcher
+ {
+ public long Id { get; set; }
+ public string Name { get; set; }
+ public string Domain { get; set; }
+ }
+
+ public class DefaultTopic
+ {
+ public long Id { get; set; }
+ public string Name { get; set; }
+ public string Description { get; set; }
+ }
+ }
+}
+
diff --git a/src/server/Model/Search/PreflightResourceChecker.cs b/src/server/Model/Search/PreflightResourceChecker.cs
index 31be10b4f..dc1c24cfe 100644
--- a/src/server/Model/Search/PreflightResourceChecker.cs
+++ b/src/server/Model/Search/PreflightResourceChecker.cs
@@ -42,11 +42,11 @@ public interface IPreflightConceptReader
public PreflightResourceChecker(
IPreflightResourceReader reader,
- IUserContext user,
+ IUserContextProvider userContextProvider,
ILogger log)
{
this.reader = reader;
- this.user = user;
+ this.user = userContextProvider.GetUserContext();
this.log = log;
}
diff --git a/src/server/Model/Search/QueryManager.cs b/src/server/Model/Search/QueryManager.cs
index fa2be717e..d968a86aa 100644
--- a/src/server/Model/Search/QueryManager.cs
+++ b/src/server/Model/Search/QueryManager.cs
@@ -12,7 +12,6 @@
using Model.Authorization;
using Model.Compiler;
using Model.Extensions;
-using Model.Search;
using Model.Tagging;
using Model.Error;
using System.Data.Common;
diff --git a/src/server/Services/Admin/Compiler/AdminConceptEventService.cs b/src/server/Services/Admin/Compiler/AdminConceptEventService.cs
index fd0cf2628..22cdd148e 100644
--- a/src/server/Services/Admin/Compiler/AdminConceptEventService.cs
+++ b/src/server/Services/Admin/Compiler/AdminConceptEventService.cs
@@ -6,14 +6,11 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
-using Model.Admin;
-using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Model.Options;
using System.Data.SqlClient;
using System.Data;
using Dapper;
-using Model.Error;
using Model.Authorization;
using Model.Admin.Compiler;
@@ -26,10 +23,10 @@ public class AdminConceptEventService : AdminConceptEventManager.IAdminConceptEv
public AdminConceptEventService(
IOptions options,
- IUserContext userContext)
+ IUserContext user)
{
opts = options.Value;
- user = userContext;
+ this.user = user;
}
public async Task CreateAsync(ConceptEvent ev)
diff --git a/src/server/Services/Admin/Compiler/AdminConceptService.cs b/src/server/Services/Admin/Compiler/AdminConceptService.cs
index 55a2c6805..ad75183dc 100644
--- a/src/server/Services/Admin/Compiler/AdminConceptService.cs
+++ b/src/server/Services/Admin/Compiler/AdminConceptService.cs
@@ -10,11 +10,8 @@
using System.Linq;
using System.Threading.Tasks;
using Dapper;
-using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
-using Model.Admin;
using Model.Authorization;
-using Model.Error;
using Model.Options;
using Model.Tagging;
using Services.Search;
@@ -30,10 +27,10 @@ public class AdminConceptService : AdminConceptManager.IAdminConceptService
public AdminConceptService(
IOptions options,
- IUserContext userContext)
+ IUserContext user)
{
opts = options.Value;
- user = userContext;
+ this.user = user;
}
public async Task CreateAsync(AdminConcept c)
diff --git a/src/server/Services/Admin/Compiler/AdminConceptSqlSetService.cs b/src/server/Services/Admin/Compiler/AdminConceptSqlSetService.cs
index 4f77d6fa8..d713b3a4f 100644
--- a/src/server/Services/Admin/Compiler/AdminConceptSqlSetService.cs
+++ b/src/server/Services/Admin/Compiler/AdminConceptSqlSetService.cs
@@ -28,11 +28,11 @@ public class AdminConceptSqlSetService : AdminConceptSqlSetManager.IAdminConcept
public AdminConceptSqlSetService(
ILogger logger,
IOptions options,
- IUserContext userContext)
+ IUserContext user)
{
this.logger = logger;
opts = options.Value;
- user = userContext;
+ this.user = user;
}
public async Task CreateAsync(ConceptSqlSet set)
diff --git a/src/server/Services/Admin/Compiler/AdminDatasetCategoryService.cs b/src/server/Services/Admin/Compiler/AdminDatasetCategoryService.cs
index fdf876831..0a4d81837 100644
--- a/src/server/Services/Admin/Compiler/AdminDatasetCategoryService.cs
+++ b/src/server/Services/Admin/Compiler/AdminDatasetCategoryService.cs
@@ -9,16 +9,11 @@
using System.Data.SqlClient;
using System.Data;
using Model.Options;
-using Model.Error;
using Model.Admin.Compiler;
using Model.Authorization;
-using Model.Tagging;
using System.Threading.Tasks;
using Microsoft.Extensions.Options;
using Dapper;
-using Model.Compiler;
-using Services.Tables;
-using Model.Extensions;
namespace Services.Admin.Compiler
{
@@ -28,10 +23,10 @@ public class AdminDatasetCategoryService : AdminDatasetCategoryManager.IAdminDat
readonly AppDbOptions opts;
public AdminDatasetCategoryService(
- IUserContext userContext,
+ IUserContext user,
IOptions opts)
{
- this.user = userContext;
+ this.user = user;
this.opts = opts.Value;
}
diff --git a/src/server/Services/Admin/Compiler/AdminDatasetQueryService.cs b/src/server/Services/Admin/Compiler/AdminDatasetQueryService.cs
index a096769fd..d5c284f25 100644
--- a/src/server/Services/Admin/Compiler/AdminDatasetQueryService.cs
+++ b/src/server/Services/Admin/Compiler/AdminDatasetQueryService.cs
@@ -9,7 +9,6 @@
using System.Data.SqlClient;
using System.Data;
using Model.Options;
-using Model.Error;
using Model.Admin.Compiler;
using Model.Authorization;
using Model.Tagging;
@@ -18,7 +17,6 @@
using Dapper;
using Model.Compiler;
using Services.Tables;
-using Model.Extensions;
using Services.Search;
namespace Services.Admin.Compiler
@@ -28,10 +26,10 @@ public class AdminDatasetQueryService : AdminDatasetQueryManager.IAdminDatasetQu
readonly AppDbOptions opts;
readonly IUserContext user;
- public AdminDatasetQueryService(IOptions opts, IUserContext userContext)
+ public AdminDatasetQueryService(IOptions opts, IUserContext user)
{
this.opts = opts.Value;
- this.user = userContext;
+ this.user = user;
}
public async Task GetDatasetQueryByIdAsync(Guid id)
diff --git a/src/server/Services/Admin/Compiler/AdminDemographicQueryService.cs b/src/server/Services/Admin/Compiler/AdminDemographicQueryService.cs
index f7cfaf925..a66a93663 100644
--- a/src/server/Services/Admin/Compiler/AdminDemographicQueryService.cs
+++ b/src/server/Services/Admin/Compiler/AdminDemographicQueryService.cs
@@ -5,20 +5,14 @@
// file, You can obtain one at http://mozilla.org/MPL/2.0/.
using System;
using System.Collections.Generic;
-using System.Linq;
using System.Data.SqlClient;
using System.Data;
using Model.Options;
-using Model.Error;
using Model.Admin.Compiler;
using Model.Authorization;
-using Model.Tagging;
using System.Threading.Tasks;
using Microsoft.Extensions.Options;
using Dapper;
-using Model.Compiler;
-using Services.Tables;
-using Model.Extensions;
using Services.Search;
namespace Services.Admin.Compiler
@@ -28,10 +22,10 @@ public class AdminDemographicQueryService : AdminDemographicsManager.IAdminDemog
readonly AppDbOptions opts;
readonly IUserContext user;
- public AdminDemographicQueryService(IOptions opts, IUserContext userContext)
+ public AdminDemographicQueryService(IOptions opts, IUserContext user)
{
this.opts = opts.Value;
- this.user = userContext;
+ this.user = user;
}
public async Task GetDemographicQueryAsync()
diff --git a/src/server/Services/Admin/Compiler/AdminGlobalPanelFilterService.cs b/src/server/Services/Admin/Compiler/AdminGlobalPanelFilterService.cs
index a4dbce05c..93647c4d4 100644
--- a/src/server/Services/Admin/Compiler/AdminGlobalPanelFilterService.cs
+++ b/src/server/Services/Admin/Compiler/AdminGlobalPanelFilterService.cs
@@ -21,10 +21,10 @@ public class AdminGlobalPanelFilterService : AdminGlobalPanelFilterManager.IAdmi
readonly AppDbOptions opts;
readonly IUserContext user;
- public AdminGlobalPanelFilterService(IOptions opts, IUserContext userContext)
+ public AdminGlobalPanelFilterService(IOptions opts, IUserContext user)
{
this.opts = opts.Value;
- this.user = userContext;
+ this.user = user;
}
public async Task> GetAsync()
diff --git a/src/server/Services/Admin/Compiler/AdminSpecializationService.cs b/src/server/Services/Admin/Compiler/AdminSpecializationService.cs
index de439d877..c57b308dc 100644
--- a/src/server/Services/Admin/Compiler/AdminSpecializationService.cs
+++ b/src/server/Services/Admin/Compiler/AdminSpecializationService.cs
@@ -6,15 +6,12 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
-using Model.Admin;
using Model.Tagging;
-using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Model.Options;
using System.Data.SqlClient;
using System.Data;
using Dapper;
-using Model.Error;
using System.Linq;
using Model.Authorization;
using Model.Admin.Compiler;
@@ -28,10 +25,10 @@ public class AdminSpecializationService : AdminSpecializationManager.IAdminSpeci
public AdminSpecializationService(
IOptions options,
- IUserContext userContext)
+ IUserContext user)
{
opts = options.Value;
- user = userContext;
+ this.user = user;
}
public async Task CreateAsync(Specialization spec)
diff --git a/src/server/Services/Admin/Notification/ServerStateService.cs b/src/server/Services/Admin/Notification/ServerStateService.cs
index 52aa32210..922b939b4 100644
--- a/src/server/Services/Admin/Notification/ServerStateService.cs
+++ b/src/server/Services/Admin/Notification/ServerStateService.cs
@@ -22,10 +22,10 @@ public class AdminServerStateService : AdminServerStateManager.IAdminServerState
readonly AppDbOptions opts;
readonly IUserContext user;
- public AdminServerStateService(IOptions opts, IUserContext userContext)
+ public AdminServerStateService(IOptions opts, IUserContext user)
{
this.opts = opts.Value;
- this.user = userContext;
+ this.user = user;
}
public async Task GetServerStateAsync()
diff --git a/src/server/Services/Cohort/CachedCohortFetcher.cs b/src/server/Services/Cohort/CachedCohortFetcher.cs
index 3d3b6ce9c..77bd2fa0c 100644
--- a/src/server/Services/Cohort/CachedCohortFetcher.cs
+++ b/src/server/Services/Cohort/CachedCohortFetcher.cs
@@ -24,10 +24,10 @@ public class CachedCohortFetcher : ICachedCohortFetcher
readonly AppDbOptions dbOptions;
readonly IUserContext user;
- public CachedCohortFetcher(IOptions dbOptions, IUserContext user)
+ public CachedCohortFetcher(IOptions dbOptions, IUserContextProvider userContextProvider)
{
this.dbOptions = dbOptions.Value;
- this.user = user;
+ this.user = userContextProvider.GetUserContext();
}
public async Task> FetchCohortAsync(Guid queryId, bool exportedOnly)
diff --git a/src/server/Services/Cohort/CohortCacheService.cs b/src/server/Services/Cohort/CohortCacheService.cs
index 426d29ee3..b345bd345 100644
--- a/src/server/Services/Cohort/CohortCacheService.cs
+++ b/src/server/Services/Cohort/CohortCacheService.cs
@@ -70,7 +70,7 @@ ILogger logger
}
var cohortTable = new PatientCohortTable(queryId, cohort.SeasonedPatients(exportLimit, queryId));
- rowCount = cohortTable.Rows.Count();
+ rowCount = cohortTable.Rows.Length;
using (var bc = new SqlBulkCopy(cn))
{
diff --git a/src/server/Services/Cohort/CtePatientCohortService.cs b/src/server/Services/Cohort/CtePatientCohortService.cs
index f041b5a11..8ee56d9a0 100644
--- a/src/server/Services/Cohort/CtePatientCohortService.cs
+++ b/src/server/Services/Cohort/CtePatientCohortService.cs
@@ -35,7 +35,7 @@ protected override async Task GetCohortAsync(PatientCountQuery qu
return new PatientCohort
{
QueryId = query.QueryId,
- PatientIds = await GetPatientSetAsync(cteQuery, query.DependentQueryIds, token),
+ PatientIds = new HashSet(), //await GetPatientSetAsync(cteQuery, query.DependentQueryIds, token),
SqlStatements = new string[] { cteQuery.SqlStatement },
Panels = query.Panels.Where(p => p.Domain == PanelDomain.Panel)
};
diff --git a/src/server/Services/Export/REDCapExportService.cs b/src/server/Services/Export/REDCapExportService.cs
index faa925cb9..50440fe52 100644
--- a/src/server/Services/Export/REDCapExportService.cs
+++ b/src/server/Services/Export/REDCapExportService.cs
@@ -10,7 +10,6 @@
using Microsoft.Extensions.Options;
using System.Net.Http;
using System.Threading.Tasks;
-using System.Net.Http.Headers;
using Newtonsoft.Json;
using Model.Export;
using Newtonsoft.Json.Serialization;
diff --git a/src/server/Services/Search/ConceptDatasetCompilerContextProvider.cs b/src/server/Services/Search/ConceptDatasetCompilerContextProvider.cs
index 6c44469c6..a96ffb971 100644
--- a/src/server/Services/Search/ConceptDatasetCompilerContextProvider.cs
+++ b/src/server/Services/Search/ConceptDatasetCompilerContextProvider.cs
@@ -33,11 +33,11 @@ public class ConceptDatasetCompilerContextProvider : ConceptDatasetCompilerValid
readonly ILogger log;
public ConceptDatasetCompilerContextProvider(
- IUserContext userContext,
+ IUserContext user,
IOptions options,
ILogger logger)
{
- user = userContext;
+ this.user = user;
opts = options.Value;
log = logger;
}
diff --git a/src/server/Services/Search/ConceptHintSearchService.cs b/src/server/Services/Search/ConceptHintSearchService.cs
index 24fbe8997..6a7d39d64 100644
--- a/src/server/Services/Search/ConceptHintSearchService.cs
+++ b/src/server/Services/Search/ConceptHintSearchService.cs
@@ -28,10 +28,10 @@ public class ConceptHintSearchService : ConceptHintSearcher.IConceptHintSearchSe
readonly AppDbOptions opts;
readonly IUserContext user;
- public ConceptHintSearchService(IOptions dbOptions, IUserContext userContext)
+ public ConceptHintSearchService(IOptions dbOptions, IUserContext user)
{
opts = dbOptions.Value;
- user = userContext;
+ this.user = user;
}
///
diff --git a/src/server/Services/Search/ConceptTreeReader.cs b/src/server/Services/Search/ConceptTreeReader.cs
index e394dc67c..7a6d2510b 100644
--- a/src/server/Services/Search/ConceptTreeReader.cs
+++ b/src/server/Services/Search/ConceptTreeReader.cs
@@ -38,10 +38,10 @@ public class ConceptTreeReader : ConceptTreeSearcher.IConceptTreeReader
readonly AppDbOptions opts;
readonly IUserContext user;
- public ConceptTreeReader(IOptions dbOpts, IUserContext userContext)
+ public ConceptTreeReader(IOptions dbOpts, IUserContext user)
{
opts = dbOpts.Value;
- user = userContext;
+ this.user = user;
}
public async Task GetAsync(Guid id)
diff --git a/src/server/Services/Search/DatasetCompilerContextProvider.cs b/src/server/Services/Search/DatasetCompilerContextProvider.cs
index 5335a5e79..a7a980180 100644
--- a/src/server/Services/Search/DatasetCompilerContextProvider.cs
+++ b/src/server/Services/Search/DatasetCompilerContextProvider.cs
@@ -33,11 +33,11 @@ public class DatasetCompilerContextProvider : DatasetCompilerValidationContextPr
};
public DatasetCompilerContextProvider(
- IUserContext userContext,
+ IUserContext user,
IOptions dbOptions,
ILogger logger)
{
- user = userContext;
+ this.user = user;
log = logger;
opts = dbOptions.Value;
}
diff --git a/src/server/Services/Search/DatasetQueryFetcher.cs b/src/server/Services/Search/DatasetQueryFetcher.cs
index ab31428a7..561a5c422 100644
--- a/src/server/Services/Search/DatasetQueryFetcher.cs
+++ b/src/server/Services/Search/DatasetQueryFetcher.cs
@@ -24,10 +24,10 @@ public class DatasetQueryFetcher : IDatasetQueryFetcher
readonly AppDbOptions opts;
public DatasetQueryFetcher(
- IUserContext userContext,
+ IUserContext user,
IOptions dbOptions)
{
- user = userContext;
+ this.user = user;
opts = dbOptions.Value;
}
diff --git a/src/server/Services/Search/DemographicCompilerContextProvider.cs b/src/server/Services/Search/DemographicCompilerContextProvider.cs
index 656ae4c44..fbba3ac2a 100644
--- a/src/server/Services/Search/DemographicCompilerContextProvider.cs
+++ b/src/server/Services/Search/DemographicCompilerContextProvider.cs
@@ -29,11 +29,11 @@ public class DemographicCompilerContextProvider : DemographicCompilerValidationC
readonly ILogger log;
public DemographicCompilerContextProvider(
- IUserContext userContext,
+ IUserContextProvider userContextProvider,
IOptions options,
ILogger logger)
{
- user = userContext;
+ this.user = userContextProvider.GetUserContext();
opts = options.Value;
log = logger;
}
diff --git a/src/server/Services/Search/PanelDatasetCompilerContextProvider.cs b/src/server/Services/Search/PanelDatasetCompilerContextProvider.cs
index 92508b01f..6c0baddf1 100644
--- a/src/server/Services/Search/PanelDatasetCompilerContextProvider.cs
+++ b/src/server/Services/Search/PanelDatasetCompilerContextProvider.cs
@@ -36,11 +36,11 @@ public class PanelDatasetCompilerContextProvider : PanelDatasetCompilerValidatio
};
public PanelDatasetCompilerContextProvider(
- IUserContext userContext,
+ IUserContext user,
IOptions options,
ILogger logger)
{
- user = userContext;
+ this.user = user;
opts = options.Value;
log = logger;
}
diff --git a/src/server/Services/Search/PreflightResourceReader.cs b/src/server/Services/Search/PreflightResourceReader.cs
index 144494f3a..be0a2854f 100644
--- a/src/server/Services/Search/PreflightResourceReader.cs
+++ b/src/server/Services/Search/PreflightResourceReader.cs
@@ -10,7 +10,6 @@
using System.Linq;
using System.Threading.Tasks;
using Dapper;
-using Microsoft.Extensions.Logging;
using Microsoft.Extensions.Options;
using Model.Authorization;
using Model.Compiler;
@@ -28,10 +27,10 @@ public class PreflightResourceReader : PreflightResourceChecker.IPreflightResour
public PreflightResourceReader(
IOptions options,
- IUserContext userContext)
+ IUserContextProvider userContextProvider)
{
opts = options.Value;
- user = userContext;
+ this.user = userContextProvider.GetUserContext();
}
public async Task GetResourcesByIdsAsync(ResourceRefs refs)
diff --git a/src/server/Services/Search/QueryService.cs b/src/server/Services/Search/QueryService.cs
index 6f0bbb2ee..48e621772 100644
--- a/src/server/Services/Search/QueryService.cs
+++ b/src/server/Services/Search/QueryService.cs
@@ -34,11 +34,11 @@ public class QueryService : IQueryService
readonly AppDbOptions dbOpts;
public QueryService(
- IUserContext userContext,
+ IUserContext user,
IOptions dbOpts
)
{
- user = userContext;
+ this.user = user;
this.dbOpts = dbOpts.Value;
}
diff --git a/src/server/Tests/SqlCompilerTests.cs b/src/server/Tests/SqlCompilerTests.cs
index 3ddc9b39e..dbafc483c 100644
--- a/src/server/Tests/SqlCompilerTests.cs
+++ b/src/server/Tests/SqlCompilerTests.cs
@@ -86,7 +86,7 @@ public void Where_Clause_Added_If_Panel_Has_Where()
* Two WHERE clauses
*/
pi.Concept.SqlFieldNumeric = "Num";
- pi.NumericFilter = new NumericFilter { Filter = new[] { 5.0M }, FilterType = NumericFilterType.EqualTo };
+ pi.NumericFilter = new NumericFilter { Filter = new[] { 5.0M }, FilterType = NumericFilterType.Equal };
ob = new SubPanelSqlSet(panel, Options, dialect);
Assert.Contains("WHERE 1 = 1 AND Num = 5.0", ob.ToString());
diff --git a/src/shrine-conv-temp/api_test.py b/src/shrine-conv-temp/api_test.py
new file mode 100644
index 000000000..73b639693
--- /dev/null
+++ b/src/shrine-conv-temp/api_test.py
@@ -0,0 +1,210 @@
+import os
+import requests
+import random
+import json
+import time
+import warnings
+
+warnings.filterwarnings("ignore")
+os.environ["PYTHONWARNINGS"] = "ignore:Unverified HTTPS request"
+
+node1_id = 3698283121779390840
+leaf_node_id = 8304711555476111654
+node1_name = 'shrinenode1'
+leaf_node_name = 'leaftest'
+hub_base_uri = 'https://localhost:6443'
+
+query_id = int(str(random.getrandbits(128))[:18])
+node_id = leaf_node_id #node1_id
+node_name = leaf_node_name #node1_name
+researcher_id = 24823904
+create_date = round(time.time() * 1000)
+
+data = {
+ "contentsType": "RunQueryAtHub",
+ "contentsSubject": query_id,
+ "contents": {
+ "query": {
+ "id": query_id,
+ "versionInfo": {
+ "protocolVersion": 2,
+ "shrineVersion": "4.1.0-SNAPSHOT",
+ "itemVersion": 2,
+ "createDate": create_date,
+ "changeDate": create_date
+ },
+ "status": {
+ "encodedClass": "SentToHub"
+ },
+ "queryDefinition": {
+ "expression": {
+ "nMustBeTrue": 1,
+ "compare": {
+ "encodedClass": "AtLeast"
+ },
+ "possibilities": [
+ {
+ "concepts": {
+ "nMustBeTrue": 1,
+ "compare": {
+ "encodedClass": "AtLeast"
+ },
+ "possibilities": [
+ {
+ "displayName": "45-54 years old",
+ "termPath": "\\\\SHRINE\\SHRINE\\Demographics\\Age\\45-54 years old\\",
+ "constraint": None,
+ "encodedClass": "Concept"
+ }
+ ]
+ },
+ "startDate": None,
+ "endDate": None,
+ "occursAtLeast": 1,
+ "encodedClass": "ConceptGroup"
+ }
+ ],
+ "encodedClass": "Conjunction"
+ }
+ },
+ "output": {
+ "encodedClass": "Count"
+ },
+ "queryName": "Test from code",
+ "nodeOfOriginId": node_id,
+ "researcherId": researcher_id,
+ "topicId": 1,
+ "projectName": "Testing 2",
+ "flagged": False,
+ "flaggedMessage": None
+ },
+ "researcher": {
+ "id": 0, #researcher_id,
+ "versionInfo": {
+ "protocolVersion": 2,
+ "shrineVersion": "4.1.0-SNAPSHOT",
+ "itemVersion": 1,
+ "createDate": 0,
+ "changeDate": 0
+ },
+ "userName": 'ndobb', #"demo",
+ "userDomainName": 'u.washington.edu', # "i2b2demo",
+ "nodeId": node_id
+ },
+ "topic": {
+ "id": 1481654093,
+ "versionInfo": {
+ "protocolVersion": 2,
+ "shrineVersion": "4.1.0-SNAPSHOT",
+ "itemVersion": 1,
+ "createDate": 0,
+ "changeDate": 0
+ },
+ "researcherId": researcher_id,
+ "name": "Testing",
+ "description": "This is a topic for testing SHRINE 2020 (1)"
+ },
+ "protocolVersion": 2
+ },
+ "protocolVersion": 2
+}
+data['contents'] = json.dumps(data['contents'], separators=(',', ': ')).replace(': ',':')
+
+
+query_request = requests.put(f'{hub_base_uri}/shrine-api/mom/sendMessage/hub', json=data, verify=False)
+nodes = {}
+print()
+
+while 1 != 0:
+ status = requests.get(f'{hub_base_uri}/shrine-api/mom/receiveMessage/{node_name}?timeOutSeconds=50', verify=False)
+ if status.ok and status.text:
+ delivery_attempt = json.loads(status.text)
+ update_query_at_qep = json.loads(delivery_attempt['contents'])
+ query_status = json.loads(update_query_at_qep['contents'])
+
+ if update_query_at_qep['contentsType'] == 'RunQueryForResult':
+ msg_query_id = query_status['query']['id']
+ else:
+ msg_query_id = query_status['queryId']
+
+ delivery_attempt_id = delivery_attempt['deliveryAttemptId']['underlying']
+ acknowledged = requests.put(f'{hub_base_uri}/shrine-api/mom/acknowledge/{delivery_attempt_id}', verify=False)
+
+ print(f'{delivery_attempt_id} - {msg_query_id} - {update_query_at_qep["contentsType"]}')
+ print(update_query_at_qep['contents'])
+ print()
+
+ if 'adapterNodeId' not in query_status:
+ continue
+
+ msg_type = query_status['encodedClass']
+ node_id = query_status['adapterNodeId']
+
+ if node_id not in nodes:
+ node_info = requests.get(f'{hub_base_uri}/shrine-api/hub/node/{node_id}', verify=False)
+ nodes[node_id] = { 'node': json.loads(node_info.text), 'complete': False }
+ if msg_type == 'ResultProgress':
+ nodes[node_id]['status'] = query_status['status']['encodedClass']
+ elif msg_type == 'CrcResult':
+ nodes[node_id]['complete'] = True
+ nodes[node_id]['result'] = {
+ 'count': query_status['count'],
+ 'crcQueryInstanceId': query_status['crcQueryInstanceId'],
+ 'obfuscatingParameters': query_status['obfuscatingParameters']
+ }
+
+ #if all([node for _, node in nodes.items() if node['complete'] == True]):
+ # break
+
+ else:
+ break
+
+total = 0
+for _, node in nodes.items():
+ if node['complete']:
+ total += node['result']['count']
+ print(f"{node['node']['name']}: {node['result']['count']}")
+print(f'Total: {total}')
+
+'''
+delivery_attempt_id query_id contentsType
+------------------- ------------------- ----------------
+5127093841472865589 - 100523611964537284 - UpdateQueryAtQep
+{"queryId":100523611964537284,"queryStatus":{"encodedClass":"ReceivedAtHub"},"changeDate":1696525308901,"encodedClass":"UpdateQueryAtQepWithStatus"}
+
+8714169745439229153 - 100523611964537284 - UpdateQueryAtQep
+{"queryId":100523611964537284,"changeDate":1696525309001,"resultProgresses":[{"id":1784089895897391647,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":1,"createDate":1696525309001,"changeDate":1696525309001},"queryId":100523611964537284,"adapterNodeId":3854912477537176565,"adapterNodeName":"Local Node 2","status":{"encodedClass":"IdAssigned"},"statusMessage":null,"crcQueryInstanceId":null},{"id":1702258560717024998,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":1,"createDate":1696525309001,"changeDate":1696525309001},"queryId":100523611964537284,"adapterNodeId":8304711555476111654,"adapterNodeName":"Leaf Test","status":{"encodedClass":"IdAssigned"},"statusMessage":null,"crcQueryInstanceId":null},{"id":4279393489486628251,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":1,"createDate":1696525309001,"changeDate":1696525309001},"queryId":100523611964537284,"adapterNodeId":3698283121779390840,"adapterNodeName":"Local Node 1","status":{"encodedClass":"IdAssigned"},"statusMessage":null,"crcQueryInstanceId":null}],"encodedClass":"UpdateQueryReadyForAdapters"}
+
+281767842998056701 - 100523611964537284 - RunQueryForResult
+{"query":{"id":100523611964537284,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":4,"createDate":1696525308735,"changeDate":1696525309001},"status":{"encodedClass":"ReadyForAdapters"},"queryDefinition":{"expression":{"nMustBeTrue":1,"compare":{"encodedClass":"AtLeast"},"possibilities":[{"concepts":{"nMustBeTrue":1,"compare":{"encodedClass":"AtLeast"},"possibilities":[{"displayName":"45-54 years old","termPath":"\\\\SHRINE\\SHRINE\\Demographics\\Age\\45-54 years old\\","constraint":null,"encodedClass":"Concept"}]},"startDate":null,"endDate":null,"occursAtLeast":1,"encodedClass":"ConceptGroup"}],"encodedClass":"Conjunction"}},"output":{"encodedClass":"Count"},"queryName":"Test from code","nodeOfOriginId":8304711555476111654,"researcherId":24823904,"topicId":1,"projectName":"Testing 2","flagged":false,"flaggedMessage":null,"encodedClass":"QueryProgress"},"researcher":{"id":24823904,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":1,"createDate":0,"changeDate":0},"userName":"demo","userDomainName":"i2b2demo","nodeId":8304711555476111654},"node":{"id":8304711555476111654,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":1,"createDate":1691522665369,"changeDate":1691522665369},"name":"Leaf Test","key":"leaftest","userDomainName":"leaftest","momQueueName":"leaftest","adminEmail":"","sendQueries":true,"understandsProtocol":2,"momId":"leaftest"},"topic":{"id":1481654093,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":1,"createDate":0,"changeDate":0},"researcherId":24823904,"name":"Testing","description":"This is a topic for testing SHRINE 2020 (1)"},"resultProgress":{"id":1702258560717024998,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":2,"createDate":1696525309001,"changeDate":1696525309083},"queryId":100523611964537284,"adapterNodeId":8304711555476111654,"adapterNodeName":"Leaf Test","status":{"encodedClass":"SentToAdapter"},"statusMessage":null,"crcQueryInstanceId":null},"protocolVersion":2}
+
+3826692987303208400 - 100523611964537284 - Result
+{"id":1784089895897391647,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":2,"createDate":1696525309001,"changeDate":1696525309081},"queryId":100523611964537284,"adapterNodeId":3854912477537176565,"adapterNodeName":"Local Node 2","status":{"encodedClass":"SentToAdapter"},"statusMessage":null,"crcQueryInstanceId":null,"encodedClass":"ResultProgress"}
+
+1789400259777802191 - 100523611964537284 - Result
+{"id":1702258560717024998,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":2,"createDate":1696525309001,"changeDate":1696525309083},"queryId":100523611964537284,"adapterNodeId":8304711555476111654,"adapterNodeName":"Leaf Test","status":{"encodedClass":"SentToAdapter"},"statusMessage":null,"crcQueryInstanceId":null,"encodedClass":"ResultProgress"}
+
+7775922862824602811 - 100523611964537284 - Result
+{"id":4279393489486628251,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":2,"createDate":1696525309001,"changeDate":1696525309084},"queryId":100523611964537284,"adapterNodeId":3698283121779390840,"adapterNodeName":"Local Node 1","status":{"encodedClass":"SentToAdapter"},"statusMessage":null,"crcQueryInstanceId":null,"encodedClass":"ResultProgress"}
+
+6627771438749993387 - 100523611964537284 - Result
+{"id":4279393489486628251,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":2,"createDate":1696525309001,"changeDate":1696525309155},"queryId":100523611964537284,"adapterNodeId":3698283121779390840,"adapterNodeName":"Local Node 1","status":{"encodedClass":"ReceivedByAdapter"},"statusMessage":null,"crcQueryInstanceId":null,"encodedClass":"ResultProgress"}
+
+4728163467598226460 - 100523611964537284 - UpdateQueryAtQep
+{"queryId":100523611964537284,"queryStatus":{"encodedClass":"SentToAdapters"},"changeDate":1696525309299,"encodedClass":"UpdateQueryAtQepWithStatus"}
+
+4244047169261764344 - 100523611964537284 - Result
+{"id":1784089895897391647,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":3,"createDate":1696525309001,"changeDate":1696525309163},"queryId":100523611964537284,"adapterNodeId":3854912477537176565,"adapterNodeName":"Local Node 2","status":{"encodedClass":"ReceivedByAdapter"},"statusMessage":null,"crcQueryInstanceId":null,"encodedClass":"ResultProgress"}
+
+3228446450385589517 - 100523611964537284 - Result
+{"id":4279393489486628251,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":3,"createDate":1696525309001,"changeDate":1696525309415},"queryId":100523611964537284,"adapterNodeId":3698283121779390840,"adapterNodeName":"Local Node 1","status":{"encodedClass":"SubmittedToCRC"},"statusMessage":null,"crcQueryInstanceId":null,"encodedClass":"ResultProgress"}
+
+4203268677852707696 - 100523611964537284 - Result
+{"id":1784089895897391647,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":4,"createDate":1696525309001,"changeDate":1696525309473},"queryId":100523611964537284,"adapterNodeId":3854912477537176565,"adapterNodeName":"Local Node 2","status":{"encodedClass":"SubmittedToCRC"},"statusMessage":null,"crcQueryInstanceId":null,"encodedClass":"ResultProgress"}
+
+6462503807587626080 - 100523611964537284 - Result
+{"id":4279393489486628251,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":4,"createDate":1696525309001,"changeDate":1696525313734},"queryId":100523611964537284,"adapterNodeId":3698283121779390840,"adapterNodeName":"Local Node 1","status":{"encodedClass":"ResultFromCRC"},"statusMessage":"FINISHED","crcQueryInstanceId":2095,"count":40,"obfuscatingParameters":{"binSize":5,"stdDev":6.5,"noiseClamp":10,"lowLimit":10},"breakdowns":null,"encodedClass":"CrcResult"}
+
+3639190312427515142 - 100523611964537284 - Result
+{"id":1784089895897391647,"versionInfo":{"protocolVersion":2,"shrineVersion":"4.1.0-SNAPSHOT","itemVersion":5,"createDate":1696525309001,"changeDate":1696525314404},"queryId":100523611964537284,"adapterNodeId":3854912477537176565,"adapterNodeName":"Local Node 2","status":{"encodedClass":"ResultFromCRC"},"statusMessage":"FINISHED","crcQueryInstanceId":2065,"count":35,"obfuscatingParameters":{"binSize":5,"stdDev":6.5,"noiseClamp":10,"lowLimit":10},"breakdowns":null,"encodedClass":"CrcResult"}
+'''
\ No newline at end of file
diff --git a/src/shrine-conv-temp/create_concepts.sql b/src/shrine-conv-temp/create_concepts.sql
new file mode 100644
index 000000000..740d8c1f9
--- /dev/null
+++ b/src/shrine-conv-temp/create_concepts.sql
@@ -0,0 +1,127854 @@
+
+DECLARE @user NVARCHAR(20) = 'leaf_scripts'
+INSERT INTO app.ConceptSqlSet (SqlSetFrom, IsEncounterBased, IsEventBased, SqlFieldDate, Created, CreatedBy, Updated, UpdatedBy)
+SELECT *
+FROM (VALUES ('dbo.person', 0, 0, NULL, GETDATE(), @user, GETDATE(), @user),
+ ('dbo.condition_occurrence', 1, 0, '@.condition_start_date', GETDATE(), @user, GETDATE(), @user),
+ ('dbo.measurement', 1, 0, '@.measurement_date', GETDATE(), @user, GETDATE(), @user),
+ ('dbo.drug_exposure', 1, 0, '@.drug_exposure_start_date', GETDATE(), @user, GETDATE(), @user)
+ ) AS X(col1,col2,col3,col4,col5,col6,col7,col8)
+
+DECLARE @sqlset_person INT = (SELECT TOP 1 Id FROM app.ConceptSqlSet WHERE SqlSetFrom = 'dbo.person')
+DECLARE @sqlset_condition_occurrence INT = (SELECT TOP 1 Id FROM app.ConceptSqlSet WHERE SqlSetFrom = 'dbo.condition_occurrence')
+DECLARE @sqlset_measurement INT = (SELECT TOP 1 Id FROM app.ConceptSqlSet WHERE SqlSetFrom = 'dbo.measurement')
+DECLARE @sqlset_drug_exposure INT = (SELECT TOP 1 Id FROM app.ConceptSqlSet WHERE SqlSetFrom = 'dbo.drug_exposure')
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\', NULL, 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\', 1, 0,
+ 1, 1, @sqlset_person, NULL, NULL,
+ 'Demographics', 'Demographics', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 1, 0,
+ 1, 0, @sqlset_person, NULL, NULL,
+ 'Age', 'Age', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\', 1, 0,
+ 1, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) BETWEEN 0 AND 9', NULL,
+ '0-9 years old', '0-9 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\0 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\0 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 0', NULL,
+ '0 years old', '0 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\1 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\1 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 1', NULL,
+ '1 years old', '1 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\2 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\2 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 2', NULL,
+ '2 years old', '2 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\3 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\3 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 3', NULL,
+ '3 years old', '3 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\4 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\4 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 4', NULL,
+ '4 years old', '4 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\5 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\5 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 5', NULL,
+ '5 years old', '5 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\6 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\6 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 6', NULL,
+ '6 years old', '6 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\7 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\7 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 7', NULL,
+ '7 years old', '7 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\8 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\8 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 8', NULL,
+ '8 years old', '8 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\9 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\0-9 years old\9 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 9', NULL,
+ '9 years old', '9 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\', 1, 0,
+ 1, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) BETWEEN 10 AND 17', NULL,
+ '10-17 years old', '10-17 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\10 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\10 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 10', NULL,
+ '10 years old', '10 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\11 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\11 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 11', NULL,
+ '11 years old', '11 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\12 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\12 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 12', NULL,
+ '12 years old', '12 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\13 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\13 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 13', NULL,
+ '13 years old', '13 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\14 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\14 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 14', NULL,
+ '14 years old', '14 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\15 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\15 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 15', NULL,
+ '15 years old', '15 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\16 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\16 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 16', NULL,
+ '16 years old', '16 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\17 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\10-17 years old\17 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 17', NULL,
+ '17 years old', '17 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 1, 0,
+ 1, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) BETWEEN 18 AND 34', NULL,
+ '18-34 years old', '18-34 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\18 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\18 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 18', NULL,
+ '18 years old', '18 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\19 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\19 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 19', NULL,
+ '19 years old', '19 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\20 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\20 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 20', NULL,
+ '20 years old', '20 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\21 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\21 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 21', NULL,
+ '21 years old', '21 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\22 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\22 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 22', NULL,
+ '22 years old', '22 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\23 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\23 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 23', NULL,
+ '23 years old', '23 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\24 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\24 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 24', NULL,
+ '24 years old', '24 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\25 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\25 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 25', NULL,
+ '25 years old', '25 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\26 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\26 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 26', NULL,
+ '26 years old', '26 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\27 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\27 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 27', NULL,
+ '27 years old', '27 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\28 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\28 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 28', NULL,
+ '28 years old', '28 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\29 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\29 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 29', NULL,
+ '29 years old', '29 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\30 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\30 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 30', NULL,
+ '30 years old', '30 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\31 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\31 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 31', NULL,
+ '31 years old', '31 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\32 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\32 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 32', NULL,
+ '32 years old', '32 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\33 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\33 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 33', NULL,
+ '33 years old', '33 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\18-34 years old\34 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 34', NULL,
+ '34 years old', '34 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\', 1, 0,
+ 1, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) BETWEEN 35 AND 44', NULL,
+ '35-44 years old', '35-44 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\35 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\35 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 35', NULL,
+ '35 years old', '35 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\36 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\36 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 36', NULL,
+ '36 years old', '36 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\37 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\37 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 37', NULL,
+ '37 years old', '37 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\38 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\38 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 38', NULL,
+ '38 years old', '38 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\39 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\39 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 39', NULL,
+ '39 years old', '39 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\40 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\40 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 40', NULL,
+ '40 years old', '40 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\41 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\41 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 41', NULL,
+ '41 years old', '41 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\42 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\42 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 42', NULL,
+ '42 years old', '42 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\43 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\43 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 43', NULL,
+ '43 years old', '43 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\44 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\35-44 years old\44 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 44', NULL,
+ '44 years old', '44 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\', 1, 0,
+ 1, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) BETWEEN 45 AND 54', NULL,
+ '45-54 years old', '45-54 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\45 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\45 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 45', NULL,
+ '45 years old', '45 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\46 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\46 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 46', NULL,
+ '46 years old', '46 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\47 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\47 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 47', NULL,
+ '47 years old', '47 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\48 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\48 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 48', NULL,
+ '48 years old', '48 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\49 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\49 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 49', NULL,
+ '49 years old', '49 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\50 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\50 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 50', NULL,
+ '50 years old', '50 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\51 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\51 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 51', NULL,
+ '51 years old', '51 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\52 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\52 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 52', NULL,
+ '52 years old', '52 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\53 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\53 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 53', NULL,
+ '53 years old', '53 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\54 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\45-54 years old\54 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 54', NULL,
+ '54 years old', '54 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\', 1, 0,
+ 1, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) BETWEEN 55 AND 64', NULL,
+ '55-64 years old', '55-64 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\55 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\55 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 55', NULL,
+ '55 years old', '55 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\56 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\56 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 56', NULL,
+ '56 years old', '56 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\57 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\57 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 57', NULL,
+ '57 years old', '57 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\58 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\58 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 58', NULL,
+ '58 years old', '58 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\59 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\59 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 59', NULL,
+ '59 years old', '59 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\60 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\60 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 60', NULL,
+ '60 years old', '60 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\61 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\61 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 61', NULL,
+ '61 years old', '61 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\62 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\62 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 62', NULL,
+ '62 years old', '62 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\63 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\63 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 63', NULL,
+ '63 years old', '63 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\64 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\55-64 years old\64 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 64', NULL,
+ '64 years old', '64 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\', 1, 0,
+ 1, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) BETWEEN 65 AND 74', NULL,
+ '65-74 years old', '65-74 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\65 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\65 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 65', NULL,
+ '65 years old', '65 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\66 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\66 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 66', NULL,
+ '66 years old', '66 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\67 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\67 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 67', NULL,
+ '67 years old', '67 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\68 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\68 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 68', NULL,
+ '68 years old', '68 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\69 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\69 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 69', NULL,
+ '69 years old', '69 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\70 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\70 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 70', NULL,
+ '70 years old', '70 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\71 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\71 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 71', NULL,
+ '71 years old', '71 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\72 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\72 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 72', NULL,
+ '72 years old', '72 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\73 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\73 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 73', NULL,
+ '73 years old', '73 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\74 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\65-74 years old\74 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 74', NULL,
+ '74 years old', '74 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\', 1, 0,
+ 1, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) BETWEEN 75 AND 84', NULL,
+ '75-84 years old', '75-84 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\75 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\75 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 75', NULL,
+ '75 years old', '75 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\76 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\76 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 76', NULL,
+ '76 years old', '76 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\77 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\77 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 77', NULL,
+ '77 years old', '77 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\78 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\78 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 78', NULL,
+ '78 years old', '78 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\79 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\79 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 79', NULL,
+ '79 years old', '79 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\80 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\80 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 80', NULL,
+ '80 years old', '80 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\81 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\81 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 81', NULL,
+ '81 years old', '81 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\82 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\82 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 82', NULL,
+ '82 years old', '82 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\83 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\83 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 83', NULL,
+ '83 years old', '83 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\84 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\75-84 years old\84 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 84', NULL,
+ '84 years old', '84 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\', 1, 0,
+ 1, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) BETWEEN 85 AND 89', NULL,
+ '85-89 years old', '85-89 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\85 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\85 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 85', NULL,
+ '85 years old', '85 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\86 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\86 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 86', NULL,
+ '86 years old', '86 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\87 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\87 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 87', NULL,
+ '87 years old', '87 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\88 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\88 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 88', NULL,
+ '88 years old', '88 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\89 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\85-89 years old\89 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 89', NULL,
+ '89 years old', '89 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\>=65 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\>=65 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 65', NULL,
+ '>=65 years old', '>=65 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\>=80 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\>=80 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 80', NULL,
+ '>=80 years old', '>=80 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\>=85 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\>=85 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 85', NULL,
+ '>=85 years old', '>=85 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\>=90 years old\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\>=90 years old\', 1, 0,
+ 0, 0, @sqlset_person, 'CONVERT(INT, (DATEDIFF(DAY, @.birth_datetime, GETDATE()) / 365.25)) = 90', NULL,
+ '>=90 years old', '>=90 years old', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\Unknown\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Age\Unknown\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Unknown', 'Unknown', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Gender\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Gender\', 1, 0,
+ 1, 0, @sqlset_person, NULL, NULL,
+ 'Gender', 'Gender', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Gender\Female\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Gender\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Gender\Female\', 1, 0,
+ 0, 0, @sqlset_person, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.gender_concept_id AND @C.concept_name = ''FEMALE'')', NULL,
+ 'Female', 'Female', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Gender\Male\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Gender\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Gender\Male\', 1, 0,
+ 0, 0, @sqlset_person, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.gender_concept_id AND @C.concept_name = ''MALE'')', NULL,
+ 'Male', 'Male', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Gender\Unknown\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Gender\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Gender\Unknown\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Unknown', 'Unknown', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 1, 0,
+ 1, 0, @sqlset_person, NULL, NULL,
+ 'Language', 'Language', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Albanian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Albanian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Albanian', 'Albanian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Amharic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Amharic\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Amharic', 'Amharic', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Arabic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Arabic\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Arabic', 'Arabic', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Armenian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Armenian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Armenian', 'Armenian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Australian languages\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Australian languages\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Australian languages', 'Australian languages', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Bantu (Other)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Bantu (Other)\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Bantu (Other)', 'Bantu (Other)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Bengali\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Bengali\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Bengali', 'Bengali', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Bini\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Bini\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Bini', 'Bini', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Bosnian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Bosnian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Bosnian', 'Bosnian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Bulgarian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Bulgarian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Bulgarian', 'Bulgarian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Burmese\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Burmese\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Burmese', 'Burmese', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Castilian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Castilian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Castilian', 'Castilian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Central Khmer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Central Khmer\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Central Khmer', 'Central Khmer', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Chinese\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Chinese\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Chinese', 'Chinese', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Creoles and pidgins (Other)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Creoles and pidgins (Other)\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Creoles and pidgins (Other)', 'Creoles and pidgins (Other)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Creoles and pidgins, English-based (Other)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Creoles and pidgins, English-based (Other)\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Creoles and pidgins, English-based (Other)', 'Creoles and pidgins, English-based (Other)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Creoles and pidgins, French-based (Other)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Creoles and pidgins, French-based (Other)\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Creoles and pidgins, French-based (Other)', 'Creoles and pidgins, French-based (Other)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Creoles and pidgins, Portuguese-based (Other)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Creoles and pidgins, Portuguese-based (Other)\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Creoles and pidgins, Portuguese-based (Other)', 'Creoles and pidgins, Portuguese-based (Other)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Czech\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Czech\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Czech', 'Czech', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Danish\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Danish\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Danish', 'Danish', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Dutch\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Dutch\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Dutch', 'Dutch', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Edo\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Edo\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Edo', 'Edo', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\English\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\English\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'English', 'English', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Ewe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Ewe\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Ewe', 'Ewe', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Filipino\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Filipino\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Filipino', 'Filipino', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Flemish\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Flemish\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Flemish', 'Flemish', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\French\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\French\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'French', 'French', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Fulah\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Fulah\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Fulah', 'Fulah', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\German\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\German\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'German', 'German', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Greek, Modern (1453-)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Greek, Modern (1453-)\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Greek, Modern (1453-)', 'Greek, Modern (1453-)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Gujarati\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Gujarati\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Gujarati', 'Gujarati', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Haitian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Haitian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Haitian', 'Haitian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Haitian Creole\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Haitian Creole\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Haitian Creole', 'Haitian Creole', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Hausa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Hausa\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Hausa', 'Hausa', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Hebrew\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Hebrew\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Hebrew', 'Hebrew', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Hebrew\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Hebrew\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Hebrew', 'Hebrew', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Hindi\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Hindi\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Hindi', 'Hindi', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Hmong\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Hmong\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Hmong', 'Hmong', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Hungarian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Hungarian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Hungarian', 'Hungarian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Icelandic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Icelandic\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Icelandic', 'Icelandic', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Igbo\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Igbo\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Igbo', 'Igbo', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Ijo languages\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Ijo languages\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Ijo languages', 'Ijo languages', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Italian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Italian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Italian', 'Italian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Japanese\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Japanese\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Japanese', 'Japanese', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Kanuri\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Kanuri\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Kanuri', 'Kanuri', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Korean\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Korean\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Korean', 'Korean', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Lao\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Lao\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Lao', 'Lao', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Latvian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Latvian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Latvian', 'Latvian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Lithuanian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Lithuanian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Lithuanian', 'Lithuanian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Macedonian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Macedonian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Macedonian', 'Macedonian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Navaho\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Navaho\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Navaho', 'Navaho', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Navajo\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Navajo\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Navajo', 'Navajo', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Ndebele, North\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Ndebele, North\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Ndebele, North', 'Ndebele, North', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\North American Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\North American Indian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'North American Indian', 'North American Indian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\North Ndebele\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\North Ndebele\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'North Ndebele', 'North Ndebele', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Norwegian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Norwegian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Norwegian', 'Norwegian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Panjabi\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Panjabi\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Panjabi', 'Panjabi', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Persian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Persian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Persian', 'Persian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Pilipino\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Pilipino\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Pilipino', 'Pilipino', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Polish\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Polish\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Polish', 'Polish', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Portuguese\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Portuguese\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Portuguese', 'Portuguese', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Punjabi\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Punjabi\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Punjabi', 'Punjabi', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Romanian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Romanian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Romanian', 'Romanian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Russian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Russian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Russian', 'Russian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Serbian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Serbian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Serbian', 'Serbian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Serbo-Croatian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Serbo-Croatian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Serbo-Croatian', 'Serbo-Croatian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Shona\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Shona\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Shona', 'Shona', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Sign Languages\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Sign Languages\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Sign Languages', 'Sign Languages', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Slavic (Other)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Slavic (Other)\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Slavic (Other)', 'Slavic (Other)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Slovenian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Slovenian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Slovenian', 'Slovenian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Somali\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Somali\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Somali', 'Somali', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Spanish\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Spanish\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Spanish', 'Spanish', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Swahili\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Swahili\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Swahili', 'Swahili', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Swedish\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Swedish\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Swedish', 'Swedish', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Tagalog\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Tagalog\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Tagalog', 'Tagalog', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Tamil\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Tamil\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Tamil', 'Tamil', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Thai\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Thai\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Thai', 'Thai', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Tibetan\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Tibetan\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Tibetan', 'Tibetan', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Tigrinya\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Tigrinya\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Tigrinya', 'Tigrinya', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Turkish\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Turkish\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Turkish', 'Turkish', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Ukrainian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Ukrainian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Ukrainian', 'Ukrainian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Urdu\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Urdu\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Urdu', 'Urdu', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Vietnamese\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Vietnamese\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Vietnamese', 'Vietnamese', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Yoruba\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Yoruba\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Yoruba', 'Yoruba', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Unknown\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Language\Unknown\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'zz Unknown', 'zz Unknown', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\', 1, 0,
+ 1, 0, @sqlset_person, NULL, NULL,
+ 'Marital Status', 'Marital Status', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\Divorced\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\Divorced\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Divorced', 'Divorced', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\Domestic partner\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\Domestic partner\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Domestic partner', 'Domestic partner', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\Legally Separated\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\Legally Separated\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Legally Separated', 'Legally Separated', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\Married\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\Married\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Married', 'Married', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\Never Married\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\Never Married\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Never Married', 'Never Married', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\Widowed\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\Widowed\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Widowed', 'Widowed', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\Unknown\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Marital Status\Unknown\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'zz Unknown', 'zz Unknown', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\', 1, 0,
+ 1, 0, @sqlset_person, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.race_concept_id AND @C.concept_name = ''Race'')', NULL,
+ 'Race and Ethnicity', 'Race and Ethnicity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\', 1, 0,
+ 1, 0, @sqlset_person, NULL, NULL,
+ 'E1: Hispanic or Latino', 'E1: Hispanic or Latino', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\', 1, 0,
+ 1, 0, @sqlset_person, NULL, NULL,
+ 'Central American', 'Central American', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\Costa Rican\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\Costa Rican\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Costa Rican', 'Costa Rican', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\Guatemalan\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\Guatemalan\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Guatemalan', 'Guatemalan', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\Honduran\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\Honduran\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Honduran', 'Honduran', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\Nicaraguan\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\Nicaraguan\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Nicaraguan', 'Nicaraguan', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\Panamanian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\Panamanian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Panamanian', 'Panamanian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\Salvadoran\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Central American\Salvadoran\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Salvadoran', 'Salvadoran', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Cuban\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Cuban\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Cuban', 'Cuban', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Latin American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Latin American\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Latin American', 'Latin American', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Mexican\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Mexican\', 1, 0,
+ 1, 0, @sqlset_person, NULL, NULL,
+ 'Mexican', 'Mexican', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Mexican\Chicano\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Mexican\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Mexican\Chicano\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Chicano', 'Chicano', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Mexican\La Raza\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Mexican\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Mexican\La Raza\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'La Raza', 'La Raza', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Mexican\Mexican American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Mexican\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Mexican\Mexican American\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Mexican American', 'Mexican American', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Mexican\Mexicano\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Mexican\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Mexican\Mexicano\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Mexicano', 'Mexicano', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Puerto Rican\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Puerto Rican\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Puerto Rican', 'Puerto Rican', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\', 1, 0,
+ 1, 0, @sqlset_person, NULL, NULL,
+ 'South American', 'South American', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Argentinean\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Argentinean\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Argentinean', 'Argentinean', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Bolivian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Bolivian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Bolivian', 'Bolivian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Chilean\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Chilean\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Chilean', 'Chilean', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Colombian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Colombian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Colombian', 'Colombian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Criollo\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Criollo\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Criollo', 'Criollo', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Ecuadorian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Ecuadorian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Ecuadorian', 'Ecuadorian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Paraguayan\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Paraguayan\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Paraguayan', 'Paraguayan', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Peruvian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Peruvian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Peruvian', 'Peruvian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Uruguayan\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Uruguayan\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Uruguayan', 'Uruguayan', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Venezuelan\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\South American\Venezuelan\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Venezuelan', 'Venezuelan', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\', 1, 0,
+ 1, 0, @sqlset_person, NULL, NULL,
+ 'Spaniard', 'Spaniard', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\Asturian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\Asturian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Asturian', 'Asturian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\Belearic Islander\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\Belearic Islander\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Belearic Islander', 'Belearic Islander', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\Canarian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\Canarian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Canarian', 'Canarian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\Castillian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\Castillian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Castillian', 'Castillian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\Catalonian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\Catalonian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Catalonian', 'Catalonian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\Spanish Basque\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\Spanish Basque\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Spanish Basque', 'Spanish Basque', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\Valencian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Hispanic or Latino\Spaniard\Valencian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Valencian', 'Valencian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Not Hispanic or Latino\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Not Hispanic or Latino\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'E2: Not Hispanic or Latino', 'E2: Not Hispanic or Latino', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Unknown Ethnicity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Unknown Ethnicity\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'E9: Unknown Ethnicity', 'E9: Unknown Ethnicity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\', 1, 0,
+ 1, 0, @sqlset_person, NULL, NULL,
+ 'R1: American Indian or Alaska Native', 'R1: American Indian or Alaska Native', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\', 1, 0,
+ 1, 0, @sqlset_person, NULL, NULL,
+ 'Alaska Native', 'Alaska Native', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\Alaska Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\Alaska Indian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Alaska Indian', 'Alaska Indian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\Aleut\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\Aleut\', 1, 0,
+ 1, 0, @sqlset_person, NULL, NULL,
+ 'Aleut', 'Aleut', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\Aleut\Unangan Aleut\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\Aleut\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\Aleut\Unangan Aleut\', 1, 0,
+ 1, 0, @sqlset_person, NULL, NULL,
+ 'Unangan Aleut', 'Unangan Aleut', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\Aleut\Unangan Aleut\Aleutian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\Aleut\Unangan Aleut\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\Aleut\Unangan Aleut\Aleutian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Aleutian', 'Aleutian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\Eskimo\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\Alaska Native\Eskimo\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Eskimo', 'Eskimo', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\', 1, 0,
+ 1, 0, @sqlset_person, NULL, NULL,
+ 'American Indian', 'American Indian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Abenaki\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Abenaki\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Abenaki', 'Abenaki', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Canadian and Latin American Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Canadian and Latin American Indian\', 1, 0,
+ 1, 0, @sqlset_person, NULL, NULL,
+ 'Canadian and Latin American Indian', 'Canadian and Latin American Indian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Canadian and Latin American Indian\Central American Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Canadian and Latin American Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Canadian and Latin American Indian\Central American Indian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Central American Indian', 'Central American Indian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Canadian and Latin American Indian\Mexican American Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Canadian and Latin American Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Canadian and Latin American Indian\Mexican American Indian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Mexican American Indian', 'Mexican American Indian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Canadian and Latin American Indian\South American Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Canadian and Latin American Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Canadian and Latin American Indian\South American Indian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'South American Indian', 'South American Indian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\', 1, 0,
+ 1, 0, @sqlset_person, NULL, NULL,
+ 'Eastern Tribes', 'Eastern Tribes', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Attacapa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Attacapa\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Attacapa', 'Attacapa', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Biloxi\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Biloxi\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Biloxi', 'Biloxi', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Moor\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Moor\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Moor', 'Moor', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Nansemond\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Nansemond\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Nansemond', 'Nansemond', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Nausu Waiwash\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Nausu Waiwash\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Nausu Waiwash', 'Nausu Waiwash', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Nipmuc\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Nipmuc\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Nipmuc', 'Nipmuc', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Paugussett\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Paugussett\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Paugussett', 'Paugussett', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Pocomoke Acohonock\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Pocomoke Acohonock\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Pocomoke Acohonock', 'Pocomoke Acohonock', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Tunica Biloxi\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Tunica Biloxi\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Tunica Biloxi', 'Tunica Biloxi', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Waccamaw-Siousan\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Waccamaw-Siousan\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Waccamaw-Siousan', 'Waccamaw-Siousan', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Wicomico\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Eastern Tribes\Wicomico\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Wicomico', 'Wicomico', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Navajo\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Navajo\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Navajo', 'Navajo', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Wampanoag\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\American Indian or Alaska Native\American Indian\Wampanoag\', 1, 0,
+ 1, 0, @sqlset_person, NULL, NULL,
+ 'Wampanoag', 'Wampanoag', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 1, 0,
+ 1, 0, @sqlset_person, NULL, NULL,
+ 'R2: Asian', 'R2: Asian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Asian Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Asian Indian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Asian Indian', 'Asian Indian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Bangladeshi\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Bangladeshi\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Bangladeshi', 'Bangladeshi', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Burmese\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Burmese\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Burmese', 'Burmese', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Cambodian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Cambodian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Cambodian', 'Cambodian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Chinese\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Chinese\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Chinese', 'Chinese', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Filipino\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Filipino\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Filipino', 'Filipino', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Hmong\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Hmong\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Hmong', 'Hmong', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Indonesian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Indonesian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Indonesian', 'Indonesian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Japanese\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Japanese\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Japanese', 'Japanese', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Korean\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Korean\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Korean', 'Korean', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Laotian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Laotian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Laotian', 'Laotian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Madagascar\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Madagascar\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Madagascar', 'Madagascar', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Malaysian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Malaysian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Malaysian', 'Malaysian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Nepalese\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Nepalese\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Nepalese', 'Nepalese', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Okinawan\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Okinawan\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Okinawan', 'Okinawan', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Pakistani\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Pakistani\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Pakistani', 'Pakistani', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Singaporean\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Singaporean\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Singaporean', 'Singaporean', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Sri Lankan\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Sri Lankan\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Sri Lankan', 'Sri Lankan', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Taiwanese\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Taiwanese\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Taiwanese', 'Taiwanese', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Thai\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Thai\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Thai', 'Thai', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Vietnamese\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Asian\Vietnamese\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Vietnamese', 'Vietnamese', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\', 1, 0,
+ 1, 0, @sqlset_person, NULL, NULL,
+ 'R3: Black or African American', 'R3: Black or African American', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\', 1, 0,
+ 1, 0, @sqlset_person, NULL, NULL,
+ 'African', 'African', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\Botswanan\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\Botswanan\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Botswanan', 'Botswanan', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\Ethiopian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\Ethiopian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Ethiopian', 'Ethiopian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\Liberian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\Liberian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Liberian', 'Liberian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\Namibian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\Namibian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Namibian', 'Namibian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\Nigerian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African\Nigerian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Nigerian', 'Nigerian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\African American\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'African American', 'African American', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Bahamian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Bahamian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Bahamian', 'Bahamian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Barbadian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Barbadian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Barbadian', 'Barbadian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Black\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Black\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Black', 'Black', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Dominica Islander\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Dominica Islander\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Dominica Islander', 'Dominica Islander', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Dominican\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Dominican\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Dominican', 'Dominican', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Haitian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Haitian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Haitian', 'Haitian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Jamaican\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Jamaican\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Jamaican', 'Jamaican', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Trinidadian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\Trinidadian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Trinidadian', 'Trinidadian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\West Indian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Black or African American\West Indian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'West Indian', 'West Indian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Native Hawaiian or Other Pacific Islander\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Native Hawaiian or Other Pacific Islander\', 1, 0,
+ 1, 0, @sqlset_person, NULL, NULL,
+ 'R4: Native Hawaiian or Other Pacific Islander', 'R4: Native Hawaiian or Other Pacific Islander', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Native Hawaiian or Other Pacific Islander\Other Pacific Islander\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Native Hawaiian or Other Pacific Islander\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Native Hawaiian or Other Pacific Islander\Other Pacific Islander\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Other Pacific Islander', 'Other Pacific Islander', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Native Hawaiian or Other Pacific Islander\Polynesian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Native Hawaiian or Other Pacific Islander\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Native Hawaiian or Other Pacific Islander\Polynesian\', 1, 0,
+ 1, 0, @sqlset_person, NULL, NULL,
+ 'Polynesian', 'Polynesian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Native Hawaiian or Other Pacific Islander\Polynesian\Native Hawaiian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Native Hawaiian or Other Pacific Islander\Polynesian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Native Hawaiian or Other Pacific Islander\Polynesian\Native Hawaiian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Native Hawaiian', 'Native Hawaiian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\', 1, 0,
+ 1, 0, @sqlset_person, NULL, NULL,
+ 'R5: White', 'R5: White', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Arab\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Arab\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Arab', 'Arab', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\', 1, 0,
+ 1, 0, @sqlset_person, NULL, NULL,
+ 'European', 'European', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\Armenian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\Armenian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Armenian', 'Armenian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\English\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\English\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'English', 'English', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\French\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\French\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'French', 'French', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\German\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\German\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'German', 'German', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\Irish\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\Irish\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Irish', 'Irish', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\Italian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\Italian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Italian', 'Italian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\Polish\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\Polish\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Polish', 'Polish', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\Scottish\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\European\Scottish\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Scottish', 'Scottish', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\', 1, 0,
+ 1, 0, @sqlset_person, NULL, NULL,
+ 'Middle Eastern or North African', 'Middle Eastern or North African', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Afghanistani\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Afghanistani\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Afghanistani', 'Afghanistani', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Assyrian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Assyrian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Assyrian', 'Assyrian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Egyptian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Egyptian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Egyptian', 'Egyptian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Iranian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Iranian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Iranian', 'Iranian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Iraqi\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Iraqi\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Iraqi', 'Iraqi', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Israeili\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Israeili\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Israeili', 'Israeili', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Lebanese\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Lebanese\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Lebanese', 'Lebanese', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Palestinian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Palestinian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Palestinian', 'Palestinian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Syrian\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\White\Middle Eastern or North African\Syrian\', 1, 0,
+ 0, 0, @sqlset_person, NULL, NULL,
+ 'Syrian', 'Syrian', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Unknown Race\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Demographics\Race\Unknown Race\', 1, 0,
+ 0, 0, @sqlset_person, 'EXISTS (SELECT 1 FROM concept @C WHERE @C.concept_id = @.race_concept_id AND @C.concept_name = ''Unknown Race'')', NULL,
+ 'R9: Unknown Race', 'R9: Unknown Race', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', NULL, 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', 1, 0,
+ 1, 1, @sqlset_condition_occurrence, NULL, NULL,
+ 'Diagnoses', 'Diagnoses', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''760'' AND ''779.99''', NULL,
+ 'Certain conditions originating in the perinatal period (760-779.99)', 'Certain conditions originating in the perinatal period (760-779.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''760'' AND ''763.99''', NULL,
+ 'Maternal causes of perinatal morbidity and mortality (760-763.99)', 'Maternal causes of perinatal morbidity and mortality (760-763.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''762''', NULL,
+ 'Fetus or newborn affected by complications of placenta, cord, and membranes (762)', 'Fetus or newborn affected by complications of placenta, cord, and membranes (762)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.0) Placenta previa affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.0) Placenta previa affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''762.0''', NULL,
+ '(762.0) Placenta previa affecting fetus or newborn', '(762.0) Placenta previa affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.1) Other forms of placental separation and hemorrhage affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.1) Other forms of placental separation and hemorrhage affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''762.1''', NULL,
+ '(762.1) Other forms of placental separation and hemorrhage affecting fetus or newborn', '(762.1) Other forms of placental separation and hemorrhage affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.2) Other and unspecified morphological and functional abnormalities of placenta affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.2) Other and unspecified morphological and functional abnormalities of placenta affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''762.2''', NULL,
+ '(762.2) Other and unspecified morphological and functional abnormalities of placenta affecting fetus or newborn', '(762.2) Other and unspecified morphological and functional abnormalities of placenta affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.3) Placental transfusion syndromes affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.3) Placental transfusion syndromes affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''762.3''', NULL,
+ '(762.3) Placental transfusion syndromes affecting fetus or newborn', '(762.3) Placental transfusion syndromes affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.4) Prolapsed umbilical cord affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.4) Prolapsed umbilical cord affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''762.4''', NULL,
+ '(762.4) Prolapsed umbilical cord affecting fetus or newborn', '(762.4) Prolapsed umbilical cord affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.5) Other compression of umbilical cord affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.5) Other compression of umbilical cord affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''762.5''', NULL,
+ '(762.5) Other compression of umbilical cord affecting fetus or newborn', '(762.5) Other compression of umbilical cord affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.6) Other and unspecified conditions of umbilical cord affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.6) Other and unspecified conditions of umbilical cord affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''762.6''', NULL,
+ '(762.6) Other and unspecified conditions of umbilical cord affecting fetus or newborn', '(762.6) Other and unspecified conditions of umbilical cord affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.7) Chorioamnionitis affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.7) Chorioamnionitis affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''762.7''', NULL,
+ '(762.7) Chorioamnionitis affecting fetus or newborn', '(762.7) Chorioamnionitis affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.8) Other specified abnormalities of chorion and amnion affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.8) Other specified abnormalities of chorion and amnion affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''762.8''', NULL,
+ '(762.8) Other specified abnormalities of chorion and amnion affecting fetus or newborn', '(762.8) Other specified abnormalities of chorion and amnion affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.9) Unspecified abnormality of chorion and amnion affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by complications of placenta, cord, and membranes (762)\(762.9) Unspecified abnormality of chorion and amnion affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''762.9''', NULL,
+ '(762.9) Unspecified abnormality of chorion and amnion affecting fetus or newborn', '(762.9) Unspecified abnormality of chorion and amnion affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''761''', NULL,
+ 'Fetus or newborn affected by maternal complications of pregnancy (761)', 'Fetus or newborn affected by maternal complications of pregnancy (761)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.0) Incompetent cervix affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.0) Incompetent cervix affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''761.0''', NULL,
+ '(761.0) Incompetent cervix affecting fetus or newborn', '(761.0) Incompetent cervix affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.1) Premature rupture of membranes affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.1) Premature rupture of membranes affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''761.1''', NULL,
+ '(761.1) Premature rupture of membranes affecting fetus or newborn', '(761.1) Premature rupture of membranes affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.2) Oligohydramnios affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.2) Oligohydramnios affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''761.2''', NULL,
+ '(761.2) Oligohydramnios affecting fetus or newborn', '(761.2) Oligohydramnios affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.3) Polyhydramnios affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.3) Polyhydramnios affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''761.3''', NULL,
+ '(761.3) Polyhydramnios affecting fetus or newborn', '(761.3) Polyhydramnios affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.4) Ectopic pregnancy affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.4) Ectopic pregnancy affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''761.4''', NULL,
+ '(761.4) Ectopic pregnancy affecting fetus or newborn', '(761.4) Ectopic pregnancy affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.5) Multiple pregnancy affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.5) Multiple pregnancy affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''761.5''', NULL,
+ '(761.5) Multiple pregnancy affecting fetus or newborn', '(761.5) Multiple pregnancy affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.6) Maternal death affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.6) Maternal death affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''761.6''', NULL,
+ '(761.6) Maternal death affecting fetus or newborn', '(761.6) Maternal death affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.7) Malpresentation before labor affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.7) Malpresentation before labor affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''761.7''', NULL,
+ '(761.7) Malpresentation before labor affecting fetus or newborn', '(761.7) Malpresentation before labor affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.8) Other specified maternal complications of pregnancy affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.8) Other specified maternal complications of pregnancy affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''761.8''', NULL,
+ '(761.8) Other specified maternal complications of pregnancy affecting fetus or newborn', '(761.8) Other specified maternal complications of pregnancy affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.9) Unspecified maternal complication of pregnancy affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal complications of pregnancy (761)\(761.9) Unspecified maternal complication of pregnancy affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''761.9''', NULL,
+ '(761.9) Unspecified maternal complication of pregnancy affecting fetus or newborn', '(761.9) Unspecified maternal complication of pregnancy affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760''', NULL,
+ 'Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)', 'Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.0) Maternal hypertensive disorders affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.0) Maternal hypertensive disorders affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.0''', NULL,
+ '(760.0) Maternal hypertensive disorders affecting fetus or newborn', '(760.0) Maternal hypertensive disorders affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.1) Maternal renal and urinary tract diseases affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.1) Maternal renal and urinary tract diseases affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.1''', NULL,
+ '(760.1) Maternal renal and urinary tract diseases affecting fetus or newborn', '(760.1) Maternal renal and urinary tract diseases affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.2) Maternal infections affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.2) Maternal infections affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.2''', NULL,
+ '(760.2) Maternal infections affecting fetus or newborn', '(760.2) Maternal infections affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.3) Other chronic maternal circulatory and respiratory diseases affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.3) Other chronic maternal circulatory and respiratory diseases affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.3''', NULL,
+ '(760.3) Other chronic maternal circulatory and respiratory diseases affecting fetus or newborn', '(760.3) Other chronic maternal circulatory and respiratory diseases affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.4) Maternal nutritional disorders affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.4) Maternal nutritional disorders affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.4''', NULL,
+ '(760.4) Maternal nutritional disorders affecting fetus or newborn', '(760.4) Maternal nutritional disorders affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.5) Maternal injury affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.5) Maternal injury affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.5''', NULL,
+ '(760.5) Maternal injury affecting fetus or newborn', '(760.5) Maternal injury affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.8) Other specified maternal conditions affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.8) Other specified maternal conditions affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.8''', NULL,
+ '(760.8) Other specified maternal conditions affecting fetus or newborn', '(760.8) Other specified maternal conditions affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.9) Unspecified maternal condition affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\(760.9) Unspecified maternal condition affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.9''', NULL,
+ '(760.9) Unspecified maternal condition affecting fetus or newborn', '(760.9) Unspecified maternal condition affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.7''', NULL,
+ 'Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)', 'Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.70) Unspecified noxious substance affecting fetus or newborn via placenta or breast milk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.70) Unspecified noxious substance affecting fetus or newborn via placenta or breast milk\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.70''', NULL,
+ '(760.70) Unspecified noxious substance affecting fetus or newborn via placenta or breast milk', '(760.70) Unspecified noxious substance affecting fetus or newborn via placenta or breast milk', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.71) Alcohol affecting fetus or newborn via placenta or breast milk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.71) Alcohol affecting fetus or newborn via placenta or breast milk\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.71''', NULL,
+ '(760.71) Alcohol affecting fetus or newborn via placenta or breast milk', '(760.71) Alcohol affecting fetus or newborn via placenta or breast milk', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.72) Narcotics affecting fetus or newborn via placenta or breast milk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.72) Narcotics affecting fetus or newborn via placenta or breast milk\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.72''', NULL,
+ '(760.72) Narcotics affecting fetus or newborn via placenta or breast milk', '(760.72) Narcotics affecting fetus or newborn via placenta or breast milk', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.73) Hallucinogenic agents affecting fetus or newborn via placenta or breast milk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.73) Hallucinogenic agents affecting fetus or newborn via placenta or breast milk\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.73''', NULL,
+ '(760.73) Hallucinogenic agents affecting fetus or newborn via placenta or breast milk', '(760.73) Hallucinogenic agents affecting fetus or newborn via placenta or breast milk', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.74) Anti-infectives affecting fetus or newborn via placenta or breast milk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.74) Anti-infectives affecting fetus or newborn via placenta or breast milk\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.74''', NULL,
+ '(760.74) Anti-infectives affecting fetus or newborn via placenta or breast milk', '(760.74) Anti-infectives affecting fetus or newborn via placenta or breast milk', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.75) Cocaine affecting fetus or newborn via placenta or breast milk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.75) Cocaine affecting fetus or newborn via placenta or breast milk\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.75''', NULL,
+ '(760.75) Cocaine affecting fetus or newborn via placenta or breast milk', '(760.75) Cocaine affecting fetus or newborn via placenta or breast milk', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.76) Diethylstilbestrol [DES] affecting fetus or newborn via placenta or breast milk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.76) Diethylstilbestrol [DES] affecting fetus or newborn via placenta or breast milk\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.76''', NULL,
+ '(760.76) Diethylstilbestrol [DES] affecting fetus or newborn via placenta or breast milk', '(760.76) Diethylstilbestrol [DES] affecting fetus or newborn via placenta or breast milk', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.77) Anticonvulsants affecting fetus or newborn via placenta or breast milk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.77) Anticonvulsants affecting fetus or newborn via placenta or breast milk\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.77''', NULL,
+ '(760.77) Anticonvulsants affecting fetus or newborn via placenta or breast milk', '(760.77) Anticonvulsants affecting fetus or newborn via placenta or breast milk', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.78) Antimetabolic agents affecting fetus or newborn via placenta or breast milk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.78) Antimetabolic agents affecting fetus or newborn via placenta or breast milk\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.78''', NULL,
+ '(760.78) Antimetabolic agents affecting fetus or newborn via placenta or breast milk', '(760.78) Antimetabolic agents affecting fetus or newborn via placenta or breast milk', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.79) Other noxious influences affecting fetus or newborn via placenta or breast milk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Noxious influences affecting fetus or newborn via placenta or breast milk (760.7)\(760.79) Other noxious influences affecting fetus or newborn via placenta or breast milk\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.79''', NULL,
+ '(760.79) Other noxious influences affecting fetus or newborn via placenta or breast milk', '(760.79) Other noxious influences affecting fetus or newborn via placenta or breast milk', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Surgical operation on mother and fetus (760.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by maternal conditions which may be unrelated to present pregnancy (760)\Surgical operation on mother and fetus (760.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''760.6''', NULL,
+ 'Surgical operation on mother and fetus (760.6)', 'Surgical operation on mother and fetus (760.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763''', NULL,
+ 'Fetus or newborn affected by other complications of labor and delivery (763)', 'Fetus or newborn affected by other complications of labor and delivery (763)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.0) Breech delivery and extraction affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.0) Breech delivery and extraction affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763.0''', NULL,
+ '(763.0) Breech delivery and extraction affecting fetus or newborn', '(763.0) Breech delivery and extraction affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.1) Other malpresentation, malposition, and disproportion during labor and delivery affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.1) Other malpresentation, malposition, and disproportion during labor and delivery affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763.1''', NULL,
+ '(763.1) Other malpresentation, malposition, and disproportion during labor and delivery affecting fetus or newborn', '(763.1) Other malpresentation, malposition, and disproportion during labor and delivery affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.2) Forceps delivery affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.2) Forceps delivery affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763.2''', NULL,
+ '(763.2) Forceps delivery affecting fetus or newborn', '(763.2) Forceps delivery affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.3) Delivery by vacuum extractor affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.3) Delivery by vacuum extractor affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763.3''', NULL,
+ '(763.3) Delivery by vacuum extractor affecting fetus or newborn', '(763.3) Delivery by vacuum extractor affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.4) Cesarean delivery affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.4) Cesarean delivery affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763.4''', NULL,
+ '(763.4) Cesarean delivery affecting fetus or newborn', '(763.4) Cesarean delivery affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.5) Maternal anesthesia and analgesia affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.5) Maternal anesthesia and analgesia affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763.5''', NULL,
+ '(763.5) Maternal anesthesia and analgesia affecting fetus or newborn', '(763.5) Maternal anesthesia and analgesia affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.6) Precipitate delivery affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.6) Precipitate delivery affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763.6''', NULL,
+ '(763.6) Precipitate delivery affecting fetus or newborn', '(763.6) Precipitate delivery affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.7) Abnormal uterine contractions affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.7) Abnormal uterine contractions affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763.7''', NULL,
+ '(763.7) Abnormal uterine contractions affecting fetus or newborn', '(763.7) Abnormal uterine contractions affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.9) Unspecified complication of labor and delivery affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\(763.9) Unspecified complication of labor and delivery affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763.9''', NULL,
+ '(763.9) Unspecified complication of labor and delivery affecting fetus or newborn', '(763.9) Unspecified complication of labor and delivery affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763.8''', NULL,
+ 'Other specified complications of labor and delivery affecting fetus or newborn (763.8)', 'Other specified complications of labor and delivery affecting fetus or newborn (763.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\(763.81) Abnormality in fetal heart rate or rhythm before the onset of labor\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\(763.81) Abnormality in fetal heart rate or rhythm before the onset of labor\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763.81''', NULL,
+ '(763.81) Abnormality in fetal heart rate or rhythm before the onset of labor', '(763.81) Abnormality in fetal heart rate or rhythm before the onset of labor', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\(763.82) Abnormality in fetal heart rate or rhythm during labor\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\(763.82) Abnormality in fetal heart rate or rhythm during labor\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763.82''', NULL,
+ '(763.82) Abnormality in fetal heart rate or rhythm during labor', '(763.82) Abnormality in fetal heart rate or rhythm during labor', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\(763.83) Abnormality in fetal heart rate or rhythm, unspecified as to time of onset\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\(763.83) Abnormality in fetal heart rate or rhythm, unspecified as to time of onset\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763.83''', NULL,
+ '(763.83) Abnormality in fetal heart rate or rhythm, unspecified as to time of onset', '(763.83) Abnormality in fetal heart rate or rhythm, unspecified as to time of onset', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\(763.84) Meconium passage during delivery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\(763.84) Meconium passage during delivery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763.84''', NULL,
+ '(763.84) Meconium passage during delivery', '(763.84) Meconium passage during delivery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\(763.89) Other specified complications of labor and delivery affecting fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Maternal causes of perinatal morbidity and mortality (760-763.99)\Fetus or newborn affected by other complications of labor and delivery (763)\Other specified complications of labor and delivery affecting fetus or newborn (763.8)\(763.89) Other specified complications of labor and delivery affecting fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''763.89''', NULL,
+ '(763.89) Other specified complications of labor and delivery affecting fetus or newborn', '(763.89) Other specified complications of labor and delivery affecting fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''764'' AND ''779.99''', NULL,
+ 'Other conditions originating in the perinatal period (764-779.99)', 'Other conditions originating in the perinatal period (764-779.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\(769) Respiratory distress syndrome in newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\(769) Respiratory distress syndrome in newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''769''', NULL,
+ '(769) Respiratory distress syndrome in newborn', '(769) Respiratory distress syndrome in newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''767''', NULL,
+ 'Birth trauma (767)', 'Birth trauma (767)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.0) Subdural and cerebral hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.0) Subdural and cerebral hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''767.0''', NULL,
+ '(767.0) Subdural and cerebral hemorrhage', '(767.0) Subdural and cerebral hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.2) Fracture of clavicle due to birth trauma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.2) Fracture of clavicle due to birth trauma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''767.2''', NULL,
+ '(767.2) Fracture of clavicle due to birth trauma', '(767.2) Fracture of clavicle due to birth trauma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.3) Other injuries to skeleton due to birth trauma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.3) Other injuries to skeleton due to birth trauma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''767.3''', NULL,
+ '(767.3) Other injuries to skeleton due to birth trauma', '(767.3) Other injuries to skeleton due to birth trauma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.4) Injury to spine and spinal cord due to birth trauma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.4) Injury to spine and spinal cord due to birth trauma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''767.4''', NULL,
+ '(767.4) Injury to spine and spinal cord due to birth trauma', '(767.4) Injury to spine and spinal cord due to birth trauma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.5) Facial nerve injury due to birth trauma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.5) Facial nerve injury due to birth trauma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''767.5''', NULL,
+ '(767.5) Facial nerve injury due to birth trauma', '(767.5) Facial nerve injury due to birth trauma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.6) Injury to brachial plexus due to birth trauma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.6) Injury to brachial plexus due to birth trauma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''767.6''', NULL,
+ '(767.6) Injury to brachial plexus due to birth trauma', '(767.6) Injury to brachial plexus due to birth trauma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.7) Other cranial and peripheral nerve injuries due to birth trauma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.7) Other cranial and peripheral nerve injuries due to birth trauma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''767.7''', NULL,
+ '(767.7) Other cranial and peripheral nerve injuries due to birth trauma', '(767.7) Other cranial and peripheral nerve injuries due to birth trauma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.8) Other specified birth trauma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.8) Other specified birth trauma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''767.8''', NULL,
+ '(767.8) Other specified birth trauma', '(767.8) Other specified birth trauma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.9) Birth trauma, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\(767.9) Birth trauma, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''767.9''', NULL,
+ '(767.9) Birth trauma, unspecified', '(767.9) Birth trauma, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\Injuries to scalp due to birth trauma (767.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\Injuries to scalp due to birth trauma (767.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''767.1''', NULL,
+ 'Injuries to scalp due to birth trauma (767.1)', 'Injuries to scalp due to birth trauma (767.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\Injuries to scalp due to birth trauma (767.1)\(767.11) Epicranial subaponeurotic hemorrhage (massive)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\Injuries to scalp due to birth trauma (767.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\Injuries to scalp due to birth trauma (767.1)\(767.11) Epicranial subaponeurotic hemorrhage (massive)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''767.11) Epicranial subaponeurotic hemorrhage (massive''', NULL,
+ '(767.11) Epicranial subaponeurotic hemorrhage (massive)', '(767.11) Epicranial subaponeurotic hemorrhage (massive)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\Injuries to scalp due to birth trauma (767.1)\(767.19) Other injuries to scalp\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\Injuries to scalp due to birth trauma (767.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Birth trauma (767)\Injuries to scalp due to birth trauma (767.1)\(767.19) Other injuries to scalp\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''767.19''', NULL,
+ '(767.19) Other injuries to scalp', '(767.19) Other injuries to scalp', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''778''', NULL,
+ 'Conditions involving the integument and temperature regulation of fetus and newborn (778)', 'Conditions involving the integument and temperature regulation of fetus and newborn (778)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.0) Hydrops fetalis not due to isoimmunization\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.0) Hydrops fetalis not due to isoimmunization\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''778.0''', NULL,
+ '(778.0) Hydrops fetalis not due to isoimmunization', '(778.0) Hydrops fetalis not due to isoimmunization', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.1) Sclerema neonatorum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.1) Sclerema neonatorum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''778.1''', NULL,
+ '(778.1) Sclerema neonatorum', '(778.1) Sclerema neonatorum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.2) Cold injury syndrome of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.2) Cold injury syndrome of newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''778.2''', NULL,
+ '(778.2) Cold injury syndrome of newborn', '(778.2) Cold injury syndrome of newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.3) Other hypothermia of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.3) Other hypothermia of newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''778.3''', NULL,
+ '(778.3) Other hypothermia of newborn', '(778.3) Other hypothermia of newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.4) Other disturbances of temperature regulation of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.4) Other disturbances of temperature regulation of newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''778.4''', NULL,
+ '(778.4) Other disturbances of temperature regulation of newborn', '(778.4) Other disturbances of temperature regulation of newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.5) Other and unspecified edema of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.5) Other and unspecified edema of newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''778.5''', NULL,
+ '(778.5) Other and unspecified edema of newborn', '(778.5) Other and unspecified edema of newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.6) Congenital hydrocele\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.6) Congenital hydrocele\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''778.6''', NULL,
+ '(778.6) Congenital hydrocele', '(778.6) Congenital hydrocele', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.7) Breast engorgement in newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.7) Breast engorgement in newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''778.7''', NULL,
+ '(778.7) Breast engorgement in newborn', '(778.7) Breast engorgement in newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.8) Other specified conditions involving the integument of fetus and newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.8) Other specified conditions involving the integument of fetus and newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''778.8''', NULL,
+ '(778.8) Other specified conditions involving the integument of fetus and newborn', '(778.8) Other specified conditions involving the integument of fetus and newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.9) Unspecified condition involving the integument and temperature regulation of fetus and newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Conditions involving the integument and temperature regulation of fetus and newborn (778)\(778.9) Unspecified condition involving the integument and temperature regulation of fetus and newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''778.9''', NULL,
+ '(778.9) Unspecified condition involving the integument and temperature regulation of fetus and newborn', '(778.9) Unspecified condition involving the integument and temperature regulation of fetus and newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''766''', NULL,
+ 'Disorders relating to long gestation and high birthweight (766)', 'Disorders relating to long gestation and high birthweight (766)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\(766.0) Exceptionally large baby\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\(766.0) Exceptionally large baby\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''766.0''', NULL,
+ '(766.0) Exceptionally large baby', '(766.0) Exceptionally large baby', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\(766.1) Other "heavy-for-dates" infants\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\(766.1) Other "heavy-for-dates" infants\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''766.1''', NULL,
+ '(766.1) Other "heavy-for-dates" infants', '(766.1) Other "heavy-for-dates" infants', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\Late infant, not "heavy-for-dates" (766.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\Late infant, not "heavy-for-dates" (766.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''766.2''', NULL,
+ 'Late infant, not "heavy-for-dates" (766.2)', 'Late infant, not "heavy-for-dates" (766.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\Late infant, not "heavy-for-dates" (766.2)\(766.21) Post-term infant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\Late infant, not "heavy-for-dates" (766.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\Late infant, not "heavy-for-dates" (766.2)\(766.21) Post-term infant\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''766.21''', NULL,
+ '(766.21) Post-term infant', '(766.21) Post-term infant', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\Late infant, not "heavy-for-dates" (766.2)\(766.22) Prolonged gestation of infant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\Late infant, not "heavy-for-dates" (766.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to long gestation and high birthweight (766)\Late infant, not "heavy-for-dates" (766.2)\(766.22) Prolonged gestation of infant\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''766.22''', NULL,
+ '(766.22) Prolonged gestation of infant', '(766.22) Prolonged gestation of infant', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765''', NULL,
+ 'Disorders relating to short gestation and unspecified low birthweight (765)', 'Disorders relating to short gestation and unspecified low birthweight (765)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.0''', NULL,
+ 'Extreme immaturity (765.0)', 'Extreme immaturity (765.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.00) Extreme immaturity, unspecified [weight]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.00) Extreme immaturity, unspecified [weight]\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.00''', NULL,
+ '(765.00) Extreme immaturity, unspecified [weight]', '(765.00) Extreme immaturity, unspecified [weight]', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.01) Extreme immaturity, less than 500 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.01) Extreme immaturity, less than 500 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.01''', NULL,
+ '(765.01) Extreme immaturity, less than 500 grams', '(765.01) Extreme immaturity, less than 500 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.02) Extreme immaturity, 500-749 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.02) Extreme immaturity, 500-749 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.02''', NULL,
+ '(765.02) Extreme immaturity, 500-749 grams', '(765.02) Extreme immaturity, 500-749 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.03) Extreme immaturity, 750-999 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.03) Extreme immaturity, 750-999 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.03''', NULL,
+ '(765.03) Extreme immaturity, 750-999 grams', '(765.03) Extreme immaturity, 750-999 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.04) Extreme immaturity, 1,000-1,249 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.04) Extreme immaturity, 1,000-1,249 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.04''', NULL,
+ '(765.04) Extreme immaturity, 1,000-1,249 grams', '(765.04) Extreme immaturity, 1,000-1,249 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.05) Extreme immaturity, 1,250-1,499 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.05) Extreme immaturity, 1,250-1,499 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.05''', NULL,
+ '(765.05) Extreme immaturity, 1,250-1,499 grams', '(765.05) Extreme immaturity, 1,250-1,499 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.06) Extreme immaturity, 1,500-1,749 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.06) Extreme immaturity, 1,500-1,749 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.06''', NULL,
+ '(765.06) Extreme immaturity, 1,500-1,749 grams', '(765.06) Extreme immaturity, 1,500-1,749 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.07) Extreme immaturity, 1,750-1,999 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.07) Extreme immaturity, 1,750-1,999 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.07''', NULL,
+ '(765.07) Extreme immaturity, 1,750-1,999 grams', '(765.07) Extreme immaturity, 1,750-1,999 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.08) Extreme immaturity, 2,000-2,499 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.08) Extreme immaturity, 2,000-2,499 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.08''', NULL,
+ '(765.08) Extreme immaturity, 2,000-2,499 grams', '(765.08) Extreme immaturity, 2,000-2,499 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.09) Extreme immaturity, 2,500 grams and over\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Extreme immaturity (765.0)\(765.09) Extreme immaturity, 2,500 grams and over\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.09''', NULL,
+ '(765.09) Extreme immaturity, 2,500 grams and over', '(765.09) Extreme immaturity, 2,500 grams and over', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.1''', NULL,
+ 'Other preterm infants (765.1)', 'Other preterm infants (765.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.10) Other preterm infants, unspecified [weight]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.10) Other preterm infants, unspecified [weight]\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.10''', NULL,
+ '(765.10) Other preterm infants, unspecified [weight]', '(765.10) Other preterm infants, unspecified [weight]', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.11) Other preterm infants, less than 500 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.11) Other preterm infants, less than 500 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.11''', NULL,
+ '(765.11) Other preterm infants, less than 500 grams', '(765.11) Other preterm infants, less than 500 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.12) Other preterm infants, 500-749 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.12) Other preterm infants, 500-749 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.12''', NULL,
+ '(765.12) Other preterm infants, 500-749 grams', '(765.12) Other preterm infants, 500-749 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.13) Other preterm infants, 750-999 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.13) Other preterm infants, 750-999 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.13''', NULL,
+ '(765.13) Other preterm infants, 750-999 grams', '(765.13) Other preterm infants, 750-999 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.14) Other preterm infants, 1,000-1,249 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.14) Other preterm infants, 1,000-1,249 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.14''', NULL,
+ '(765.14) Other preterm infants, 1,000-1,249 grams', '(765.14) Other preterm infants, 1,000-1,249 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.15) Other preterm infants, 1,250-1,499 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.15) Other preterm infants, 1,250-1,499 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.15''', NULL,
+ '(765.15) Other preterm infants, 1,250-1,499 grams', '(765.15) Other preterm infants, 1,250-1,499 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.16) Other preterm infants, 1,500-1,749 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.16) Other preterm infants, 1,500-1,749 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.16''', NULL,
+ '(765.16) Other preterm infants, 1,500-1,749 grams', '(765.16) Other preterm infants, 1,500-1,749 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.17) Other preterm infants, 1,750-1,999 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.17) Other preterm infants, 1,750-1,999 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.17''', NULL,
+ '(765.17) Other preterm infants, 1,750-1,999 grams', '(765.17) Other preterm infants, 1,750-1,999 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.18) Other preterm infants, 2,000-2,499 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.18) Other preterm infants, 2,000-2,499 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.18''', NULL,
+ '(765.18) Other preterm infants, 2,000-2,499 grams', '(765.18) Other preterm infants, 2,000-2,499 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.19) Other preterm infants, 2,500 grams and over\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Other preterm infants (765.1)\(765.19) Other preterm infants, 2,500 grams and over\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.19''', NULL,
+ '(765.19) Other preterm infants, 2,500 grams and over', '(765.19) Other preterm infants, 2,500 grams and over', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.2''', NULL,
+ 'Weeks of gestation (765.2)', 'Weeks of gestation (765.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.20) Unspecified weeks of gestation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.20) Unspecified weeks of gestation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.20''', NULL,
+ '(765.20) Unspecified weeks of gestation', '(765.20) Unspecified weeks of gestation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.21) Less than 24 completed weeks of gestation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.21) Less than 24 completed weeks of gestation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.21''', NULL,
+ '(765.21) Less than 24 completed weeks of gestation', '(765.21) Less than 24 completed weeks of gestation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.22) 24 completed weeks of gestation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.22) 24 completed weeks of gestation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.22''', NULL,
+ '(765.22) 24 completed weeks of gestation', '(765.22) 24 completed weeks of gestation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.23) 25-26 completed weeks of gestation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.23) 25-26 completed weeks of gestation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.23''', NULL,
+ '(765.23) 25-26 completed weeks of gestation', '(765.23) 25-26 completed weeks of gestation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.24) 27-28 completed weeks of gestation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.24) 27-28 completed weeks of gestation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.24''', NULL,
+ '(765.24) 27-28 completed weeks of gestation', '(765.24) 27-28 completed weeks of gestation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.25) 29-30 completed weeks of gestation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.25) 29-30 completed weeks of gestation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.25''', NULL,
+ '(765.25) 29-30 completed weeks of gestation', '(765.25) 29-30 completed weeks of gestation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.26) 31-32 completed weeks of gestation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.26) 31-32 completed weeks of gestation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.26''', NULL,
+ '(765.26) 31-32 completed weeks of gestation', '(765.26) 31-32 completed weeks of gestation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.27) 33-34 completed weeks of gestation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.27) 33-34 completed weeks of gestation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.27''', NULL,
+ '(765.27) 33-34 completed weeks of gestation', '(765.27) 33-34 completed weeks of gestation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.28) 35-36 completed weeks of gestation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.28) 35-36 completed weeks of gestation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.28''', NULL,
+ '(765.28) 35-36 completed weeks of gestation', '(765.28) 35-36 completed weeks of gestation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.29) 37 or more completed weeks of gestation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Disorders relating to short gestation and unspecified low birthweight (765)\Weeks of gestation (765.2)\(765.29) 37 or more completed weeks of gestation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''765.29''', NULL,
+ '(765.29) 37 or more completed weeks of gestation', '(765.29) 37 or more completed weeks of gestation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''775''', NULL,
+ 'Endocrine and metabolic disturbances specific to the fetus and newborn (775)', 'Endocrine and metabolic disturbances specific to the fetus and newborn (775)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.0) Syndrome of "infant of a diabetic mother"\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.0) Syndrome of "infant of a diabetic mother"\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''775.0''', NULL,
+ '(775.0) Syndrome of "infant of a diabetic mother"', '(775.0) Syndrome of "infant of a diabetic mother"', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.1) Neonatal diabetes mellitus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.1) Neonatal diabetes mellitus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''775.1''', NULL,
+ '(775.1) Neonatal diabetes mellitus', '(775.1) Neonatal diabetes mellitus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.2) Neonatal myasthenia gravis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.2) Neonatal myasthenia gravis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''775.2''', NULL,
+ '(775.2) Neonatal myasthenia gravis', '(775.2) Neonatal myasthenia gravis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.3) Neonatal thyrotoxicosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.3) Neonatal thyrotoxicosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''775.3''', NULL,
+ '(775.3) Neonatal thyrotoxicosis', '(775.3) Neonatal thyrotoxicosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.4) Hypocalcemia and hypomagnesemia of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.4) Hypocalcemia and hypomagnesemia of newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''775.4''', NULL,
+ '(775.4) Hypocalcemia and hypomagnesemia of newborn', '(775.4) Hypocalcemia and hypomagnesemia of newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.5) Other transitory neonatal electrolyte disturbances\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.5) Other transitory neonatal electrolyte disturbances\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''775.5''', NULL,
+ '(775.5) Other transitory neonatal electrolyte disturbances', '(775.5) Other transitory neonatal electrolyte disturbances', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.6) Neonatal hypoglycemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.6) Neonatal hypoglycemia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''775.6''', NULL,
+ '(775.6) Neonatal hypoglycemia', '(775.6) Neonatal hypoglycemia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.7) Late metabolic acidosis of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.7) Late metabolic acidosis of newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''775.7''', NULL,
+ '(775.7) Late metabolic acidosis of newborn', '(775.7) Late metabolic acidosis of newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.9) Unspecified endocrine and metabolic disturbances specific to the fetus and newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\(775.9) Unspecified endocrine and metabolic disturbances specific to the fetus and newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''775.9''', NULL,
+ '(775.9) Unspecified endocrine and metabolic disturbances specific to the fetus and newborn', '(775.9) Unspecified endocrine and metabolic disturbances specific to the fetus and newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\Other neonatal endocrine and metabolic disturbances (775.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\Other neonatal endocrine and metabolic disturbances (775.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''775.8''', NULL,
+ 'Other neonatal endocrine and metabolic disturbances (775.8)', 'Other neonatal endocrine and metabolic disturbances (775.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\Other neonatal endocrine and metabolic disturbances (775.8)\(775.81) Other acidosis of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\Other neonatal endocrine and metabolic disturbances (775.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\Other neonatal endocrine and metabolic disturbances (775.8)\(775.81) Other acidosis of newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''775.81''', NULL,
+ '(775.81) Other acidosis of newborn', '(775.81) Other acidosis of newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\Other neonatal endocrine and metabolic disturbances (775.8)\(775.89) Other neonatal endocrine and metabolic disturbances\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\Other neonatal endocrine and metabolic disturbances (775.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Endocrine and metabolic disturbances specific to the fetus and newborn (775)\Other neonatal endocrine and metabolic disturbances (775.8)\(775.89) Other neonatal endocrine and metabolic disturbances\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''775.89''', NULL,
+ '(775.89) Other neonatal endocrine and metabolic disturbances', '(775.89) Other neonatal endocrine and metabolic disturbances', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''772''', NULL,
+ 'Fetal and neonatal hemorrhage (772)', 'Fetal and neonatal hemorrhage (772)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.0) Fetal blood loss\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.0) Fetal blood loss\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''772.0''', NULL,
+ '(772.0) Fetal blood loss', '(772.0) Fetal blood loss', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.2) Subarachnoid hemorrhage of fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.2) Subarachnoid hemorrhage of fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''772.2''', NULL,
+ '(772.2) Subarachnoid hemorrhage of fetus or newborn', '(772.2) Subarachnoid hemorrhage of fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.3) Umbilical hemorrhage after birth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.3) Umbilical hemorrhage after birth\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''772.3''', NULL,
+ '(772.3) Umbilical hemorrhage after birth', '(772.3) Umbilical hemorrhage after birth', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.4) Gastrointestinal hemorrhage of fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.4) Gastrointestinal hemorrhage of fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''772.4''', NULL,
+ '(772.4) Gastrointestinal hemorrhage of fetus or newborn', '(772.4) Gastrointestinal hemorrhage of fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.5) Adrenal hemorrhage of fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.5) Adrenal hemorrhage of fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''772.5''', NULL,
+ '(772.5) Adrenal hemorrhage of fetus or newborn', '(772.5) Adrenal hemorrhage of fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.6) Cutaneous hemorrhage of fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.6) Cutaneous hemorrhage of fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''772.6''', NULL,
+ '(772.6) Cutaneous hemorrhage of fetus or newborn', '(772.6) Cutaneous hemorrhage of fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.8) Other specified hemorrhage of fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.8) Other specified hemorrhage of fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''772.8''', NULL,
+ '(772.8) Other specified hemorrhage of fetus or newborn', '(772.8) Other specified hemorrhage of fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.9) Unspecified hemorrhage of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\(772.9) Unspecified hemorrhage of newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''772.9''', NULL,
+ '(772.9) Unspecified hemorrhage of newborn', '(772.9) Unspecified hemorrhage of newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''772.1''', NULL,
+ 'Intraventricular hemorrhage of fetus or newborn (772.1)', 'Intraventricular hemorrhage of fetus or newborn (772.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\(772.10) Intraventricular hemorrhage unspecified grade\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\(772.10) Intraventricular hemorrhage unspecified grade\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''772.10''', NULL,
+ '(772.10) Intraventricular hemorrhage unspecified grade', '(772.10) Intraventricular hemorrhage unspecified grade', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\(772.11) Intraventricular hemorrhage, grade I\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\(772.11) Intraventricular hemorrhage, grade I\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''772.11''', NULL,
+ '(772.11) Intraventricular hemorrhage, grade I', '(772.11) Intraventricular hemorrhage, grade I', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\(772.12) Intraventricular hemorrhage, grade II\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\(772.12) Intraventricular hemorrhage, grade II\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''772.12''', NULL,
+ '(772.12) Intraventricular hemorrhage, grade II', '(772.12) Intraventricular hemorrhage, grade II', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\(772.13) Intraventricular hemorrhage, grade III\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\(772.13) Intraventricular hemorrhage, grade III\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''772.13''', NULL,
+ '(772.13) Intraventricular hemorrhage, grade III', '(772.13) Intraventricular hemorrhage, grade III', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\(772.14) Intraventricular hemorrhage, grade IV\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Fetal and neonatal hemorrhage (772)\Intraventricular hemorrhage of fetus or newborn (772.1)\(772.14) Intraventricular hemorrhage, grade IV\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''772.14''', NULL,
+ '(772.14) Intraventricular hemorrhage, grade IV', '(772.14) Intraventricular hemorrhage, grade IV', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''776''', NULL,
+ 'Hematological disorders of newborn (776)', 'Hematological disorders of newborn (776)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.0) Hemorrhagic disease of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.0) Hemorrhagic disease of newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''776.0''', NULL,
+ '(776.0) Hemorrhagic disease of newborn', '(776.0) Hemorrhagic disease of newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.1) Transient neonatal thrombocytopenia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.1) Transient neonatal thrombocytopenia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''776.1''', NULL,
+ '(776.1) Transient neonatal thrombocytopenia', '(776.1) Transient neonatal thrombocytopenia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.2) Disseminated intravascular coagulation in newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.2) Disseminated intravascular coagulation in newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''776.2''', NULL,
+ '(776.2) Disseminated intravascular coagulation in newborn', '(776.2) Disseminated intravascular coagulation in newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.3) Other transient neonatal disorders of coagulation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.3) Other transient neonatal disorders of coagulation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''776.3''', NULL,
+ '(776.3) Other transient neonatal disorders of coagulation', '(776.3) Other transient neonatal disorders of coagulation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.4) Polycythemia neonatorum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.4) Polycythemia neonatorum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''776.4''', NULL,
+ '(776.4) Polycythemia neonatorum', '(776.4) Polycythemia neonatorum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.5) Congenital anemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.5) Congenital anemia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''776.5''', NULL,
+ '(776.5) Congenital anemia', '(776.5) Congenital anemia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.6) Anemia of prematurity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.6) Anemia of prematurity\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''776.6''', NULL,
+ '(776.6) Anemia of prematurity', '(776.6) Anemia of prematurity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.7) Transient neonatal neutropenia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.7) Transient neonatal neutropenia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''776.7''', NULL,
+ '(776.7) Transient neonatal neutropenia', '(776.7) Transient neonatal neutropenia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.8) Other specified transient hematological disorders of fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.8) Other specified transient hematological disorders of fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''776.8''', NULL,
+ '(776.8) Other specified transient hematological disorders of fetus or newborn', '(776.8) Other specified transient hematological disorders of fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.9) Unspecified hematological disorder specific to newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hematological disorders of newborn (776)\(776.9) Unspecified hematological disorder specific to newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''776.9''', NULL,
+ '(776.9) Unspecified hematological disorder specific to newborn', '(776.9) Unspecified hematological disorder specific to newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''773''', NULL,
+ 'Hemolytic disease of fetus or newborn, due to isoimmunization (773)', 'Hemolytic disease of fetus or newborn, due to isoimmunization (773)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\(773.0) Hemolytic disease of fetus or newborn due to Rh isoimmunization\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\(773.0) Hemolytic disease of fetus or newborn due to Rh isoimmunization\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''773.0''', NULL,
+ '(773.0) Hemolytic disease of fetus or newborn due to Rh isoimmunization', '(773.0) Hemolytic disease of fetus or newborn due to Rh isoimmunization', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\(773.1) Hemolytic disease of fetus or newborn due to ABO isoimmunization\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\(773.1) Hemolytic disease of fetus or newborn due to ABO isoimmunization\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''773.1''', NULL,
+ '(773.1) Hemolytic disease of fetus or newborn due to ABO isoimmunization', '(773.1) Hemolytic disease of fetus or newborn due to ABO isoimmunization', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\(773.2) Hemolytic disease of fetus or newborn due to other and unspecified isoimmunization\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\(773.2) Hemolytic disease of fetus or newborn due to other and unspecified isoimmunization\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''773.2''', NULL,
+ '(773.2) Hemolytic disease of fetus or newborn due to other and unspecified isoimmunization', '(773.2) Hemolytic disease of fetus or newborn due to other and unspecified isoimmunization', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\(773.3) Hydrops fetalis due to isoimmunization\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\(773.3) Hydrops fetalis due to isoimmunization\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''773.3''', NULL,
+ '(773.3) Hydrops fetalis due to isoimmunization', '(773.3) Hydrops fetalis due to isoimmunization', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\(773.4) Kernicterus of fetus or newborn due to isoimmunization\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\(773.4) Kernicterus of fetus or newborn due to isoimmunization\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''773.4''', NULL,
+ '(773.4) Kernicterus of fetus or newborn due to isoimmunization', '(773.4) Kernicterus of fetus or newborn due to isoimmunization', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\(773.5) Late anemia of fetus or newborn due to isoimmunization\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Hemolytic disease of fetus or newborn, due to isoimmunization (773)\(773.5) Late anemia of fetus or newborn due to isoimmunization\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''773.5''', NULL,
+ '(773.5) Late anemia of fetus or newborn due to isoimmunization', '(773.5) Late anemia of fetus or newborn due to isoimmunization', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''771''', NULL,
+ 'Infections specific to the perinatal period (771)', 'Infections specific to the perinatal period (771)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.0) Congenital rubella\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.0) Congenital rubella\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''771.0''', NULL,
+ '(771.0) Congenital rubella', '(771.0) Congenital rubella', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.1) Congenital cytomegalovirus infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.1) Congenital cytomegalovirus infection\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''771.1''', NULL,
+ '(771.1) Congenital cytomegalovirus infection', '(771.1) Congenital cytomegalovirus infection', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.2) Other congenital infections specific to the perinatal period\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.2) Other congenital infections specific to the perinatal period\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''771.2''', NULL,
+ '(771.2) Other congenital infections specific to the perinatal period', '(771.2) Other congenital infections specific to the perinatal period', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.3) Tetanus neonatorum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.3) Tetanus neonatorum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''771.3''', NULL,
+ '(771.3) Tetanus neonatorum', '(771.3) Tetanus neonatorum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.4) Omphalitis of the newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.4) Omphalitis of the newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''771.4''', NULL,
+ '(771.4) Omphalitis of the newborn', '(771.4) Omphalitis of the newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.5) Neonatal infective mastitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.5) Neonatal infective mastitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''771.5''', NULL,
+ '(771.5) Neonatal infective mastitis', '(771.5) Neonatal infective mastitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.6) Neonatal conjunctivitis and dacryocystitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.6) Neonatal conjunctivitis and dacryocystitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''771.6''', NULL,
+ '(771.6) Neonatal conjunctivitis and dacryocystitis', '(771.6) Neonatal conjunctivitis and dacryocystitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.7) Neonatal Candida infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\(771.7) Neonatal Candida infection\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''771.7''', NULL,
+ '(771.7) Neonatal Candida infection', '(771.7) Neonatal Candida infection', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\Other infection specific to the perinatal period (771.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\Other infection specific to the perinatal period (771.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''771.8''', NULL,
+ 'Other infection specific to the perinatal period (771.8)', 'Other infection specific to the perinatal period (771.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\Other infection specific to the perinatal period (771.8)\(771.81) Septicemia [sepsis] of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\Other infection specific to the perinatal period (771.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\Other infection specific to the perinatal period (771.8)\(771.81) Septicemia [sepsis] of newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''771.81''', NULL,
+ '(771.81) Septicemia [sepsis] of newborn', '(771.81) Septicemia [sepsis] of newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\Other infection specific to the perinatal period (771.8)\(771.82) Urinary tract infection of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\Other infection specific to the perinatal period (771.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\Other infection specific to the perinatal period (771.8)\(771.82) Urinary tract infection of newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''771.82''', NULL,
+ '(771.82) Urinary tract infection of newborn', '(771.82) Urinary tract infection of newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\Other infection specific to the perinatal period (771.8)\(771.83) Bacteremia of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\Other infection specific to the perinatal period (771.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\Other infection specific to the perinatal period (771.8)\(771.83) Bacteremia of newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''771.83''', NULL,
+ '(771.83) Bacteremia of newborn', '(771.83) Bacteremia of newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\Other infection specific to the perinatal period (771.8)\(771.89) Other infections specific to the perinatal period\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\Other infection specific to the perinatal period (771.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Infections specific to the perinatal period (771)\Other infection specific to the perinatal period (771.8)\(771.89) Other infections specific to the perinatal period\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''771.89''', NULL,
+ '(771.89) Other infections specific to the perinatal period', '(771.89) Other infections specific to the perinatal period', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''768''', NULL,
+ 'Intrauterine hypoxia and birth asphyxia (768)', 'Intrauterine hypoxia and birth asphyxia (768)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.0) Fetal death from asphyxia or anoxia before onset of labor or at unspecified time\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.0) Fetal death from asphyxia or anoxia before onset of labor or at unspecified time\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''768.0''', NULL,
+ '(768.0) Fetal death from asphyxia or anoxia before onset of labor or at unspecified time', '(768.0) Fetal death from asphyxia or anoxia before onset of labor or at unspecified time', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.1) Fetal death from asphyxia or anoxia during labor\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.1) Fetal death from asphyxia or anoxia during labor\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''768.1''', NULL,
+ '(768.1) Fetal death from asphyxia or anoxia during labor', '(768.1) Fetal death from asphyxia or anoxia during labor', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.2) Fetal distress before onset of labor, in liveborn infant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.2) Fetal distress before onset of labor, in liveborn infant\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''768.2''', NULL,
+ '(768.2) Fetal distress before onset of labor, in liveborn infant', '(768.2) Fetal distress before onset of labor, in liveborn infant', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.3) Fetal distress first noted during labor and delivery, in liveborn infant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.3) Fetal distress first noted during labor and delivery, in liveborn infant\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''768.3''', NULL,
+ '(768.3) Fetal distress first noted during labor and delivery, in liveborn infant', '(768.3) Fetal distress first noted during labor and delivery, in liveborn infant', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.4) Fetal distress, unspecified as to time of onset, in liveborn infant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.4) Fetal distress, unspecified as to time of onset, in liveborn infant\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''768.4''', NULL,
+ '(768.4) Fetal distress, unspecified as to time of onset, in liveborn infant', '(768.4) Fetal distress, unspecified as to time of onset, in liveborn infant', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.5) Severe birth asphyxia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.5) Severe birth asphyxia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''768.5''', NULL,
+ '(768.5) Severe birth asphyxia', '(768.5) Severe birth asphyxia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.6) Mild or moderate birth asphyxia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.6) Mild or moderate birth asphyxia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''768.6''', NULL,
+ '(768.6) Mild or moderate birth asphyxia', '(768.6) Mild or moderate birth asphyxia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.9) Unspecified severity of birth asphyxia in liveborn infant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\(768.9) Unspecified severity of birth asphyxia in liveborn infant\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''768.9''', NULL,
+ '(768.9) Unspecified severity of birth asphyxia in liveborn infant', '(768.9) Unspecified severity of birth asphyxia in liveborn infant', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\Hypoxic-ischemic encephalopathy (HIE) (768.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\Hypoxic-ischemic encephalopathy (HIE) (768.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''HIE) (768.7''', NULL,
+ 'Hypoxic-ischemic encephalopathy (HIE) (768.7)', 'Hypoxic-ischemic encephalopathy (HIE) (768.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\Hypoxic-ischemic encephalopathy (HIE) (768.7)\(768.70) Hypoxic-ischemic encephalopathy, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\Hypoxic-ischemic encephalopathy (HIE) (768.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\Hypoxic-ischemic encephalopathy (HIE) (768.7)\(768.70) Hypoxic-ischemic encephalopathy, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''768.70''', NULL,
+ '(768.70) Hypoxic-ischemic encephalopathy, unspecified', '(768.70) Hypoxic-ischemic encephalopathy, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\Hypoxic-ischemic encephalopathy (HIE) (768.7)\(768.71) Mild hypoxic-ischemic encephalopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\Hypoxic-ischemic encephalopathy (HIE) (768.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\Hypoxic-ischemic encephalopathy (HIE) (768.7)\(768.71) Mild hypoxic-ischemic encephalopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''768.71''', NULL,
+ '(768.71) Mild hypoxic-ischemic encephalopathy', '(768.71) Mild hypoxic-ischemic encephalopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\Hypoxic-ischemic encephalopathy (HIE) (768.7)\(768.72) Moderate hypoxic-ischemic encephalopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\Hypoxic-ischemic encephalopathy (HIE) (768.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\Hypoxic-ischemic encephalopathy (HIE) (768.7)\(768.72) Moderate hypoxic-ischemic encephalopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''768.72''', NULL,
+ '(768.72) Moderate hypoxic-ischemic encephalopathy', '(768.72) Moderate hypoxic-ischemic encephalopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\Hypoxic-ischemic encephalopathy (HIE) (768.7)\(768.73) Severe hypoxic-ischemic encephalopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\Hypoxic-ischemic encephalopathy (HIE) (768.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Intrauterine hypoxia and birth asphyxia (768)\Hypoxic-ischemic encephalopathy (HIE) (768.7)\(768.73) Severe hypoxic-ischemic encephalopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''768.73''', NULL,
+ '(768.73) Severe hypoxic-ischemic encephalopathy', '(768.73) Severe hypoxic-ischemic encephalopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779''', NULL,
+ 'Other and ill-defined conditions originating in the perinatal period (779)', 'Other and ill-defined conditions originating in the perinatal period (779)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.0) Convulsions in newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.0) Convulsions in newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.0''', NULL,
+ '(779.0) Convulsions in newborn', '(779.0) Convulsions in newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.1) Other and unspecified cerebral irritability in newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.1) Other and unspecified cerebral irritability in newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.1''', NULL,
+ '(779.1) Other and unspecified cerebral irritability in newborn', '(779.1) Other and unspecified cerebral irritability in newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.2) Cerebral depression, coma, and other abnormal cerebral signs in fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.2) Cerebral depression, coma, and other abnormal cerebral signs in fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.2''', NULL,
+ '(779.2) Cerebral depression, coma, and other abnormal cerebral signs in fetus or newborn', '(779.2) Cerebral depression, coma, and other abnormal cerebral signs in fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.4) Drug reactions and intoxications specific to newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.4) Drug reactions and intoxications specific to newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.4''', NULL,
+ '(779.4) Drug reactions and intoxications specific to newborn', '(779.4) Drug reactions and intoxications specific to newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.5) Drug withdrawal syndrome in newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.5) Drug withdrawal syndrome in newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.5''', NULL,
+ '(779.5) Drug withdrawal syndrome in newborn', '(779.5) Drug withdrawal syndrome in newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.6) Termination of pregnancy (fetus)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.6) Termination of pregnancy (fetus)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.6) Termination of pregnancy (fetus''', NULL,
+ '(779.6) Termination of pregnancy (fetus)', '(779.6) Termination of pregnancy (fetus)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.7) Periventricular leukomalacia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.7) Periventricular leukomalacia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.7''', NULL,
+ '(779.7) Periventricular leukomalacia', '(779.7) Periventricular leukomalacia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.9) Unspecified condition originating in the perinatal period\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\(779.9) Unspecified condition originating in the perinatal period\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.9''', NULL,
+ '(779.9) Unspecified condition originating in the perinatal period', '(779.9) Unspecified condition originating in the perinatal period', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Disorder of stomach function and feeding problems in newborn (779.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Disorder of stomach function and feeding problems in newborn (779.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.3''', NULL,
+ 'Disorder of stomach function and feeding problems in newborn (779.3)', 'Disorder of stomach function and feeding problems in newborn (779.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Disorder of stomach function and feeding problems in newborn (779.3)\(779.31) Feeding problems in newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Disorder of stomach function and feeding problems in newborn (779.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Disorder of stomach function and feeding problems in newborn (779.3)\(779.31) Feeding problems in newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.31''', NULL,
+ '(779.31) Feeding problems in newborn', '(779.31) Feeding problems in newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Disorder of stomach function and feeding problems in newborn (779.3)\(779.32) Bilious vomiting in newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Disorder of stomach function and feeding problems in newborn (779.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Disorder of stomach function and feeding problems in newborn (779.3)\(779.32) Bilious vomiting in newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.32''', NULL,
+ '(779.32) Bilious vomiting in newborn', '(779.32) Bilious vomiting in newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Disorder of stomach function and feeding problems in newborn (779.3)\(779.33) Other vomiting in newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Disorder of stomach function and feeding problems in newborn (779.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Disorder of stomach function and feeding problems in newborn (779.3)\(779.33) Other vomiting in newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.33''', NULL,
+ '(779.33) Other vomiting in newborn', '(779.33) Other vomiting in newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Disorder of stomach function and feeding problems in newborn (779.3)\(779.34) Failure to thrive in newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Disorder of stomach function and feeding problems in newborn (779.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Disorder of stomach function and feeding problems in newborn (779.3)\(779.34) Failure to thrive in newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.34''', NULL,
+ '(779.34) Failure to thrive in newborn', '(779.34) Failure to thrive in newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.8''', NULL,
+ 'Other specified conditions originating in the perinatal period (779.8)', 'Other specified conditions originating in the perinatal period (779.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\(779.81) Neonatal bradycardia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\(779.81) Neonatal bradycardia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.81''', NULL,
+ '(779.81) Neonatal bradycardia', '(779.81) Neonatal bradycardia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\(779.82) Neonatal tachycardia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\(779.82) Neonatal tachycardia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.82''', NULL,
+ '(779.82) Neonatal tachycardia', '(779.82) Neonatal tachycardia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\(779.83) Delayed separation of umbilical cord\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\(779.83) Delayed separation of umbilical cord\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.83''', NULL,
+ '(779.83) Delayed separation of umbilical cord', '(779.83) Delayed separation of umbilical cord', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\(779.84) Meconium staining\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\(779.84) Meconium staining\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.84''', NULL,
+ '(779.84) Meconium staining', '(779.84) Meconium staining', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\(779.85) Cardiac arrest of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\(779.85) Cardiac arrest of newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.85''', NULL,
+ '(779.85) Cardiac arrest of newborn', '(779.85) Cardiac arrest of newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\(779.89) Other specified conditions originating in the perinatal period\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other and ill-defined conditions originating in the perinatal period (779)\Other specified conditions originating in the perinatal period (779.8)\(779.89) Other specified conditions originating in the perinatal period\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''779.89''', NULL,
+ '(779.89) Other specified conditions originating in the perinatal period', '(779.89) Other specified conditions originating in the perinatal period', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''774''', NULL,
+ 'Other perinatal jaundice (774)', 'Other perinatal jaundice (774)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\(774.0) Perinatal jaundice from hereditary hemolytic anemias\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\(774.0) Perinatal jaundice from hereditary hemolytic anemias\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''774.0''', NULL,
+ '(774.0) Perinatal jaundice from hereditary hemolytic anemias', '(774.0) Perinatal jaundice from hereditary hemolytic anemias', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\(774.1) Perinatal jaundice from other excessive hemolysis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\(774.1) Perinatal jaundice from other excessive hemolysis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''774.1''', NULL,
+ '(774.1) Perinatal jaundice from other excessive hemolysis', '(774.1) Perinatal jaundice from other excessive hemolysis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\(774.2) Neonatal jaundice associated with preterm delivery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\(774.2) Neonatal jaundice associated with preterm delivery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''774.2''', NULL,
+ '(774.2) Neonatal jaundice associated with preterm delivery', '(774.2) Neonatal jaundice associated with preterm delivery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\(774.4) Perinatal jaundice due to hepatocellular damage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\(774.4) Perinatal jaundice due to hepatocellular damage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''774.4''', NULL,
+ '(774.4) Perinatal jaundice due to hepatocellular damage', '(774.4) Perinatal jaundice due to hepatocellular damage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\(774.5) Perinatal jaundice from other causes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\(774.5) Perinatal jaundice from other causes\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''774.5''', NULL,
+ '(774.5) Perinatal jaundice from other causes', '(774.5) Perinatal jaundice from other causes', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\(774.6) Unspecified fetal and neonatal jaundice\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\(774.6) Unspecified fetal and neonatal jaundice\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''774.6''', NULL,
+ '(774.6) Unspecified fetal and neonatal jaundice', '(774.6) Unspecified fetal and neonatal jaundice', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\(774.7) Kernicterus of fetus or newborn not due to isoimmunization\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\(774.7) Kernicterus of fetus or newborn not due to isoimmunization\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''774.7''', NULL,
+ '(774.7) Kernicterus of fetus or newborn not due to isoimmunization', '(774.7) Kernicterus of fetus or newborn not due to isoimmunization', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\Neonatal jaundice due to delayed conjugation from other causes (774.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\Neonatal jaundice due to delayed conjugation from other causes (774.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''774.3''', NULL,
+ 'Neonatal jaundice due to delayed conjugation from other causes (774.3)', 'Neonatal jaundice due to delayed conjugation from other causes (774.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\Neonatal jaundice due to delayed conjugation from other causes (774.3)\(774.30) Neonatal jaundice due to delayed conjugation, cause unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\Neonatal jaundice due to delayed conjugation from other causes (774.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\Neonatal jaundice due to delayed conjugation from other causes (774.3)\(774.30) Neonatal jaundice due to delayed conjugation, cause unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''774.30''', NULL,
+ '(774.30) Neonatal jaundice due to delayed conjugation, cause unspecified', '(774.30) Neonatal jaundice due to delayed conjugation, cause unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\Neonatal jaundice due to delayed conjugation from other causes (774.3)\(774.31) Neonatal jaundice due to delayed conjugation in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\Neonatal jaundice due to delayed conjugation from other causes (774.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\Neonatal jaundice due to delayed conjugation from other causes (774.3)\(774.31) Neonatal jaundice due to delayed conjugation in diseases classified elsewhere\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''774.31''', NULL,
+ '(774.31) Neonatal jaundice due to delayed conjugation in diseases classified elsewhere', '(774.31) Neonatal jaundice due to delayed conjugation in diseases classified elsewhere', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\Neonatal jaundice due to delayed conjugation from other causes (774.3)\(774.39) Other neonatal jaundice due to delayed conjugation from other causes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\Neonatal jaundice due to delayed conjugation from other causes (774.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other perinatal jaundice (774)\Neonatal jaundice due to delayed conjugation from other causes (774.3)\(774.39) Other neonatal jaundice due to delayed conjugation from other causes\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''774.39''', NULL,
+ '(774.39) Other neonatal jaundice due to delayed conjugation from other causes', '(774.39) Other neonatal jaundice due to delayed conjugation from other causes', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770''', NULL,
+ 'Other respiratory conditions of fetus and newborn (770)', 'Other respiratory conditions of fetus and newborn (770)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.0) Congenital pneumonia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.0) Congenital pneumonia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.0''', NULL,
+ '(770.0) Congenital pneumonia', '(770.0) Congenital pneumonia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.2) Interstitial emphysema and related conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.2) Interstitial emphysema and related conditions\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.2''', NULL,
+ '(770.2) Interstitial emphysema and related conditions', '(770.2) Interstitial emphysema and related conditions', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.3) Pulmonary hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.3) Pulmonary hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.3''', NULL,
+ '(770.3) Pulmonary hemorrhage', '(770.3) Pulmonary hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.4) Primary atelectasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.4) Primary atelectasis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.4''', NULL,
+ '(770.4) Primary atelectasis', '(770.4) Primary atelectasis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.5) Other and unspecified atelectasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.5) Other and unspecified atelectasis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.5''', NULL,
+ '(770.5) Other and unspecified atelectasis', '(770.5) Other and unspecified atelectasis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.6) Transitory tachypnea of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.6) Transitory tachypnea of newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.6''', NULL,
+ '(770.6) Transitory tachypnea of newborn', '(770.6) Transitory tachypnea of newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.7) Chronic respiratory disease arising in the perinatal period\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.7) Chronic respiratory disease arising in the perinatal period\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.7''', NULL,
+ '(770.7) Chronic respiratory disease arising in the perinatal period', '(770.7) Chronic respiratory disease arising in the perinatal period', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.9) Unspecified respiratory condition of fetus and newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\(770.9) Unspecified respiratory condition of fetus and newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.9''', NULL,
+ '(770.9) Unspecified respiratory condition of fetus and newborn', '(770.9) Unspecified respiratory condition of fetus and newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.1''', NULL,
+ 'Fetal and newborn aspiration (770.1)', 'Fetal and newborn aspiration (770.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.10) Fetal and newborn aspiration, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.10) Fetal and newborn aspiration, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.10''', NULL,
+ '(770.10) Fetal and newborn aspiration, unspecified', '(770.10) Fetal and newborn aspiration, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.11) Meconium aspiration without respiratory symptoms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.11) Meconium aspiration without respiratory symptoms\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.11''', NULL,
+ '(770.11) Meconium aspiration without respiratory symptoms', '(770.11) Meconium aspiration without respiratory symptoms', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.12) Meconium aspiration with respiratory symptoms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.12) Meconium aspiration with respiratory symptoms\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.12''', NULL,
+ '(770.12) Meconium aspiration with respiratory symptoms', '(770.12) Meconium aspiration with respiratory symptoms', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.13) Aspiration of clear amniotic fluid without respiratory symptoms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.13) Aspiration of clear amniotic fluid without respiratory symptoms\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.13''', NULL,
+ '(770.13) Aspiration of clear amniotic fluid without respiratory symptoms', '(770.13) Aspiration of clear amniotic fluid without respiratory symptoms', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.14) Aspiration of clear amniotic fluid with respiratory symptoms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.14) Aspiration of clear amniotic fluid with respiratory symptoms\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.14''', NULL,
+ '(770.14) Aspiration of clear amniotic fluid with respiratory symptoms', '(770.14) Aspiration of clear amniotic fluid with respiratory symptoms', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.15) Aspiration of blood without respiratory symptoms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.15) Aspiration of blood without respiratory symptoms\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.15''', NULL,
+ '(770.15) Aspiration of blood without respiratory symptoms', '(770.15) Aspiration of blood without respiratory symptoms', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.16) Aspiration of blood with respiratory symptoms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.16) Aspiration of blood with respiratory symptoms\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.16''', NULL,
+ '(770.16) Aspiration of blood with respiratory symptoms', '(770.16) Aspiration of blood with respiratory symptoms', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.17) Other fetal and newborn aspiration without respiratory symptoms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.17) Other fetal and newborn aspiration without respiratory symptoms\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.17''', NULL,
+ '(770.17) Other fetal and newborn aspiration without respiratory symptoms', '(770.17) Other fetal and newborn aspiration without respiratory symptoms', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.18) Other fetal and newborn aspiration with respiratory symptoms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Fetal and newborn aspiration (770.1)\(770.18) Other fetal and newborn aspiration with respiratory symptoms\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.18''', NULL,
+ '(770.18) Other fetal and newborn aspiration with respiratory symptoms', '(770.18) Other fetal and newborn aspiration with respiratory symptoms', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.8''', NULL,
+ 'Other newborn respiratory problems (770.8)', 'Other newborn respiratory problems (770.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.81) Primary apnea of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.81) Primary apnea of newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.81''', NULL,
+ '(770.81) Primary apnea of newborn', '(770.81) Primary apnea of newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.82) Other apnea of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.82) Other apnea of newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.82''', NULL,
+ '(770.82) Other apnea of newborn', '(770.82) Other apnea of newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.83) Cyanotic attacks of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.83) Cyanotic attacks of newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.83''', NULL,
+ '(770.83) Cyanotic attacks of newborn', '(770.83) Cyanotic attacks of newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.84) Respiratory failure of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.84) Respiratory failure of newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.84''', NULL,
+ '(770.84) Respiratory failure of newborn', '(770.84) Respiratory failure of newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.85) Aspiration of postnatal stomach contents without respiratory symptoms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.85) Aspiration of postnatal stomach contents without respiratory symptoms\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.85''', NULL,
+ '(770.85) Aspiration of postnatal stomach contents without respiratory symptoms', '(770.85) Aspiration of postnatal stomach contents without respiratory symptoms', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.86) Aspiration of postnatal stomach contents with respiratory symptoms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.86) Aspiration of postnatal stomach contents with respiratory symptoms\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.86''', NULL,
+ '(770.86) Aspiration of postnatal stomach contents with respiratory symptoms', '(770.86) Aspiration of postnatal stomach contents with respiratory symptoms', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.87) Respiratory arrest of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.87) Respiratory arrest of newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.87''', NULL,
+ '(770.87) Respiratory arrest of newborn', '(770.87) Respiratory arrest of newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.88) Hypoxemia of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.88) Hypoxemia of newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.88''', NULL,
+ '(770.88) Hypoxemia of newborn', '(770.88) Hypoxemia of newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.89) Other respiratory problems after birth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Other respiratory conditions of fetus and newborn (770)\Other newborn respiratory problems (770.8)\(770.89) Other respiratory problems after birth\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''770.89''', NULL,
+ '(770.89) Other respiratory problems after birth', '(770.89) Other respiratory problems after birth', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''777''', NULL,
+ 'Perinatal disorders of digestive system (777)', 'Perinatal disorders of digestive system (777)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\(777.1) Meconium obstruction in fetus or newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\(777.1) Meconium obstruction in fetus or newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''777.1''', NULL,
+ '(777.1) Meconium obstruction in fetus or newborn', '(777.1) Meconium obstruction in fetus or newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\(777.2) Intestinal obstruction in newborn due to inspissated milk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\(777.2) Intestinal obstruction in newborn due to inspissated milk\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''777.2''', NULL,
+ '(777.2) Intestinal obstruction in newborn due to inspissated milk', '(777.2) Intestinal obstruction in newborn due to inspissated milk', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\(777.3) Hematemesis and melena of newborn due to swallowed maternal blood\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\(777.3) Hematemesis and melena of newborn due to swallowed maternal blood\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''777.3''', NULL,
+ '(777.3) Hematemesis and melena of newborn due to swallowed maternal blood', '(777.3) Hematemesis and melena of newborn due to swallowed maternal blood', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\(777.4) Transitory ileus of newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\(777.4) Transitory ileus of newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''777.4''', NULL,
+ '(777.4) Transitory ileus of newborn', '(777.4) Transitory ileus of newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\(777.6) Perinatal intestinal perforation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\(777.6) Perinatal intestinal perforation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''777.6''', NULL,
+ '(777.6) Perinatal intestinal perforation', '(777.6) Perinatal intestinal perforation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\(777.8) Other specified perinatal disorders of digestive system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\(777.8) Other specified perinatal disorders of digestive system\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''777.8''', NULL,
+ '(777.8) Other specified perinatal disorders of digestive system', '(777.8) Other specified perinatal disorders of digestive system', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\(777.9) Unspecified perinatal disorder of digestive system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\(777.9) Unspecified perinatal disorder of digestive system\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''777.9''', NULL,
+ '(777.9) Unspecified perinatal disorder of digestive system', '(777.9) Unspecified perinatal disorder of digestive system', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\Necrotizing enterocolitis in newborn (777.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\Necrotizing enterocolitis in newborn (777.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''777.5''', NULL,
+ 'Necrotizing enterocolitis in newborn (777.5)', 'Necrotizing enterocolitis in newborn (777.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\Necrotizing enterocolitis in newborn (777.5)\(777.50) Necrotizing enterocolitis in newborn, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\Necrotizing enterocolitis in newborn (777.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\Necrotizing enterocolitis in newborn (777.5)\(777.50) Necrotizing enterocolitis in newborn, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''777.50''', NULL,
+ '(777.50) Necrotizing enterocolitis in newborn, unspecified', '(777.50) Necrotizing enterocolitis in newborn, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\Necrotizing enterocolitis in newborn (777.5)\(777.51) Stage I necrotizing enterocolitis in newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\Necrotizing enterocolitis in newborn (777.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\Necrotizing enterocolitis in newborn (777.5)\(777.51) Stage I necrotizing enterocolitis in newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''777.51''', NULL,
+ '(777.51) Stage I necrotizing enterocolitis in newborn', '(777.51) Stage I necrotizing enterocolitis in newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\Necrotizing enterocolitis in newborn (777.5)\(777.52) Stage II necrotizing enterocolitis in newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\Necrotizing enterocolitis in newborn (777.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\Necrotizing enterocolitis in newborn (777.5)\(777.52) Stage II necrotizing enterocolitis in newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''777.52''', NULL,
+ '(777.52) Stage II necrotizing enterocolitis in newborn', '(777.52) Stage II necrotizing enterocolitis in newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\Necrotizing enterocolitis in newborn (777.5)\(777.53) Stage III necrotizing enterocolitis in newborn\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\Necrotizing enterocolitis in newborn (777.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Perinatal disorders of digestive system (777)\Necrotizing enterocolitis in newborn (777.5)\(777.53) Stage III necrotizing enterocolitis in newborn\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''777.53''', NULL,
+ '(777.53) Stage III necrotizing enterocolitis in newborn', '(777.53) Stage III necrotizing enterocolitis in newborn', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764''', NULL,
+ 'Slow fetal growth and fetal malnutrition (764)', 'Slow fetal growth and fetal malnutrition (764)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.9''', NULL,
+ 'Fetal growth retardation, unspecified (764.9)', 'Fetal growth retardation, unspecified (764.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.90) Fetal growth retardation, unspecified, unspecified [weight]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.90) Fetal growth retardation, unspecified, unspecified [weight]\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.90''', NULL,
+ '(764.90) Fetal growth retardation, unspecified, unspecified [weight]', '(764.90) Fetal growth retardation, unspecified, unspecified [weight]', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.91) Fetal growth retardation, unspecified, less than 500 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.91) Fetal growth retardation, unspecified, less than 500 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.91''', NULL,
+ '(764.91) Fetal growth retardation, unspecified, less than 500 grams', '(764.91) Fetal growth retardation, unspecified, less than 500 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.92) Fetal growth retardation, unspecified, 500-749 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.92) Fetal growth retardation, unspecified, 500-749 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.92''', NULL,
+ '(764.92) Fetal growth retardation, unspecified, 500-749 grams', '(764.92) Fetal growth retardation, unspecified, 500-749 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.93) Fetal growth retardation, unspecified, 750-999 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.93) Fetal growth retardation, unspecified, 750-999 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.93''', NULL,
+ '(764.93) Fetal growth retardation, unspecified, 750-999 grams', '(764.93) Fetal growth retardation, unspecified, 750-999 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.94) Fetal growth retardation, unspecified, 1,000-1,249 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.94) Fetal growth retardation, unspecified, 1,000-1,249 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.94''', NULL,
+ '(764.94) Fetal growth retardation, unspecified, 1,000-1,249 grams', '(764.94) Fetal growth retardation, unspecified, 1,000-1,249 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.95) Fetal growth retardation, unspecified, 1,250-1,499 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.95) Fetal growth retardation, unspecified, 1,250-1,499 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.95''', NULL,
+ '(764.95) Fetal growth retardation, unspecified, 1,250-1,499 grams', '(764.95) Fetal growth retardation, unspecified, 1,250-1,499 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.96) Fetal growth retardation, unspecified, 1,500-1,749 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.96) Fetal growth retardation, unspecified, 1,500-1,749 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.96''', NULL,
+ '(764.96) Fetal growth retardation, unspecified, 1,500-1,749 grams', '(764.96) Fetal growth retardation, unspecified, 1,500-1,749 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.97) Fetal growth retardation, unspecified, 1,750-1,999 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.97) Fetal growth retardation, unspecified, 1,750-1,999 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.97''', NULL,
+ '(764.97) Fetal growth retardation, unspecified, 1,750-1,999 grams', '(764.97) Fetal growth retardation, unspecified, 1,750-1,999 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.98) Fetal growth retardation, unspecified, 2,000-2,499 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.98) Fetal growth retardation, unspecified, 2,000-2,499 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.98''', NULL,
+ '(764.98) Fetal growth retardation, unspecified, 2,000-2,499 grams', '(764.98) Fetal growth retardation, unspecified, 2,000-2,499 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.99) Fetal growth retardation, unspecified, 2,500 grams and over\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal growth retardation, unspecified (764.9)\(764.99) Fetal growth retardation, unspecified, 2,500 grams and over\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.99''', NULL,
+ '(764.99) Fetal growth retardation, unspecified, 2,500 grams and over', '(764.99) Fetal growth retardation, unspecified, 2,500 grams and over', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.2''', NULL,
+ 'Fetal malnutrition without mention of "light-for-dates" (764.2)', 'Fetal malnutrition without mention of "light-for-dates" (764.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.20) Fetal malnutrition without mention of "light-for-dates", unspecified [weight]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.20) Fetal malnutrition without mention of "light-for-dates", unspecified [weight]\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.20''', NULL,
+ '(764.20) Fetal malnutrition without mention of "light-for-dates", unspecified [weight]', '(764.20) Fetal malnutrition without mention of "light-for-dates", unspecified [weight]', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.21) Fetal malnutrition without mention of "light-for-dates", less than 500 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.21) Fetal malnutrition without mention of "light-for-dates", less than 500 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.21''', NULL,
+ '(764.21) Fetal malnutrition without mention of "light-for-dates", less than 500 grams', '(764.21) Fetal malnutrition without mention of "light-for-dates", less than 500 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.22) Fetal malnutrition without mention of "light-for-dates", 500-749 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.22) Fetal malnutrition without mention of "light-for-dates", 500-749 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.22''', NULL,
+ '(764.22) Fetal malnutrition without mention of "light-for-dates", 500-749 grams', '(764.22) Fetal malnutrition without mention of "light-for-dates", 500-749 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.23) Fetal malnutrition without mention of "light-for-dates", 750-999 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.23) Fetal malnutrition without mention of "light-for-dates", 750-999 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.23''', NULL,
+ '(764.23) Fetal malnutrition without mention of "light-for-dates", 750-999 grams', '(764.23) Fetal malnutrition without mention of "light-for-dates", 750-999 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.24) Fetal malnutrition without mention of "light-for-dates", 1,000-1,249 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.24) Fetal malnutrition without mention of "light-for-dates", 1,000-1,249 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.24''', NULL,
+ '(764.24) Fetal malnutrition without mention of "light-for-dates", 1,000-1,249 grams', '(764.24) Fetal malnutrition without mention of "light-for-dates", 1,000-1,249 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.25) Fetal malnutrition without mention of "light-for-dates", 1,250-1,499 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.25) Fetal malnutrition without mention of "light-for-dates", 1,250-1,499 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.25''', NULL,
+ '(764.25) Fetal malnutrition without mention of "light-for-dates", 1,250-1,499 grams', '(764.25) Fetal malnutrition without mention of "light-for-dates", 1,250-1,499 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.26) Fetal malnutrition without mention of "light-for-dates", 1,500-1,749 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.26) Fetal malnutrition without mention of "light-for-dates", 1,500-1,749 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.26''', NULL,
+ '(764.26) Fetal malnutrition without mention of "light-for-dates", 1,500-1,749 grams', '(764.26) Fetal malnutrition without mention of "light-for-dates", 1,500-1,749 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.27) Fetal malnutrition without mention of "light-for-dates", 1,750-1,999 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.27) Fetal malnutrition without mention of "light-for-dates", 1,750-1,999 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.27''', NULL,
+ '(764.27) Fetal malnutrition without mention of "light-for-dates", 1,750-1,999 grams', '(764.27) Fetal malnutrition without mention of "light-for-dates", 1,750-1,999 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.28) Fetal malnutrition without mention of "light-for-dates", 2,000-2,499 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.28) Fetal malnutrition without mention of "light-for-dates", 2,000-2,499 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.28''', NULL,
+ '(764.28) Fetal malnutrition without mention of "light-for-dates", 2,000-2,499 grams', '(764.28) Fetal malnutrition without mention of "light-for-dates", 2,000-2,499 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.29) Fetal malnutrition without mention of "light-for-dates", 2,500 grams and over\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Fetal malnutrition without mention of "light-for-dates" (764.2)\(764.29) Fetal malnutrition without mention of "light-for-dates", 2,500 grams and over\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.29''', NULL,
+ '(764.29) Fetal malnutrition without mention of "light-for-dates", 2,500 grams and over', '(764.29) Fetal malnutrition without mention of "light-for-dates", 2,500 grams and over', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.1''', NULL,
+ 'Light-for-dates with signs of fetal malnutrition (764.1)', 'Light-for-dates with signs of fetal malnutrition (764.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.10) Light-for-dates with signs of fetal malnutrition, unspecified [weight]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.10) Light-for-dates with signs of fetal malnutrition, unspecified [weight]\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.10''', NULL,
+ '(764.10) Light-for-dates with signs of fetal malnutrition, unspecified [weight]', '(764.10) Light-for-dates with signs of fetal malnutrition, unspecified [weight]', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.11) Light-for-dates with signs of fetal malnutrition, less than 500 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.11) Light-for-dates with signs of fetal malnutrition, less than 500 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.11''', NULL,
+ '(764.11) Light-for-dates with signs of fetal malnutrition, less than 500 grams', '(764.11) Light-for-dates with signs of fetal malnutrition, less than 500 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.12) Light-for-dateswith signs of fetal malnutrition, 500-749 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.12) Light-for-dateswith signs of fetal malnutrition, 500-749 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.12''', NULL,
+ '(764.12) Light-for-dateswith signs of fetal malnutrition, 500-749 grams', '(764.12) Light-for-dateswith signs of fetal malnutrition, 500-749 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.13) Light-for-dates with signs of fetal malnutrition, 750-999 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.13) Light-for-dates with signs of fetal malnutrition, 750-999 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.13''', NULL,
+ '(764.13) Light-for-dates with signs of fetal malnutrition, 750-999 grams', '(764.13) Light-for-dates with signs of fetal malnutrition, 750-999 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.14) Light-for-dates with signs of fetal malnutrition, 1,000-1,249 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.14) Light-for-dates with signs of fetal malnutrition, 1,000-1,249 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.14''', NULL,
+ '(764.14) Light-for-dates with signs of fetal malnutrition, 1,000-1,249 grams', '(764.14) Light-for-dates with signs of fetal malnutrition, 1,000-1,249 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.15) Light-for-dates with signs of fetal malnutrition, 1,250-1,499 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.15) Light-for-dates with signs of fetal malnutrition, 1,250-1,499 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.15''', NULL,
+ '(764.15) Light-for-dates with signs of fetal malnutrition, 1,250-1,499 grams', '(764.15) Light-for-dates with signs of fetal malnutrition, 1,250-1,499 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.16) Light-for-dates with signs of fetal malnutrition, 1,500-1,749 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.16) Light-for-dates with signs of fetal malnutrition, 1,500-1,749 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.16''', NULL,
+ '(764.16) Light-for-dates with signs of fetal malnutrition, 1,500-1,749 grams', '(764.16) Light-for-dates with signs of fetal malnutrition, 1,500-1,749 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.17) Light-for-dates with signs of fetal malnutrition, 1,750-1,999 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.17) Light-for-dates with signs of fetal malnutrition, 1,750-1,999 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.17''', NULL,
+ '(764.17) Light-for-dates with signs of fetal malnutrition, 1,750-1,999 grams', '(764.17) Light-for-dates with signs of fetal malnutrition, 1,750-1,999 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.18) Light-for-dateswith signs of fetal malnutrition, 2,000-2,499 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.18) Light-for-dateswith signs of fetal malnutrition, 2,000-2,499 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.18''', NULL,
+ '(764.18) Light-for-dateswith signs of fetal malnutrition, 2,000-2,499 grams', '(764.18) Light-for-dateswith signs of fetal malnutrition, 2,000-2,499 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.19) Light-for-dateswith signs of fetal malnutrition, 2,500 grams and over\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates with signs of fetal malnutrition (764.1)\(764.19) Light-for-dateswith signs of fetal malnutrition, 2,500 grams and over\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.19''', NULL,
+ '(764.19) Light-for-dateswith signs of fetal malnutrition, 2,500 grams and over', '(764.19) Light-for-dateswith signs of fetal malnutrition, 2,500 grams and over', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.0''', NULL,
+ 'Light-for-dates without mention of fetal malnutrition (764.0)', 'Light-for-dates without mention of fetal malnutrition (764.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.00) Light-for-dates without mention of fetal malnutrition, unspecified [weight]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.00) Light-for-dates without mention of fetal malnutrition, unspecified [weight]\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.00''', NULL,
+ '(764.00) Light-for-dates without mention of fetal malnutrition, unspecified [weight]', '(764.00) Light-for-dates without mention of fetal malnutrition, unspecified [weight]', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.01) Light-for-dates without mention of fetal malnutrition, less than 500 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.01) Light-for-dates without mention of fetal malnutrition, less than 500 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.01''', NULL,
+ '(764.01) Light-for-dates without mention of fetal malnutrition, less than 500 grams', '(764.01) Light-for-dates without mention of fetal malnutrition, less than 500 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.02) Light-for-dates without mention of fetal malnutrition, 500-749 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.02) Light-for-dates without mention of fetal malnutrition, 500-749 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.02''', NULL,
+ '(764.02) Light-for-dates without mention of fetal malnutrition, 500-749 grams', '(764.02) Light-for-dates without mention of fetal malnutrition, 500-749 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.03) Light-for-dates without mention of fetal malnutrition, 750-999 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.03) Light-for-dates without mention of fetal malnutrition, 750-999 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.03''', NULL,
+ '(764.03) Light-for-dates without mention of fetal malnutrition, 750-999 grams', '(764.03) Light-for-dates without mention of fetal malnutrition, 750-999 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.04) Light-for-dates without mention of fetal malnutrition, 1,000- 1,249 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.04) Light-for-dates without mention of fetal malnutrition, 1,000- 1,249 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.04''', NULL,
+ '(764.04) Light-for-dates without mention of fetal malnutrition, 1,000- 1,249 grams', '(764.04) Light-for-dates without mention of fetal malnutrition, 1,000- 1,249 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.05) Light-for-dateswithout mention of fetal malnutrition, 1,250- 1,499 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.05) Light-for-dateswithout mention of fetal malnutrition, 1,250- 1,499 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.05''', NULL,
+ '(764.05) Light-for-dateswithout mention of fetal malnutrition, 1,250- 1,499 grams', '(764.05) Light-for-dateswithout mention of fetal malnutrition, 1,250- 1,499 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.06) Light-for-dates without mention of fetal malnutrition, 1,500- 1,749 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.06) Light-for-dates without mention of fetal malnutrition, 1,500- 1,749 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.06''', NULL,
+ '(764.06) Light-for-dates without mention of fetal malnutrition, 1,500- 1,749 grams', '(764.06) Light-for-dates without mention of fetal malnutrition, 1,500- 1,749 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.07) Light-for-dates without mention of fetal malnutrition, 1,750- 1,999 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.07) Light-for-dates without mention of fetal malnutrition, 1,750- 1,999 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.07''', NULL,
+ '(764.07) Light-for-dates without mention of fetal malnutrition, 1,750- 1,999 grams', '(764.07) Light-for-dates without mention of fetal malnutrition, 1,750- 1,999 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.08) Light-for-dates without mention of fetal malnutrition, 2,000- 2,499 grams\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.08) Light-for-dates without mention of fetal malnutrition, 2,000- 2,499 grams\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.08''', NULL,
+ '(764.08) Light-for-dates without mention of fetal malnutrition, 2,000- 2,499 grams', '(764.08) Light-for-dates without mention of fetal malnutrition, 2,000- 2,499 grams', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.09) Light-for-dates without mention of fetal malnutrition, 2,500 grams and over\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Certain conditions originating in the perinatal period (760-779.99)\Other conditions originating in the perinatal period (764-779.99)\Slow fetal growth and fetal malnutrition (764)\Light-for-dates without mention of fetal malnutrition (764.0)\(764.09) Light-for-dates without mention of fetal malnutrition, 2,500 grams and over\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''764.09''', NULL,
+ '(764.09) Light-for-dates without mention of fetal malnutrition, 2,500 grams and over', '(764.09) Light-for-dates without mention of fetal malnutrition, 2,500 grams and over', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''630'' AND ''679.99''', NULL,
+ 'Complications of pregnancy, childbirth, and the puerperium (630-679.99)', 'Complications of pregnancy, childbirth, and the puerperium (630-679.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''640'' AND ''649.99''', NULL,
+ 'Complications mainly related to pregnancy (640-649.99)', 'Complications mainly related to pregnancy (640-649.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641''', NULL,
+ 'Antepartum hemorrhage, abruptio placentae, and placenta previa (641)', 'Antepartum hemorrhage, abruptio placentae, and placenta previa (641)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Antepartum hemorrhage associated with coagulation defects (641.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Antepartum hemorrhage associated with coagulation defects (641.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.3''', NULL,
+ 'Antepartum hemorrhage associated with coagulation defects (641.3)', 'Antepartum hemorrhage associated with coagulation defects (641.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Antepartum hemorrhage associated with coagulation defects (641.3)\(641.30) Antepartum hemorrhage associated with coagulation defects, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Antepartum hemorrhage associated with coagulation defects (641.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Antepartum hemorrhage associated with coagulation defects (641.3)\(641.30) Antepartum hemorrhage associated with coagulation defects, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.30''', NULL,
+ '(641.30) Antepartum hemorrhage associated with coagulation defects, unspecified as to episode of care or not applicable', '(641.30) Antepartum hemorrhage associated with coagulation defects, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Antepartum hemorrhage associated with coagulation defects (641.3)\(641.31) Antepartum hemorrhage associated with coagulation defects, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Antepartum hemorrhage associated with coagulation defects (641.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Antepartum hemorrhage associated with coagulation defects (641.3)\(641.31) Antepartum hemorrhage associated with coagulation defects, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.31''', NULL,
+ '(641.31) Antepartum hemorrhage associated with coagulation defects, delivered, with or without mention of antepartum condition', '(641.31) Antepartum hemorrhage associated with coagulation defects, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Antepartum hemorrhage associated with coagulation defects (641.3)\(641.33) Antepartum hemorrhage associated with coagulation defects, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Antepartum hemorrhage associated with coagulation defects (641.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Antepartum hemorrhage associated with coagulation defects (641.3)\(641.33) Antepartum hemorrhage associated with coagulation defects, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.33''', NULL,
+ '(641.33) Antepartum hemorrhage associated with coagulation defects, antepartum condition or complication', '(641.33) Antepartum hemorrhage associated with coagulation defects, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Hemorrhage from placenta previa (641.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Hemorrhage from placenta previa (641.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.1''', NULL,
+ 'Hemorrhage from placenta previa (641.1)', 'Hemorrhage from placenta previa (641.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Hemorrhage from placenta previa (641.1)\(641.10) Hemorrhage from placenta previa, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Hemorrhage from placenta previa (641.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Hemorrhage from placenta previa (641.1)\(641.10) Hemorrhage from placenta previa, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.10''', NULL,
+ '(641.10) Hemorrhage from placenta previa, unspecified as to episode of care or not applicable', '(641.10) Hemorrhage from placenta previa, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Hemorrhage from placenta previa (641.1)\(641.11) Hemorrhage from placenta previa, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Hemorrhage from placenta previa (641.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Hemorrhage from placenta previa (641.1)\(641.11) Hemorrhage from placenta previa, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.11''', NULL,
+ '(641.11) Hemorrhage from placenta previa, delivered, with or without mention of antepartum condition', '(641.11) Hemorrhage from placenta previa, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Hemorrhage from placenta previa (641.1)\(641.13) Hemorrhage from placenta previa, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Hemorrhage from placenta previa (641.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Hemorrhage from placenta previa (641.1)\(641.13) Hemorrhage from placenta previa, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.13''', NULL,
+ '(641.13) Hemorrhage from placenta previa, antepartum condition or complication', '(641.13) Hemorrhage from placenta previa, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Other antepartum hemorrhage (641.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Other antepartum hemorrhage (641.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.8''', NULL,
+ 'Other antepartum hemorrhage (641.8)', 'Other antepartum hemorrhage (641.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Other antepartum hemorrhage (641.8)\(641.80) Other antepartum hemorrhage, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Other antepartum hemorrhage (641.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Other antepartum hemorrhage (641.8)\(641.80) Other antepartum hemorrhage, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.80''', NULL,
+ '(641.80) Other antepartum hemorrhage, unspecified as to episode of care or not applicable', '(641.80) Other antepartum hemorrhage, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Other antepartum hemorrhage (641.8)\(641.81) Other antepartum hemorrhage, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Other antepartum hemorrhage (641.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Other antepartum hemorrhage (641.8)\(641.81) Other antepartum hemorrhage, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.81''', NULL,
+ '(641.81) Other antepartum hemorrhage, delivered, with or without mention of antepartum condition', '(641.81) Other antepartum hemorrhage, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Other antepartum hemorrhage (641.8)\(641.83) Other antepartum hemorrhage, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Other antepartum hemorrhage (641.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Other antepartum hemorrhage (641.8)\(641.83) Other antepartum hemorrhage, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.83''', NULL,
+ '(641.83) Other antepartum hemorrhage, antepartum condition or complication', '(641.83) Other antepartum hemorrhage, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Placenta previa without hemorrhage (641.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Placenta previa without hemorrhage (641.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.0''', NULL,
+ 'Placenta previa without hemorrhage (641.0)', 'Placenta previa without hemorrhage (641.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Placenta previa without hemorrhage (641.0)\(641.00) Placenta previa without hemorrhage, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Placenta previa without hemorrhage (641.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Placenta previa without hemorrhage (641.0)\(641.00) Placenta previa without hemorrhage, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.00''', NULL,
+ '(641.00) Placenta previa without hemorrhage, unspecified as to episode of care or not applicable', '(641.00) Placenta previa without hemorrhage, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Placenta previa without hemorrhage (641.0)\(641.01) Placenta previa without hemorrhage, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Placenta previa without hemorrhage (641.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Placenta previa without hemorrhage (641.0)\(641.01) Placenta previa without hemorrhage, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.01''', NULL,
+ '(641.01) Placenta previa without hemorrhage, delivered, with or without mention of antepartum condition', '(641.01) Placenta previa without hemorrhage, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Placenta previa without hemorrhage (641.0)\(641.03) Placenta previa without hemorrhage, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Placenta previa without hemorrhage (641.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Placenta previa without hemorrhage (641.0)\(641.03) Placenta previa without hemorrhage, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.03''', NULL,
+ '(641.03) Placenta previa without hemorrhage, antepartum condition or complication', '(641.03) Placenta previa without hemorrhage, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Premature separation of placenta (641.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Premature separation of placenta (641.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.2''', NULL,
+ 'Premature separation of placenta (641.2)', 'Premature separation of placenta (641.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Premature separation of placenta (641.2)\(641.20) Premature separation of placenta, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Premature separation of placenta (641.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Premature separation of placenta (641.2)\(641.20) Premature separation of placenta, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.20''', NULL,
+ '(641.20) Premature separation of placenta, unspecified as to episode of care or not applicable', '(641.20) Premature separation of placenta, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Premature separation of placenta (641.2)\(641.21) Premature separation of placenta, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Premature separation of placenta (641.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Premature separation of placenta (641.2)\(641.21) Premature separation of placenta, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.21''', NULL,
+ '(641.21) Premature separation of placenta, delivered, with or without mention of antepartum condition', '(641.21) Premature separation of placenta, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Premature separation of placenta (641.2)\(641.23) Premature separation of placenta, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Premature separation of placenta (641.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Premature separation of placenta (641.2)\(641.23) Premature separation of placenta, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.23''', NULL,
+ '(641.23) Premature separation of placenta, antepartum condition or complication', '(641.23) Premature separation of placenta, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Unspecified antepartum hemorrhage (641.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Unspecified antepartum hemorrhage (641.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.9''', NULL,
+ 'Unspecified antepartum hemorrhage (641.9)', 'Unspecified antepartum hemorrhage (641.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Unspecified antepartum hemorrhage (641.9)\(641.90) Unspecified antepartum hemorrhage, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Unspecified antepartum hemorrhage (641.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Unspecified antepartum hemorrhage (641.9)\(641.90) Unspecified antepartum hemorrhage, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.90''', NULL,
+ '(641.90) Unspecified antepartum hemorrhage, unspecified as to episode of care or not applicable', '(641.90) Unspecified antepartum hemorrhage, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Unspecified antepartum hemorrhage (641.9)\(641.91) Unspecified antepartum hemorrhage, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Unspecified antepartum hemorrhage (641.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Unspecified antepartum hemorrhage (641.9)\(641.91) Unspecified antepartum hemorrhage, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.91''', NULL,
+ '(641.91) Unspecified antepartum hemorrhage, delivered, with or without mention of antepartum condition', '(641.91) Unspecified antepartum hemorrhage, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Unspecified antepartum hemorrhage (641.9)\(641.93) Unspecified antepartum hemorrhage, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Unspecified antepartum hemorrhage (641.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Antepartum hemorrhage, abruptio placentae, and placenta previa (641)\Unspecified antepartum hemorrhage (641.9)\(641.93) Unspecified antepartum hemorrhage, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''641.93''', NULL,
+ '(641.93) Unspecified antepartum hemorrhage, antepartum condition or complication', '(641.93) Unspecified antepartum hemorrhage, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''644''', NULL,
+ 'Early or threatened labor (644)', 'Early or threatened labor (644)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Early onset of delivery (644.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Early onset of delivery (644.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''644.2''', NULL,
+ 'Early onset of delivery (644.2)', 'Early onset of delivery (644.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Early onset of delivery (644.2)\(644.20) Early onset of delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Early onset of delivery (644.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Early onset of delivery (644.2)\(644.20) Early onset of delivery, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''644.20''', NULL,
+ '(644.20) Early onset of delivery, unspecified as to episode of care or not applicable', '(644.20) Early onset of delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Early onset of delivery (644.2)\(644.21) Early onset of delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Early onset of delivery (644.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Early onset of delivery (644.2)\(644.21) Early onset of delivery, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''644.21''', NULL,
+ '(644.21) Early onset of delivery, delivered, with or without mention of antepartum condition', '(644.21) Early onset of delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Other threatened labor (644.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Other threatened labor (644.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''644.1''', NULL,
+ 'Other threatened labor (644.1)', 'Other threatened labor (644.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Other threatened labor (644.1)\(644.10) Other threatened labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Other threatened labor (644.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Other threatened labor (644.1)\(644.10) Other threatened labor, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''644.10''', NULL,
+ '(644.10) Other threatened labor, unspecified as to episode of care or not applicable', '(644.10) Other threatened labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Other threatened labor (644.1)\(644.13) Other threatened labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Other threatened labor (644.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Other threatened labor (644.1)\(644.13) Other threatened labor, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''644.13''', NULL,
+ '(644.13) Other threatened labor, antepartum condition or complication', '(644.13) Other threatened labor, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Threatened premature labor (644.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Threatened premature labor (644.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''644.0''', NULL,
+ 'Threatened premature labor (644.0)', 'Threatened premature labor (644.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Threatened premature labor (644.0)\(644.00) Threatened premature labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Threatened premature labor (644.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Threatened premature labor (644.0)\(644.00) Threatened premature labor, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''644.00''', NULL,
+ '(644.00) Threatened premature labor, unspecified as to episode of care or not applicable', '(644.00) Threatened premature labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Threatened premature labor (644.0)\(644.03) Threatened premature labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Threatened premature labor (644.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Early or threatened labor (644)\Threatened premature labor (644.0)\(644.03) Threatened premature labor, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''644.03''', NULL,
+ '(644.03) Threatened premature labor, antepartum condition or complication', '(644.03) Threatened premature labor, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643''', NULL,
+ 'Excessive vomiting in pregnancy (643)', 'Excessive vomiting in pregnancy (643)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Hyperemesis gravidarum with metabolic disturbance (643.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Hyperemesis gravidarum with metabolic disturbance (643.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.1''', NULL,
+ 'Hyperemesis gravidarum with metabolic disturbance (643.1)', 'Hyperemesis gravidarum with metabolic disturbance (643.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Hyperemesis gravidarum with metabolic disturbance (643.1)\(643.10) Hyperemesis gravidarum with metabolic disturbance, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Hyperemesis gravidarum with metabolic disturbance (643.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Hyperemesis gravidarum with metabolic disturbance (643.1)\(643.10) Hyperemesis gravidarum with metabolic disturbance, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.10''', NULL,
+ '(643.10) Hyperemesis gravidarum with metabolic disturbance, unspecified as to episode of care or not applicable', '(643.10) Hyperemesis gravidarum with metabolic disturbance, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Hyperemesis gravidarum with metabolic disturbance (643.1)\(643.11) Hyperemesis gravidarum with metabolic disturbance, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Hyperemesis gravidarum with metabolic disturbance (643.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Hyperemesis gravidarum with metabolic disturbance (643.1)\(643.11) Hyperemesis gravidarum with metabolic disturbance, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.11''', NULL,
+ '(643.11) Hyperemesis gravidarum with metabolic disturbance, delivered, with or without mention of antepartum condition', '(643.11) Hyperemesis gravidarum with metabolic disturbance, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Hyperemesis gravidarum with metabolic disturbance (643.1)\(643.13) Hyperemesis gravidarum with metabolic disturbance, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Hyperemesis gravidarum with metabolic disturbance (643.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Hyperemesis gravidarum with metabolic disturbance (643.1)\(643.13) Hyperemesis gravidarum with metabolic disturbance, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.13''', NULL,
+ '(643.13) Hyperemesis gravidarum with metabolic disturbance, antepartum condition or complication', '(643.13) Hyperemesis gravidarum with metabolic disturbance, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Late vomiting of pregnancy (643.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Late vomiting of pregnancy (643.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.2''', NULL,
+ 'Late vomiting of pregnancy (643.2)', 'Late vomiting of pregnancy (643.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Late vomiting of pregnancy (643.2)\(643.20) Late vomiting of pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Late vomiting of pregnancy (643.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Late vomiting of pregnancy (643.2)\(643.20) Late vomiting of pregnancy, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.20''', NULL,
+ '(643.20) Late vomiting of pregnancy, unspecified as to episode of care or not applicable', '(643.20) Late vomiting of pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Late vomiting of pregnancy (643.2)\(643.21) Late vomiting of pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Late vomiting of pregnancy (643.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Late vomiting of pregnancy (643.2)\(643.21) Late vomiting of pregnancy, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.21''', NULL,
+ '(643.21) Late vomiting of pregnancy, delivered, with or without mention of antepartum condition', '(643.21) Late vomiting of pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Late vomiting of pregnancy (643.2)\(643.23) Late vomiting of pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Late vomiting of pregnancy (643.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Late vomiting of pregnancy (643.2)\(643.23) Late vomiting of pregnancy, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.23''', NULL,
+ '(643.23) Late vomiting of pregnancy, antepartum condition or complication', '(643.23) Late vomiting of pregnancy, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Mild hyperemesis gravidarum (643.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Mild hyperemesis gravidarum (643.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.0''', NULL,
+ 'Mild hyperemesis gravidarum (643.0)', 'Mild hyperemesis gravidarum (643.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Mild hyperemesis gravidarum (643.0)\(643.00) Mild hyperemesis gravidarum, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Mild hyperemesis gravidarum (643.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Mild hyperemesis gravidarum (643.0)\(643.00) Mild hyperemesis gravidarum, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.00''', NULL,
+ '(643.00) Mild hyperemesis gravidarum, unspecified as to episode of care or not applicable', '(643.00) Mild hyperemesis gravidarum, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Mild hyperemesis gravidarum (643.0)\(643.01) Mild hyperemesis gravidarum, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Mild hyperemesis gravidarum (643.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Mild hyperemesis gravidarum (643.0)\(643.01) Mild hyperemesis gravidarum, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.01''', NULL,
+ '(643.01) Mild hyperemesis gravidarum, delivered, with or without mention of antepartum condition', '(643.01) Mild hyperemesis gravidarum, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Mild hyperemesis gravidarum (643.0)\(643.03) Mild hyperemesis gravidarum, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Mild hyperemesis gravidarum (643.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Mild hyperemesis gravidarum (643.0)\(643.03) Mild hyperemesis gravidarum, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.03''', NULL,
+ '(643.03) Mild hyperemesis gravidarum, antepartum condition or complication', '(643.03) Mild hyperemesis gravidarum, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Other vomiting complicating pregnancy (643.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Other vomiting complicating pregnancy (643.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.8''', NULL,
+ 'Other vomiting complicating pregnancy (643.8)', 'Other vomiting complicating pregnancy (643.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Other vomiting complicating pregnancy (643.8)\(643.80) Other vomiting complicating pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Other vomiting complicating pregnancy (643.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Other vomiting complicating pregnancy (643.8)\(643.80) Other vomiting complicating pregnancy, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.80''', NULL,
+ '(643.80) Other vomiting complicating pregnancy, unspecified as to episode of care or not applicable', '(643.80) Other vomiting complicating pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Other vomiting complicating pregnancy (643.8)\(643.81) Other vomiting complicating pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Other vomiting complicating pregnancy (643.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Other vomiting complicating pregnancy (643.8)\(643.81) Other vomiting complicating pregnancy, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.81''', NULL,
+ '(643.81) Other vomiting complicating pregnancy, delivered, with or without mention of antepartum condition', '(643.81) Other vomiting complicating pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Other vomiting complicating pregnancy (643.8)\(643.83) Other vomiting complicating pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Other vomiting complicating pregnancy (643.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Other vomiting complicating pregnancy (643.8)\(643.83) Other vomiting complicating pregnancy, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.83''', NULL,
+ '(643.83) Other vomiting complicating pregnancy, antepartum condition or complication', '(643.83) Other vomiting complicating pregnancy, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Unspecified vomiting of pregnancy (643.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Unspecified vomiting of pregnancy (643.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.9''', NULL,
+ 'Unspecified vomiting of pregnancy (643.9)', 'Unspecified vomiting of pregnancy (643.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Unspecified vomiting of pregnancy (643.9)\(643.90) Unspecified vomiting of pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Unspecified vomiting of pregnancy (643.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Unspecified vomiting of pregnancy (643.9)\(643.90) Unspecified vomiting of pregnancy, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.90''', NULL,
+ '(643.90) Unspecified vomiting of pregnancy, unspecified as to episode of care or not applicable', '(643.90) Unspecified vomiting of pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Unspecified vomiting of pregnancy (643.9)\(643.91) Unspecified vomiting of pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Unspecified vomiting of pregnancy (643.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Unspecified vomiting of pregnancy (643.9)\(643.91) Unspecified vomiting of pregnancy, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.91''', NULL,
+ '(643.91) Unspecified vomiting of pregnancy, delivered, with or without mention of antepartum condition', '(643.91) Unspecified vomiting of pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Unspecified vomiting of pregnancy (643.9)\(643.93) Unspecified vomiting of pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Unspecified vomiting of pregnancy (643.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Excessive vomiting in pregnancy (643)\Unspecified vomiting of pregnancy (643.9)\(643.93) Unspecified vomiting of pregnancy, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''643.93''', NULL,
+ '(643.93) Unspecified vomiting of pregnancy, antepartum condition or complication', '(643.93) Unspecified vomiting of pregnancy, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''640''', NULL,
+ 'Hemorrhage in early pregnancy (640)', 'Hemorrhage in early pregnancy (640)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Other specified hemorrhage in early pregnancy (640.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Other specified hemorrhage in early pregnancy (640.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''640.8''', NULL,
+ 'Other specified hemorrhage in early pregnancy (640.8)', 'Other specified hemorrhage in early pregnancy (640.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Other specified hemorrhage in early pregnancy (640.8)\(640.80) Other specified hemorrhage in early pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Other specified hemorrhage in early pregnancy (640.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Other specified hemorrhage in early pregnancy (640.8)\(640.80) Other specified hemorrhage in early pregnancy, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''640.80''', NULL,
+ '(640.80) Other specified hemorrhage in early pregnancy, unspecified as to episode of care or not applicable', '(640.80) Other specified hemorrhage in early pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Other specified hemorrhage in early pregnancy (640.8)\(640.81) Other specified hemorrhage in early pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Other specified hemorrhage in early pregnancy (640.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Other specified hemorrhage in early pregnancy (640.8)\(640.81) Other specified hemorrhage in early pregnancy, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''640.81''', NULL,
+ '(640.81) Other specified hemorrhage in early pregnancy, delivered, with or without mention of antepartum condition', '(640.81) Other specified hemorrhage in early pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Other specified hemorrhage in early pregnancy (640.8)\(640.83) Other specified hemorrhage in early pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Other specified hemorrhage in early pregnancy (640.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Other specified hemorrhage in early pregnancy (640.8)\(640.83) Other specified hemorrhage in early pregnancy, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''640.83''', NULL,
+ '(640.83) Other specified hemorrhage in early pregnancy, antepartum condition or complication', '(640.83) Other specified hemorrhage in early pregnancy, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Threatened abortion (640.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Threatened abortion (640.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''640.0''', NULL,
+ 'Threatened abortion (640.0)', 'Threatened abortion (640.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Threatened abortion (640.0)\(640.00) Threatened abortion, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Threatened abortion (640.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Threatened abortion (640.0)\(640.00) Threatened abortion, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''640.00''', NULL,
+ '(640.00) Threatened abortion, unspecified as to episode of care or not applicable', '(640.00) Threatened abortion, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Threatened abortion (640.0)\(640.01) Threatened abortion, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Threatened abortion (640.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Threatened abortion (640.0)\(640.01) Threatened abortion, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''640.01''', NULL,
+ '(640.01) Threatened abortion, delivered, with or without mention of antepartum condition', '(640.01) Threatened abortion, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Threatened abortion (640.0)\(640.03) Threatened abortion, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Threatened abortion (640.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Threatened abortion (640.0)\(640.03) Threatened abortion, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''640.03''', NULL,
+ '(640.03) Threatened abortion, antepartum condition or complication', '(640.03) Threatened abortion, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Unspecified hemorrhage in early pregnancy (640.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Unspecified hemorrhage in early pregnancy (640.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''640.9''', NULL,
+ 'Unspecified hemorrhage in early pregnancy (640.9)', 'Unspecified hemorrhage in early pregnancy (640.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Unspecified hemorrhage in early pregnancy (640.9)\(640.90) Unspecified hemorrhage in early pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Unspecified hemorrhage in early pregnancy (640.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Unspecified hemorrhage in early pregnancy (640.9)\(640.90) Unspecified hemorrhage in early pregnancy, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''640.90''', NULL,
+ '(640.90) Unspecified hemorrhage in early pregnancy, unspecified as to episode of care or not applicable', '(640.90) Unspecified hemorrhage in early pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Unspecified hemorrhage in early pregnancy (640.9)\(640.91) Unspecified hemorrhage in early pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Unspecified hemorrhage in early pregnancy (640.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Unspecified hemorrhage in early pregnancy (640.9)\(640.91) Unspecified hemorrhage in early pregnancy, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''640.91''', NULL,
+ '(640.91) Unspecified hemorrhage in early pregnancy, delivered, with or without mention of antepartum condition', '(640.91) Unspecified hemorrhage in early pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Unspecified hemorrhage in early pregnancy (640.9)\(640.93) Unspecified hemorrhage in early pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Unspecified hemorrhage in early pregnancy (640.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hemorrhage in early pregnancy (640)\Unspecified hemorrhage in early pregnancy (640.9)\(640.93) Unspecified hemorrhage in early pregnancy, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''640.93''', NULL,
+ '(640.93) Unspecified hemorrhage in early pregnancy, antepartum condition or complication', '(640.93) Unspecified hemorrhage in early pregnancy, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642''', NULL,
+ 'Hypertension complicating pregnancy, childbirth, and the puerperium (642)', 'Hypertension complicating pregnancy, childbirth, and the puerperium (642)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.0''', NULL,
+ 'Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)', 'Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\(642.00) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\(642.00) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.00''', NULL,
+ '(642.00) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable', '(642.00) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\(642.01) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\(642.01) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.01''', NULL,
+ '(642.01) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition', '(642.01) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\(642.02) Benign essential hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\(642.02) Benign essential hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.02''', NULL,
+ '(642.02) Benign essential hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication', '(642.02) Benign essential hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\(642.03) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\(642.03) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.03''', NULL,
+ '(642.03) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication', '(642.03) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\(642.04) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Benign essential hypertension complicating pregnancy, childbirth, and the puerperium (642.0)\(642.04) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.04''', NULL,
+ '(642.04) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, postpartum condition or complication', '(642.04) Benign essential hypertension complicating pregnancy, childbirth, and the puerperium, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.6''', NULL,
+ 'Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)', 'Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\(642.60) Eclampsia, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\(642.60) Eclampsia, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.60''', NULL,
+ '(642.60) Eclampsia, unspecified as to episode of care or not applicable', '(642.60) Eclampsia, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\(642.61) Eclampsia, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\(642.61) Eclampsia, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.61''', NULL,
+ '(642.61) Eclampsia, delivered, with or without mention of antepartum condition', '(642.61) Eclampsia, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\(642.62) Eclampsia, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\(642.62) Eclampsia, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.62''', NULL,
+ '(642.62) Eclampsia, delivered, with mention of postpartum complication', '(642.62) Eclampsia, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\(642.63) Eclampsia, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\(642.63) Eclampsia, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.63''', NULL,
+ '(642.63) Eclampsia, antepartum condition or complication', '(642.63) Eclampsia, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\(642.64) Eclampsia, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Eclampsia complicating pregnancy, childbirth or the puerperium (642.6)\(642.64) Eclampsia, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.64''', NULL,
+ '(642.64) Eclampsia, postpartum condition or complication', '(642.64) Eclampsia, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.1''', NULL,
+ 'Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)', 'Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\(642.10) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\(642.10) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.10''', NULL,
+ '(642.10) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable', '(642.10) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\(642.11) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\(642.11) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.11''', NULL,
+ '(642.11) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition', '(642.11) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\(642.12) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\(642.12) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.12''', NULL,
+ '(642.12) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication', '(642.12) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\(642.13) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\(642.13) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.13''', NULL,
+ '(642.13) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication', '(642.13) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\(642.14) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium (642.1)\(642.14) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.14''', NULL,
+ '(642.14) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, postpartum condition or complication', '(642.14) Hypertension secondary to renal disease, complicating pregnancy, childbirth, and the puerperium, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.4''', NULL,
+ 'Mild or unspecified pre-eclampsia (642.4)', 'Mild or unspecified pre-eclampsia (642.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\(642.40) Mild or unspecified pre-eclampsia, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\(642.40) Mild or unspecified pre-eclampsia, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.40''', NULL,
+ '(642.40) Mild or unspecified pre-eclampsia, unspecified as to episode of care or not applicable', '(642.40) Mild or unspecified pre-eclampsia, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\(642.41) Mild or unspecified pre-eclampsia, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\(642.41) Mild or unspecified pre-eclampsia, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.41''', NULL,
+ '(642.41) Mild or unspecified pre-eclampsia, delivered, with or without mention of antepartum condition', '(642.41) Mild or unspecified pre-eclampsia, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\(642.42) Mild or unspecified pre-eclampsia, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\(642.42) Mild or unspecified pre-eclampsia, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.42''', NULL,
+ '(642.42) Mild or unspecified pre-eclampsia, delivered, with mention of postpartum complication', '(642.42) Mild or unspecified pre-eclampsia, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\(642.43) Mild or unspecified pre-eclampsia, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\(642.43) Mild or unspecified pre-eclampsia, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.43''', NULL,
+ '(642.43) Mild or unspecified pre-eclampsia, antepartum condition or complication', '(642.43) Mild or unspecified pre-eclampsia, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\(642.44) Mild or unspecified pre-eclampsia, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Mild or unspecified pre-eclampsia (642.4)\(642.44) Mild or unspecified pre-eclampsia, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.44''', NULL,
+ '(642.44) Mild or unspecified pre-eclampsia, postpartum condition or complication', '(642.44) Mild or unspecified pre-eclampsia, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.2''', NULL,
+ 'Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)', 'Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\(642.20) Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\(642.20) Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.20''', NULL,
+ '(642.20) Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable', '(642.20) Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\(642.21) Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\(642.21) Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.21''', NULL,
+ '(642.21) Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition', '(642.21) Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\(642.22) Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\(642.22) Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.22''', NULL,
+ '(642.22) Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication', '(642.22) Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\(642.23) Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\(642.23) Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.23''', NULL,
+ '(642.23) Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication', '(642.23) Other pre-existing hypertension, complicating pregnancy, childbirth, and the puerperium, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\(642.24) Other pre-existing hypertension,complicating pregnancy, childbirth, and the puerperium, , postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Other pre-existing hypertension complicating pregnancy, childbirth, and the puerperium (642.2)\(642.24) Other pre-existing hypertension,complicating pregnancy, childbirth, and the puerperium, , postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.24''', NULL,
+ '(642.24) Other pre-existing hypertension,complicating pregnancy, childbirth, and the puerperium, , postpartum condition or complication', '(642.24) Other pre-existing hypertension,complicating pregnancy, childbirth, and the puerperium, , postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.7''', NULL,
+ 'Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)', 'Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\(642.70) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\(642.70) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.70''', NULL,
+ '(642.70) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, unspecified as to episode of care or not applicable', '(642.70) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\(642.71) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\(642.71) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.71''', NULL,
+ '(642.71) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, delivered, with or without mention of antepartum condition', '(642.71) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\(642.72) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\(642.72) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.72''', NULL,
+ '(642.72) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, delivered, with mention of postpartum complication', '(642.72) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\(642.73) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\(642.73) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.73''', NULL,
+ '(642.73) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, antepartum condition or complication', '(642.73) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\(642.74) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Pre-eclampsia or eclampsia superimposed on pre-existing hypertension (642.7)\(642.74) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.74''', NULL,
+ '(642.74) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, postpartum condition or complication', '(642.74) Pre-eclampsia or eclampsia superimposed on pre-existing hypertension, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.5''', NULL,
+ 'Severe pre-eclampsia (642.5)', 'Severe pre-eclampsia (642.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\(642.50) Severe pre-eclampsia, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\(642.50) Severe pre-eclampsia, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.50''', NULL,
+ '(642.50) Severe pre-eclampsia, unspecified as to episode of care or not applicable', '(642.50) Severe pre-eclampsia, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\(642.51) Severe pre-eclampsia, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\(642.51) Severe pre-eclampsia, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.51''', NULL,
+ '(642.51) Severe pre-eclampsia, delivered, with or without mention of antepartum condition', '(642.51) Severe pre-eclampsia, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\(642.52) Severe pre-eclampsia, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\(642.52) Severe pre-eclampsia, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.52''', NULL,
+ '(642.52) Severe pre-eclampsia, delivered, with mention of postpartum complication', '(642.52) Severe pre-eclampsia, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\(642.53) Severe pre-eclampsia, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\(642.53) Severe pre-eclampsia, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.53''', NULL,
+ '(642.53) Severe pre-eclampsia, antepartum condition or complication', '(642.53) Severe pre-eclampsia, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\(642.54) Severe pre-eclampsia, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Severe pre-eclampsia (642.5)\(642.54) Severe pre-eclampsia, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.54''', NULL,
+ '(642.54) Severe pre-eclampsia, postpartum condition or complication', '(642.54) Severe pre-eclampsia, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.3''', NULL,
+ 'Transient hypertension of pregnancy (642.3)', 'Transient hypertension of pregnancy (642.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\(642.30) Transient hypertension of pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\(642.30) Transient hypertension of pregnancy, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.30''', NULL,
+ '(642.30) Transient hypertension of pregnancy, unspecified as to episode of care or not applicable', '(642.30) Transient hypertension of pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\(642.31) Transient hypertension of pregnancy, delivered , with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\(642.31) Transient hypertension of pregnancy, delivered , with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.31''', NULL,
+ '(642.31) Transient hypertension of pregnancy, delivered , with or without mention of antepartum condition', '(642.31) Transient hypertension of pregnancy, delivered , with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\(642.32) Transient hypertension of pregnancy, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\(642.32) Transient hypertension of pregnancy, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.32''', NULL,
+ '(642.32) Transient hypertension of pregnancy, delivered, with mention of postpartum complication', '(642.32) Transient hypertension of pregnancy, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\(642.33) Transient hypertension of pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\(642.33) Transient hypertension of pregnancy, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.33''', NULL,
+ '(642.33) Transient hypertension of pregnancy, antepartum condition or complication', '(642.33) Transient hypertension of pregnancy, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\(642.34) Transient hypertension of pregnancy, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Transient hypertension of pregnancy (642.3)\(642.34) Transient hypertension of pregnancy, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.34''', NULL,
+ '(642.34) Transient hypertension of pregnancy, postpartum condition or complication', '(642.34) Transient hypertension of pregnancy, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.9''', NULL,
+ 'Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)', 'Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\(642.90) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\(642.90) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.90''', NULL,
+ '(642.90) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', '(642.90) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\(642.91) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\(642.91) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.91''', NULL,
+ '(642.91) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', '(642.91) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\(642.92) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\(642.92) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.92''', NULL,
+ '(642.92) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', '(642.92) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\(642.93) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\(642.93) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.93''', NULL,
+ '(642.93) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', '(642.93) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\(642.94) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Hypertension complicating pregnancy, childbirth, and the puerperium (642)\Unspecified hypertension complicating pregnancy, childbirth, or the puerperium (642.9)\(642.94) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''642.94''', NULL,
+ '(642.94) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', '(642.94) Unspecified hypertension complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647''', NULL,
+ 'Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)', 'Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.1''', NULL,
+ 'Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)', 'Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\(647.10) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\(647.10) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.10''', NULL,
+ '(647.10) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', '(647.10) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\(647.11) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\(647.11) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.11''', NULL,
+ '(647.11) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', '(647.11) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\(647.12) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\(647.12) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.12''', NULL,
+ '(647.12) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', '(647.12) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\(647.13) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\(647.13) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.13''', NULL,
+ '(647.13) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', '(647.13) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\(647.14) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Gonorrhea complicating pregnancy, childbirth, or the puerperium (647.1)\(647.14) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.14''', NULL,
+ '(647.14) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', '(647.14) Gonorrhea of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.4''', NULL,
+ 'Malaria complicating pregnancy, childbirth, or the puerperium (647.4)', 'Malaria complicating pregnancy, childbirth, or the puerperium (647.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\(647.40) Malaria in the mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\(647.40) Malaria in the mother, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.40''', NULL,
+ '(647.40) Malaria in the mother, unspecified as to episode of care or not applicable', '(647.40) Malaria in the mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\(647.41) Malaria in the mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\(647.41) Malaria in the mother, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.41''', NULL,
+ '(647.41) Malaria in the mother, delivered, with or without mention of antepartum condition', '(647.41) Malaria in the mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\(647.42) Malaria in the mother, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\(647.42) Malaria in the mother, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.42''', NULL,
+ '(647.42) Malaria in the mother, delivered, with mention of postpartum complication', '(647.42) Malaria in the mother, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\(647.43) Malaria in the mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\(647.43) Malaria in the mother, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.43''', NULL,
+ '(647.43) Malaria in the mother, antepartum condition or complication', '(647.43) Malaria in the mother, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\(647.44) Malaria in the mother, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Malaria complicating pregnancy, childbirth, or the puerperium (647.4)\(647.44) Malaria in the mother, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.44''', NULL,
+ '(647.44) Malaria in the mother, postpartum condition or complication', '(647.44) Malaria in the mother, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.8''', NULL,
+ 'Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)', 'Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\(647.80) Other specified infectious and parasitic diseases of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\(647.80) Other specified infectious and parasitic diseases of mother, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.80''', NULL,
+ '(647.80) Other specified infectious and parasitic diseases of mother, unspecified as to episode of care or not applicable', '(647.80) Other specified infectious and parasitic diseases of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\(647.81) Other specified infectious and parasitic diseases of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\(647.81) Other specified infectious and parasitic diseases of mother, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.81''', NULL,
+ '(647.81) Other specified infectious and parasitic diseases of mother, delivered, with or without mention of antepartum condition', '(647.81) Other specified infectious and parasitic diseases of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\(647.82) Other specified infectious and parasitic diseases of mother, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\(647.82) Other specified infectious and parasitic diseases of mother, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.82''', NULL,
+ '(647.82) Other specified infectious and parasitic diseases of mother, delivered, with mention of postpartum complication', '(647.82) Other specified infectious and parasitic diseases of mother, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\(647.83) Other specified infectious and parasitic diseases of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\(647.83) Other specified infectious and parasitic diseases of mother, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.83''', NULL,
+ '(647.83) Other specified infectious and parasitic diseases of mother, antepartum condition or complication', '(647.83) Other specified infectious and parasitic diseases of mother, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\(647.84) Other specified infectious and parasitic diseases of mother, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other specified infectious and parasitic diseases complicating pregnancy, childbirth, or the puerperium (647.8)\(647.84) Other specified infectious and parasitic diseases of mother, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.84''', NULL,
+ '(647.84) Other specified infectious and parasitic diseases of mother, postpartum condition or complication', '(647.84) Other specified infectious and parasitic diseases of mother, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.2''', NULL,
+ 'Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)', 'Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\(647.20) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\(647.20) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.20''', NULL,
+ '(647.20) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', '(647.20) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\(647.21) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\(647.21) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.21''', NULL,
+ '(647.21) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', '(647.21) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\(647.22) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\(647.22) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.22''', NULL,
+ '(647.22) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', '(647.22) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\(647.23) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\(647.23) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.23''', NULL,
+ '(647.23) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', '(647.23) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\(647.24) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium,postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other venereal diseases in the mother complicating pregnancy, childbirth, or the puerperium (647.2)\(647.24) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium,postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.24''', NULL,
+ '(647.24) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium,postpartum condition or complication', '(647.24) Other venereal diseases of mother, complicating pregnancy, childbirth, or the puerperium,postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.6''', NULL,
+ 'Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)', 'Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\(647.60) Other viral diseases in the mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\(647.60) Other viral diseases in the mother, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.60''', NULL,
+ '(647.60) Other viral diseases in the mother, unspecified as to episode of care or not applicable', '(647.60) Other viral diseases in the mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\(647.61) Other viral diseases in the mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\(647.61) Other viral diseases in the mother, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.61''', NULL,
+ '(647.61) Other viral diseases in the mother, delivered, with or without mention of antepartum condition', '(647.61) Other viral diseases in the mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\(647.62) Other viral diseases in the mother, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\(647.62) Other viral diseases in the mother, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.62''', NULL,
+ '(647.62) Other viral diseases in the mother, delivered, with mention of postpartum complication', '(647.62) Other viral diseases in the mother, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\(647.63) Other viral diseases in the mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\(647.63) Other viral diseases in the mother, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.63''', NULL,
+ '(647.63) Other viral diseases in the mother, antepartum condition or complication', '(647.63) Other viral diseases in the mother, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\(647.64) Other viral diseases in the mother, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Other viral diseases complicating pregnancy, childbirth, or the puerperium (647.6)\(647.64) Other viral diseases in the mother, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.64''', NULL,
+ '(647.64) Other viral diseases in the mother, postpartum condition or complication', '(647.64) Other viral diseases in the mother, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.5''', NULL,
+ 'Rubella complicating pregnancy, childbirth, or the puerperium (647.5)', 'Rubella complicating pregnancy, childbirth, or the puerperium (647.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\(647.50) Rubella in the mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\(647.50) Rubella in the mother, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.50''', NULL,
+ '(647.50) Rubella in the mother, unspecified as to episode of care or not applicable', '(647.50) Rubella in the mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\(647.51) Rubella in the mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\(647.51) Rubella in the mother, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.51''', NULL,
+ '(647.51) Rubella in the mother, delivered, with or without mention of antepartum condition', '(647.51) Rubella in the mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\(647.52) Rubella in the mother, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\(647.52) Rubella in the mother, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.52''', NULL,
+ '(647.52) Rubella in the mother, delivered, with mention of postpartum complication', '(647.52) Rubella in the mother, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\(647.53) Rubella in the mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\(647.53) Rubella in the mother, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.53''', NULL,
+ '(647.53) Rubella in the mother, antepartum condition or complication', '(647.53) Rubella in the mother, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\(647.54) Rubella in the mother, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Rubella complicating pregnancy, childbirth, or the puerperium (647.5)\(647.54) Rubella in the mother, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.54''', NULL,
+ '(647.54) Rubella in the mother, postpartum condition or complication', '(647.54) Rubella in the mother, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.0''', NULL,
+ 'Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)', 'Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\(647.00) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\(647.00) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.00''', NULL,
+ '(647.00) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', '(647.00) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\(647.01) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\(647.01) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.01''', NULL,
+ '(647.01) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', '(647.01) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\(647.02) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\(647.02) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.02''', NULL,
+ '(647.02) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', '(647.02) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\(647.03) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\(647.03) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.03''', NULL,
+ '(647.03) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', '(647.03) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\(647.04) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Syphilis complicating pregnancy, childbirth, or the puerperium (647.0)\(647.04) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.04''', NULL,
+ '(647.04) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', '(647.04) Syphilis of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.3''', NULL,
+ 'Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)', 'Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\(647.30) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\(647.30) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.30''', NULL,
+ '(647.30) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', '(647.30) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\(647.31) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\(647.31) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.31''', NULL,
+ '(647.31) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', '(647.31) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\(647.32) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\(647.32) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.32''', NULL,
+ '(647.32) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', '(647.32) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\(647.33) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\(647.33) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.33''', NULL,
+ '(647.33) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', '(647.33) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\(647.34) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium,postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Tuberculosis complicating pregnancy, childbirth, or the puerperium (647.3)\(647.34) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium,postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.34''', NULL,
+ '(647.34) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium,postpartum condition or complication', '(647.34) Tuberculosis of mother, complicating pregnancy, childbirth, or the puerperium,postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.9''', NULL,
+ 'Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)', 'Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\(647.90) Unspecified infection or infestation of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\(647.90) Unspecified infection or infestation of mother, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.90''', NULL,
+ '(647.90) Unspecified infection or infestation of mother, unspecified as to episode of care or not applicable', '(647.90) Unspecified infection or infestation of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\(647.91) Unspecified infection or infestation of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\(647.91) Unspecified infection or infestation of mother, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.91''', NULL,
+ '(647.91) Unspecified infection or infestation of mother, delivered, with or without mention of antepartum condition', '(647.91) Unspecified infection or infestation of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\(647.92) Unspecified infection or infestation of mother, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\(647.92) Unspecified infection or infestation of mother, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.92''', NULL,
+ '(647.92) Unspecified infection or infestation of mother, delivered, with mention of postpartum complication', '(647.92) Unspecified infection or infestation of mother, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\(647.93) Unspecified infection or infestation of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\(647.93) Unspecified infection or infestation of mother, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.93''', NULL,
+ '(647.93) Unspecified infection or infestation of mother, antepartum condition or complication', '(647.93) Unspecified infection or infestation of mother, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\(647.94) Unspecified infection or infestation of mother, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Infectious and parasitic conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (647)\Unspecified infection or infestation complicating pregnancy, childbirth, or the puerperium (647.9)\(647.94) Unspecified infection or infestation of mother, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''647.94''', NULL,
+ '(647.94) Unspecified infection or infestation of mother, postpartum condition or complication', '(647.94) Unspecified infection or infestation of mother, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''645''', NULL,
+ 'Late pregnancy (645)', 'Late pregnancy (645)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Post term pregnancy (645.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Post term pregnancy (645.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''645.1''', NULL,
+ 'Post term pregnancy (645.1)', 'Post term pregnancy (645.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Post term pregnancy (645.1)\(645.10) Post term pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Post term pregnancy (645.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Post term pregnancy (645.1)\(645.10) Post term pregnancy, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''645.10''', NULL,
+ '(645.10) Post term pregnancy, unspecified as to episode of care or not applicable', '(645.10) Post term pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Post term pregnancy (645.1)\(645.11) Post term pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Post term pregnancy (645.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Post term pregnancy (645.1)\(645.11) Post term pregnancy, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''645.11''', NULL,
+ '(645.11) Post term pregnancy, delivered, with or without mention of antepartum condition', '(645.11) Post term pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Post term pregnancy (645.1)\(645.13) Post term pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Post term pregnancy (645.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Post term pregnancy (645.1)\(645.13) Post term pregnancy, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''645.13''', NULL,
+ '(645.13) Post term pregnancy, antepartum condition or complication', '(645.13) Post term pregnancy, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Prolonged pregnancy (645.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Prolonged pregnancy (645.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''645.2''', NULL,
+ 'Prolonged pregnancy (645.2)', 'Prolonged pregnancy (645.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Prolonged pregnancy (645.2)\(645.20) Prolonged pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Prolonged pregnancy (645.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Prolonged pregnancy (645.2)\(645.20) Prolonged pregnancy, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''645.20''', NULL,
+ '(645.20) Prolonged pregnancy, unspecified as to episode of care or not applicable', '(645.20) Prolonged pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Prolonged pregnancy (645.2)\(645.21) Prolonged pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Prolonged pregnancy (645.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Prolonged pregnancy (645.2)\(645.21) Prolonged pregnancy, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''645.21''', NULL,
+ '(645.21) Prolonged pregnancy, delivered, with or without mention of antepartum condition', '(645.21) Prolonged pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Prolonged pregnancy (645.2)\(645.23) Prolonged pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Prolonged pregnancy (645.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Late pregnancy (645)\Prolonged pregnancy (645.2)\(645.23) Prolonged pregnancy, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''645.23''', NULL,
+ '(645.23) Prolonged pregnancy, antepartum condition or complication', '(645.23) Prolonged pregnancy, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646''', NULL,
+ 'Other complications of pregnancy, not elsewhere classified (646)', 'Other complications of pregnancy, not elsewhere classified (646)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.5''', NULL,
+ 'Asymptomatic bacteriuria in pregnancy (646.5)', 'Asymptomatic bacteriuria in pregnancy (646.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\(646.50) Asymptomatic bacteriuria in pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\(646.50) Asymptomatic bacteriuria in pregnancy, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.50''', NULL,
+ '(646.50) Asymptomatic bacteriuria in pregnancy, unspecified as to episode of care or not applicable', '(646.50) Asymptomatic bacteriuria in pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\(646.51) Asymptomatic bacteriuria in pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\(646.51) Asymptomatic bacteriuria in pregnancy, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.51''', NULL,
+ '(646.51) Asymptomatic bacteriuria in pregnancy, delivered, with or without mention of antepartum condition', '(646.51) Asymptomatic bacteriuria in pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\(646.52) Asymptomatic bacteriuria in pregnancy, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\(646.52) Asymptomatic bacteriuria in pregnancy, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.52''', NULL,
+ '(646.52) Asymptomatic bacteriuria in pregnancy, delivered, with mention of postpartum complication', '(646.52) Asymptomatic bacteriuria in pregnancy, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\(646.53) Asymptomatic bacteriuria in pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\(646.53) Asymptomatic bacteriuria in pregnancy, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.53''', NULL,
+ '(646.53) Asymptomatic bacteriuria in pregnancy, antepartum condition or complication', '(646.53) Asymptomatic bacteriuria in pregnancy, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\(646.54) Asymptomatic bacteriuria in pregnancy, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Asymptomatic bacteriuria in pregnancy (646.5)\(646.54) Asymptomatic bacteriuria in pregnancy, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.54''', NULL,
+ '(646.54) Asymptomatic bacteriuria in pregnancy, postpartum condition or complication', '(646.54) Asymptomatic bacteriuria in pregnancy, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.1''', NULL,
+ 'Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)', 'Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\(646.10) Edema or excessive weight gain in pregnancy, without mention of hypertension, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\(646.10) Edema or excessive weight gain in pregnancy, without mention of hypertension, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.10''', NULL,
+ '(646.10) Edema or excessive weight gain in pregnancy, without mention of hypertension, unspecified as to episode of care or not applicable', '(646.10) Edema or excessive weight gain in pregnancy, without mention of hypertension, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\(646.11) Edema or excessive weight gain in pregnancy, without mention of hypertension, delivered, with or without mention of antepartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\(646.11) Edema or excessive weight gain in pregnancy, without mention of hypertension, delivered, with or without mention of antepartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.11''', NULL,
+ '(646.11) Edema or excessive weight gain in pregnancy, without mention of hypertension, delivered, with or without mention of antepartum complication', '(646.11) Edema or excessive weight gain in pregnancy, without mention of hypertension, delivered, with or without mention of antepartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\(646.12) Edema or excessive weight gain in pregnancy, without mention of hypertension, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\(646.12) Edema or excessive weight gain in pregnancy, without mention of hypertension, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.12''', NULL,
+ '(646.12) Edema or excessive weight gain in pregnancy, without mention of hypertension, delivered, with mention of postpartum complication', '(646.12) Edema or excessive weight gain in pregnancy, without mention of hypertension, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\(646.13) Edema or excessive weight gain in pregnancy, without mention of hypertension, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\(646.13) Edema or excessive weight gain in pregnancy, without mention of hypertension, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.13''', NULL,
+ '(646.13) Edema or excessive weight gain in pregnancy, without mention of hypertension, antepartum condition or complication', '(646.13) Edema or excessive weight gain in pregnancy, without mention of hypertension, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\(646.14) Edema or excessive weight gain in pregnancy, without mention of hypertension, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Edema or excessive weight gain in pregnancy, without mention of hypertension (646.1)\(646.14) Edema or excessive weight gain in pregnancy, without mention of hypertension, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.14''', NULL,
+ '(646.14) Edema or excessive weight gain in pregnancy, without mention of hypertension, postpartum condition or complication', '(646.14) Edema or excessive weight gain in pregnancy, without mention of hypertension, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.6''', NULL,
+ 'Infections of genitourinary tract in pregnancy (646.6)', 'Infections of genitourinary tract in pregnancy (646.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\(646.60) Infections of genitourinary tract in pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\(646.60) Infections of genitourinary tract in pregnancy, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.60''', NULL,
+ '(646.60) Infections of genitourinary tract in pregnancy, unspecified as to episode of care or not applicable', '(646.60) Infections of genitourinary tract in pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\(646.61) Infections of genitourinary tract in pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\(646.61) Infections of genitourinary tract in pregnancy, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.61''', NULL,
+ '(646.61) Infections of genitourinary tract in pregnancy, delivered, with or without mention of antepartum condition', '(646.61) Infections of genitourinary tract in pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\(646.62) Infections of genitourinary tract in pregnancy, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\(646.62) Infections of genitourinary tract in pregnancy, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.62''', NULL,
+ '(646.62) Infections of genitourinary tract in pregnancy, delivered, with mention of postpartum complication', '(646.62) Infections of genitourinary tract in pregnancy, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\(646.63) Infections of genitourinary tract in pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\(646.63) Infections of genitourinary tract in pregnancy, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.63''', NULL,
+ '(646.63) Infections of genitourinary tract in pregnancy, antepartum condition or complication', '(646.63) Infections of genitourinary tract in pregnancy, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\(646.64) Infections of genitourinary tract in pregnancy, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Infections of genitourinary tract in pregnancy (646.6)\(646.64) Infections of genitourinary tract in pregnancy, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.64''', NULL,
+ '(646.64) Infections of genitourinary tract in pregnancy, postpartum condition or complication', '(646.64) Infections of genitourinary tract in pregnancy, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Liver and biliary tract disorders in pregnancy (646.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Liver and biliary tract disorders in pregnancy (646.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.7''', NULL,
+ 'Liver and biliary tract disorders in pregnancy (646.7)', 'Liver and biliary tract disorders in pregnancy (646.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Liver and biliary tract disorders in pregnancy (646.7)\(646.70) Liver and biliary tract disorders in pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Liver and biliary tract disorders in pregnancy (646.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Liver and biliary tract disorders in pregnancy (646.7)\(646.70) Liver and biliary tract disorders in pregnancy, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.70''', NULL,
+ '(646.70) Liver and biliary tract disorders in pregnancy, unspecified as to episode of care or not applicable', '(646.70) Liver and biliary tract disorders in pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Liver and biliary tract disorders in pregnancy (646.7)\(646.71) Liver and biliary tract disorders in pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Liver and biliary tract disorders in pregnancy (646.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Liver and biliary tract disorders in pregnancy (646.7)\(646.71) Liver and biliary tract disorders in pregnancy, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.71''', NULL,
+ '(646.71) Liver and biliary tract disorders in pregnancy, delivered, with or without mention of antepartum condition', '(646.71) Liver and biliary tract disorders in pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Liver and biliary tract disorders in pregnancy (646.7)\(646.73) Liver and biliary tract disorders in pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Liver and biliary tract disorders in pregnancy (646.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Liver and biliary tract disorders in pregnancy (646.7)\(646.73) Liver and biliary tract disorders in pregnancy, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.73''', NULL,
+ '(646.73) Liver and biliary tract disorders in pregnancy, antepartum condition or complication', '(646.73) Liver and biliary tract disorders in pregnancy, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.8''', NULL,
+ 'Other specified complications of pregnancy (646.8)', 'Other specified complications of pregnancy (646.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\(646.80) Other specified complications of pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\(646.80) Other specified complications of pregnancy, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.80''', NULL,
+ '(646.80) Other specified complications of pregnancy, unspecified as to episode of care or not applicable', '(646.80) Other specified complications of pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\(646.81) Other specified complications of pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\(646.81) Other specified complications of pregnancy, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.81''', NULL,
+ '(646.81) Other specified complications of pregnancy, delivered, with or without mention of antepartum condition', '(646.81) Other specified complications of pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\(646.82) Other specified complications of pregnancy, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\(646.82) Other specified complications of pregnancy, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.82''', NULL,
+ '(646.82) Other specified complications of pregnancy, delivered, with mention of postpartum complication', '(646.82) Other specified complications of pregnancy, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\(646.83) Other specified complications of pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\(646.83) Other specified complications of pregnancy, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.83''', NULL,
+ '(646.83) Other specified complications of pregnancy, antepartum condition or complication', '(646.83) Other specified complications of pregnancy, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\(646.84) Other specified complications of pregnancy, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Other specified complications of pregnancy (646.8)\(646.84) Other specified complications of pregnancy, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.84''', NULL,
+ '(646.84) Other specified complications of pregnancy, postpartum condition or complication', '(646.84) Other specified complications of pregnancy, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Papyraceous fetus (646.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Papyraceous fetus (646.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.0''', NULL,
+ 'Papyraceous fetus (646.0)', 'Papyraceous fetus (646.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Papyraceous fetus (646.0)\(646.00) Papyraceous fetus, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Papyraceous fetus (646.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Papyraceous fetus (646.0)\(646.00) Papyraceous fetus, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.00''', NULL,
+ '(646.00) Papyraceous fetus, unspecified as to episode of care or not applicable', '(646.00) Papyraceous fetus, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Papyraceous fetus (646.0)\(646.01) Papyraceous fetus, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Papyraceous fetus (646.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Papyraceous fetus (646.0)\(646.01) Papyraceous fetus, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.01''', NULL,
+ '(646.01) Papyraceous fetus, delivered, with or without mention of antepartum condition', '(646.01) Papyraceous fetus, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Papyraceous fetus (646.0)\(646.03) Papyraceous fetus, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Papyraceous fetus (646.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Papyraceous fetus (646.0)\(646.03) Papyraceous fetus, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.03''', NULL,
+ '(646.03) Papyraceous fetus, antepartum condition or complication', '(646.03) Papyraceous fetus, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.4''', NULL,
+ 'Peripheral neuritis in pregnancy (646.4)', 'Peripheral neuritis in pregnancy (646.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\(646.40) Peripheral neuritis in pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\(646.40) Peripheral neuritis in pregnancy, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.40''', NULL,
+ '(646.40) Peripheral neuritis in pregnancy, unspecified as to episode of care or not applicable', '(646.40) Peripheral neuritis in pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\(646.41) Peripheral neuritis in pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\(646.41) Peripheral neuritis in pregnancy, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.41''', NULL,
+ '(646.41) Peripheral neuritis in pregnancy, delivered, with or without mention of antepartum condition', '(646.41) Peripheral neuritis in pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\(646.42) Peripheral neuritis in pregnancy, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\(646.42) Peripheral neuritis in pregnancy, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.42''', NULL,
+ '(646.42) Peripheral neuritis in pregnancy, delivered, with mention of postpartum complication', '(646.42) Peripheral neuritis in pregnancy, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\(646.43) Peripheral neuritis in pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\(646.43) Peripheral neuritis in pregnancy, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.43''', NULL,
+ '(646.43) Peripheral neuritis in pregnancy, antepartum condition or complication', '(646.43) Peripheral neuritis in pregnancy, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\(646.44) Peripheral neuritis in pregnancy, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Peripheral neuritis in pregnancy (646.4)\(646.44) Peripheral neuritis in pregnancy, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.44''', NULL,
+ '(646.44) Peripheral neuritis in pregnancy, postpartum condition or complication', '(646.44) Peripheral neuritis in pregnancy, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Recurrent pregnancy loss (646.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Recurrent pregnancy loss (646.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.3''', NULL,
+ 'Recurrent pregnancy loss (646.3)', 'Recurrent pregnancy loss (646.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Recurrent pregnancy loss (646.3)\(646.30) Recurrent pregnancy loss, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Recurrent pregnancy loss (646.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Recurrent pregnancy loss (646.3)\(646.30) Recurrent pregnancy loss, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.30''', NULL,
+ '(646.30) Recurrent pregnancy loss, unspecified as to episode of care or not applicable', '(646.30) Recurrent pregnancy loss, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Recurrent pregnancy loss (646.3)\(646.31) Recurrent pregnancy loss, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Recurrent pregnancy loss (646.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Recurrent pregnancy loss (646.3)\(646.31) Recurrent pregnancy loss, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.31''', NULL,
+ '(646.31) Recurrent pregnancy loss, delivered, with or without mention of antepartum condition', '(646.31) Recurrent pregnancy loss, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Recurrent pregnancy loss (646.3)\(646.33) Recurrent pregnancy loss, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Recurrent pregnancy loss (646.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Recurrent pregnancy loss (646.3)\(646.33) Recurrent pregnancy loss, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.33''', NULL,
+ '(646.33) Recurrent pregnancy loss, antepartum condition or complication', '(646.33) Recurrent pregnancy loss, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified complication of pregnancy (646.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified complication of pregnancy (646.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.9''', NULL,
+ 'Unspecified complication of pregnancy (646.9)', 'Unspecified complication of pregnancy (646.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified complication of pregnancy (646.9)\(646.90) Unspecified complication of pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified complication of pregnancy (646.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified complication of pregnancy (646.9)\(646.90) Unspecified complication of pregnancy, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.90''', NULL,
+ '(646.90) Unspecified complication of pregnancy, unspecified as to episode of care or not applicable', '(646.90) Unspecified complication of pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified complication of pregnancy (646.9)\(646.91) Unspecified complication of pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified complication of pregnancy (646.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified complication of pregnancy (646.9)\(646.91) Unspecified complication of pregnancy, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.91''', NULL,
+ '(646.91) Unspecified complication of pregnancy, delivered, with or without mention of antepartum condition', '(646.91) Unspecified complication of pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified complication of pregnancy (646.9)\(646.93) Unspecified complication of pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified complication of pregnancy (646.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified complication of pregnancy (646.9)\(646.93) Unspecified complication of pregnancy, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.93''', NULL,
+ '(646.93) Unspecified complication of pregnancy, antepartum condition or complication', '(646.93) Unspecified complication of pregnancy, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.2''', NULL,
+ 'Unspecified renal disease in pregnancy, without mention of hypertension (646.2)', 'Unspecified renal disease in pregnancy, without mention of hypertension (646.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\(646.20) Unspecified renal disease in pregnancy, without mention of hypertension, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\(646.20) Unspecified renal disease in pregnancy, without mention of hypertension, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.20''', NULL,
+ '(646.20) Unspecified renal disease in pregnancy, without mention of hypertension, unspecified as to episode of care or not applicable', '(646.20) Unspecified renal disease in pregnancy, without mention of hypertension, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\(646.21) Unspecified renal disease in pregnancy, without mention of hypertension, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\(646.21) Unspecified renal disease in pregnancy, without mention of hypertension, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.21''', NULL,
+ '(646.21) Unspecified renal disease in pregnancy, without mention of hypertension, delivered, with or without mention of antepartum condition', '(646.21) Unspecified renal disease in pregnancy, without mention of hypertension, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\(646.22) Unspecified renal disease in pregnancy, without mention of hypertension, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\(646.22) Unspecified renal disease in pregnancy, without mention of hypertension, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.22''', NULL,
+ '(646.22) Unspecified renal disease in pregnancy, without mention of hypertension, delivered, with mention of postpartum complication', '(646.22) Unspecified renal disease in pregnancy, without mention of hypertension, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\(646.23) Unspecified renal disease in pregnancy, without mention of hypertension, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\(646.23) Unspecified renal disease in pregnancy, without mention of hypertension, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.23''', NULL,
+ '(646.23) Unspecified renal disease in pregnancy, without mention of hypertension, antepartum condition or complication', '(646.23) Unspecified renal disease in pregnancy, without mention of hypertension, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\(646.24) Unspecified renal disease in pregnancy, without mention of hypertension, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other complications of pregnancy, not elsewhere classified (646)\Unspecified renal disease in pregnancy, without mention of hypertension (646.2)\(646.24) Unspecified renal disease in pregnancy, without mention of hypertension, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''646.24''', NULL,
+ '(646.24) Unspecified renal disease in pregnancy, without mention of hypertension, postpartum condition or complication', '(646.24) Unspecified renal disease in pregnancy, without mention of hypertension, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649''', NULL,
+ 'Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)', 'Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.2''', NULL,
+ 'Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)', 'Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\(649.20) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\(649.20) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.20''', NULL,
+ '(649.20) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', '(649.20) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\(649.21) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\(649.21) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.21''', NULL,
+ '(649.21) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', '(649.21) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\(649.22) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\(649.22) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.22''', NULL,
+ '(649.22) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', '(649.22) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\(649.23) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\(649.23) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.23''', NULL,
+ '(649.23) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', '(649.23) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\(649.24) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Bariatric surgery status complicating pregnancy, childbirth, or the puerperium (649.2)\(649.24) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.24''', NULL,
+ '(649.24) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', '(649.24) Bariatric surgery status complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Cervical shortening (649.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Cervical shortening (649.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.7''', NULL,
+ 'Cervical shortening (649.7)', 'Cervical shortening (649.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Cervical shortening (649.7)\(649.70) Cervical shortening, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Cervical shortening (649.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Cervical shortening (649.7)\(649.70) Cervical shortening, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.70''', NULL,
+ '(649.70) Cervical shortening, unspecified as to episode of care or not applicable', '(649.70) Cervical shortening, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Cervical shortening (649.7)\(649.71) Cervical shortening, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Cervical shortening (649.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Cervical shortening (649.7)\(649.71) Cervical shortening, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.71''', NULL,
+ '(649.71) Cervical shortening, delivered, with or without mention of antepartum condition', '(649.71) Cervical shortening, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Cervical shortening (649.7)\(649.73) Cervical shortening, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Cervical shortening (649.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Cervical shortening (649.7)\(649.73) Cervical shortening, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.73''', NULL,
+ '(649.73) Cervical shortening, antepartum condition or complication', '(649.73) Cervical shortening, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.3''', NULL,
+ 'Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)', 'Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\(649.30) Coagulation defects complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\(649.30) Coagulation defects complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.30''', NULL,
+ '(649.30) Coagulation defects complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', '(649.30) Coagulation defects complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\(649.31) Coagulation defects complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\(649.31) Coagulation defects complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.31''', NULL,
+ '(649.31) Coagulation defects complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', '(649.31) Coagulation defects complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\(649.32) Coagulation defects complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\(649.32) Coagulation defects complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.32''', NULL,
+ '(649.32) Coagulation defects complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', '(649.32) Coagulation defects complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\(649.33) Coagulation defects complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\(649.33) Coagulation defects complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.33''', NULL,
+ '(649.33) Coagulation defects complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', '(649.33) Coagulation defects complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\(649.34) Coagulation defects complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Coagulation defects complicating pregnancy, childbirth, or the puerperium (649.3)\(649.34) Coagulation defects complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.34''', NULL,
+ '(649.34) Coagulation defects complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', '(649.34) Coagulation defects complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.4''', NULL,
+ 'Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)', 'Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\(649.40) Epilepsy complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\(649.40) Epilepsy complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.40''', NULL,
+ '(649.40) Epilepsy complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', '(649.40) Epilepsy complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\(649.41) Epilepsy complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\(649.41) Epilepsy complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.41''', NULL,
+ '(649.41) Epilepsy complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', '(649.41) Epilepsy complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\(649.42) Epilepsy complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\(649.42) Epilepsy complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.42''', NULL,
+ '(649.42) Epilepsy complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', '(649.42) Epilepsy complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\(649.43) Epilepsy complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\(649.43) Epilepsy complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.43''', NULL,
+ '(649.43) Epilepsy complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', '(649.43) Epilepsy complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\(649.44) Epilepsy complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Epilepsy complicating pregnancy, childbirth, or the puerperium (649.4)\(649.44) Epilepsy complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.44''', NULL,
+ '(649.44) Epilepsy complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', '(649.44) Epilepsy complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.1''', NULL,
+ 'Obesity complicating pregnancy, childbirth, or the puerperium (649.1)', 'Obesity complicating pregnancy, childbirth, or the puerperium (649.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\(649.10) Obesity complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\(649.10) Obesity complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.10''', NULL,
+ '(649.10) Obesity complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', '(649.10) Obesity complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\(649.11) Obesity complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\(649.11) Obesity complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.11''', NULL,
+ '(649.11) Obesity complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', '(649.11) Obesity complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\(649.12) Obesity complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\(649.12) Obesity complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.12''', NULL,
+ '(649.12) Obesity complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', '(649.12) Obesity complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\(649.13) Obesity complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\(649.13) Obesity complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.13''', NULL,
+ '(649.13) Obesity complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', '(649.13) Obesity complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\(649.14) Obesity complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Obesity complicating pregnancy, childbirth, or the puerperium (649.1)\(649.14) Obesity complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.14''', NULL,
+ '(649.14) Obesity complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', '(649.14) Obesity complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section (649.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section (649.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section (649.8''', NULL,
+ 'Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section (649.8)', 'Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section (649.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section (649.8)\(649.81) Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section (649.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section (649.8)\(649.81) Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.81) Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned''', NULL,
+ '(649.81) Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section, delivered, with or without mention of antepartum condition', '(649.81) Onset (spontaneous) of labor after 37 completed weeks of gestation but before 39 completed weeks gestation, with delivery by (planned) cesarean section, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Spotting complicating pregnancy (649.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Spotting complicating pregnancy (649.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.5''', NULL,
+ 'Spotting complicating pregnancy (649.5)', 'Spotting complicating pregnancy (649.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Spotting complicating pregnancy (649.5)\(649.50) Spotting complicating pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Spotting complicating pregnancy (649.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Spotting complicating pregnancy (649.5)\(649.50) Spotting complicating pregnancy, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.50''', NULL,
+ '(649.50) Spotting complicating pregnancy, unspecified as to episode of care or not applicable', '(649.50) Spotting complicating pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Spotting complicating pregnancy (649.5)\(649.51) Spotting complicating pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Spotting complicating pregnancy (649.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Spotting complicating pregnancy (649.5)\(649.51) Spotting complicating pregnancy, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.51''', NULL,
+ '(649.51) Spotting complicating pregnancy, delivered, with or without mention of antepartum condition', '(649.51) Spotting complicating pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Spotting complicating pregnancy (649.5)\(649.53) Spotting complicating pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Spotting complicating pregnancy (649.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Spotting complicating pregnancy (649.5)\(649.53) Spotting complicating pregnancy, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.53''', NULL,
+ '(649.53) Spotting complicating pregnancy, antepartum condition or complication', '(649.53) Spotting complicating pregnancy, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.0''', NULL,
+ 'Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)', 'Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\(649.00) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\(649.00) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.00''', NULL,
+ '(649.00) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', '(649.00) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\(649.01) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\(649.01) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.01''', NULL,
+ '(649.01) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', '(649.01) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\(649.02) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\(649.02) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.02''', NULL,
+ '(649.02) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', '(649.02) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\(649.03) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\(649.03) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.03''', NULL,
+ '(649.03) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', '(649.03) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\(649.04) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Tobacco use disorder complicating pregnancy, childbirth, or the puerperium (649.0)\(649.04) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.04''', NULL,
+ '(649.04) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', '(649.04) Tobacco use disorder complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.6''', NULL,
+ 'Uterine size date discrepancy (649.6)', 'Uterine size date discrepancy (649.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\(649.60) Uterine size date discrepancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\(649.60) Uterine size date discrepancy, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.60''', NULL,
+ '(649.60) Uterine size date discrepancy, unspecified as to episode of care or not applicable', '(649.60) Uterine size date discrepancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\(649.61) Uterine size date discrepancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\(649.61) Uterine size date discrepancy, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.61''', NULL,
+ '(649.61) Uterine size date discrepancy, delivered, with or without mention of antepartum condition', '(649.61) Uterine size date discrepancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\(649.62) Uterine size date discrepancy, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\(649.62) Uterine size date discrepancy, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.62''', NULL,
+ '(649.62) Uterine size date discrepancy, delivered, with mention of postpartum complication', '(649.62) Uterine size date discrepancy, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\(649.63) Uterine size date discrepancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\(649.63) Uterine size date discrepancy, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.63''', NULL,
+ '(649.63) Uterine size date discrepancy, antepartum condition or complication', '(649.63) Uterine size date discrepancy, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\(649.64) Uterine size date discrepancy, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other conditions or status of the mother complicating pregnancy, childbirth, or the puerperium (649)\Uterine size date discrepancy (649.6)\(649.64) Uterine size date discrepancy, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''649.64''', NULL,
+ '(649.64) Uterine size date discrepancy, postpartum condition or complication', '(649.64) Uterine size date discrepancy, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648''', NULL,
+ 'Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)', 'Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.8''', NULL,
+ 'Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)', 'Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\(648.80) Abnormal glucose tolerance of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\(648.80) Abnormal glucose tolerance of mother, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.80''', NULL,
+ '(648.80) Abnormal glucose tolerance of mother, unspecified as to episode of care or not applicable', '(648.80) Abnormal glucose tolerance of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\(648.81) Abnormal glucose tolerance of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\(648.81) Abnormal glucose tolerance of mother, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.81''', NULL,
+ '(648.81) Abnormal glucose tolerance of mother, delivered, with or without mention of antepartum condition', '(648.81) Abnormal glucose tolerance of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\(648.82) Abnormal glucose tolerance of mother, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\(648.82) Abnormal glucose tolerance of mother, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.82''', NULL,
+ '(648.82) Abnormal glucose tolerance of mother, delivered, with mention of postpartum complication', '(648.82) Abnormal glucose tolerance of mother, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\(648.83) Abnormal glucose tolerance of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\(648.83) Abnormal glucose tolerance of mother, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.83''', NULL,
+ '(648.83) Abnormal glucose tolerance of mother, antepartum condition or complication', '(648.83) Abnormal glucose tolerance of mother, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\(648.84) Abnormal glucose tolerance of mother, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Abnormal glucose tolerance of mother, complicating pregnancy, childbirth, or the puerperium (648.8)\(648.84) Abnormal glucose tolerance of mother, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.84''', NULL,
+ '(648.84) Abnormal glucose tolerance of mother, postpartum condition or complication', '(648.84) Abnormal glucose tolerance of mother, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.2''', NULL,
+ 'Anemia complicating pregnancy, childbirth, or the puerperium (648.2)', 'Anemia complicating pregnancy, childbirth, or the puerperium (648.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\(648.20) Anemia of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\(648.20) Anemia of mother, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.20''', NULL,
+ '(648.20) Anemia of mother, unspecified as to episode of care or not applicable', '(648.20) Anemia of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\(648.21) Anemia of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\(648.21) Anemia of mother, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.21''', NULL,
+ '(648.21) Anemia of mother, delivered, with or without mention of antepartum condition', '(648.21) Anemia of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\(648.22) Anemia of mother, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\(648.22) Anemia of mother, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.22''', NULL,
+ '(648.22) Anemia of mother, delivered, with mention of postpartum complication', '(648.22) Anemia of mother, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\(648.23) Anemia of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\(648.23) Anemia of mother, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.23''', NULL,
+ '(648.23) Anemia of mother, antepartum condition or complication', '(648.23) Anemia of mother, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\(648.24) Anemia of mother, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Anemia complicating pregnancy, childbirth, or the puerperium (648.2)\(648.24) Anemia of mother, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.24''', NULL,
+ '(648.24) Anemia of mother, postpartum condition or complication', '(648.24) Anemia of mother, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.7''', NULL,
+ 'Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)', 'Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\(648.70) Bone and joint disorders of back, pelvis, and lower limbs of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\(648.70) Bone and joint disorders of back, pelvis, and lower limbs of mother, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.70''', NULL,
+ '(648.70) Bone and joint disorders of back, pelvis, and lower limbs of mother, unspecified as to episode of care or not applicable', '(648.70) Bone and joint disorders of back, pelvis, and lower limbs of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\(648.71) Bone and joint disorders of back, pelvis, and lower limbs of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\(648.71) Bone and joint disorders of back, pelvis, and lower limbs of mother, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.71''', NULL,
+ '(648.71) Bone and joint disorders of back, pelvis, and lower limbs of mother, delivered, with or without mention of antepartum condition', '(648.71) Bone and joint disorders of back, pelvis, and lower limbs of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\(648.72) Bone and joint disorders of back, pelvis, and lower limbs of mother, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\(648.72) Bone and joint disorders of back, pelvis, and lower limbs of mother, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.72''', NULL,
+ '(648.72) Bone and joint disorders of back, pelvis, and lower limbs of mother, delivered, with mention of postpartum complication', '(648.72) Bone and joint disorders of back, pelvis, and lower limbs of mother, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\(648.73) Bone and joint disorders of back, pelvis, and lower limbs of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\(648.73) Bone and joint disorders of back, pelvis, and lower limbs of mother, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.73''', NULL,
+ '(648.73) Bone and joint disorders of back, pelvis, and lower limbs of mother, antepartum condition or complication', '(648.73) Bone and joint disorders of back, pelvis, and lower limbs of mother, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\(648.74) Bone and joint disorders of back, pelvis, and lower limbs of mother, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Bone and joint disorders of back, pelvis, and lower limbs of mother, complicating pregnancy, childbirth, or the puerperium (648.7)\(648.74) Bone and joint disorders of back, pelvis, and lower limbs of mother, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.74''', NULL,
+ '(648.74) Bone and joint disorders of back, pelvis, and lower limbs of mother, postpartum condition or complication', '(648.74) Bone and joint disorders of back, pelvis, and lower limbs of mother, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.5''', NULL,
+ 'Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)', 'Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\(648.50) Congenital cardiovascular disorders of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\(648.50) Congenital cardiovascular disorders of mother, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.50''', NULL,
+ '(648.50) Congenital cardiovascular disorders of mother, unspecified as to episode of care or not applicable', '(648.50) Congenital cardiovascular disorders of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\(648.51) Congenital cardiovascular disorders of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\(648.51) Congenital cardiovascular disorders of mother, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.51''', NULL,
+ '(648.51) Congenital cardiovascular disorders of mother, delivered, with or without mention of antepartum condition', '(648.51) Congenital cardiovascular disorders of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\(648.52) Congenital cardiovascular disorders of mother, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\(648.52) Congenital cardiovascular disorders of mother, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.52''', NULL,
+ '(648.52) Congenital cardiovascular disorders of mother, delivered, with mention of postpartum complication', '(648.52) Congenital cardiovascular disorders of mother, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\(648.53) Congenital cardiovascular disorders of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\(648.53) Congenital cardiovascular disorders of mother, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.53''', NULL,
+ '(648.53) Congenital cardiovascular disorders of mother, antepartum condition or complication', '(648.53) Congenital cardiovascular disorders of mother, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\(648.54) Congenital cardiovascular disorders of mother, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Congenital cardiovascular disorders complicating pregnancy, childbirth, or the puerperium (648.5)\(648.54) Congenital cardiovascular disorders of mother, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.54''', NULL,
+ '(648.54) Congenital cardiovascular disorders of mother, postpartum condition or complication', '(648.54) Congenital cardiovascular disorders of mother, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.0''', NULL,
+ 'Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)', 'Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\(648.00) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\(648.00) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.00''', NULL,
+ '(648.00) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', '(648.00) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\(648.01) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\(648.01) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.01''', NULL,
+ '(648.01) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', '(648.01) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\(648.02) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\(648.02) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.02''', NULL,
+ '(648.02) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', '(648.02) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\(648.03) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\(648.03) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.03''', NULL,
+ '(648.03) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', '(648.03) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\(648.04) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Diabetes mellitus complicating pregnancy, childbirth, or the puerperium (648.0)\(648.04) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.04''', NULL,
+ '(648.04) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', '(648.04) Diabetes mellitus of mother, complicating pregnancy, childbirth, or the puerperium, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.3''', NULL,
+ 'Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)', 'Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\(648.30) Drug dependence of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\(648.30) Drug dependence of mother, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.30''', NULL,
+ '(648.30) Drug dependence of mother, unspecified as to episode of care or not applicable', '(648.30) Drug dependence of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\(648.31) Drug dependence of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\(648.31) Drug dependence of mother, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.31''', NULL,
+ '(648.31) Drug dependence of mother, delivered, with or without mention of antepartum condition', '(648.31) Drug dependence of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\(648.32) Drug dependence of mother, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\(648.32) Drug dependence of mother, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.32''', NULL,
+ '(648.32) Drug dependence of mother, delivered, with mention of postpartum complication', '(648.32) Drug dependence of mother, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\(648.33) Drug dependence of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\(648.33) Drug dependence of mother, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.33''', NULL,
+ '(648.33) Drug dependence of mother, antepartum condition or complication', '(648.33) Drug dependence of mother, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\(648.34) Drug dependence of mother, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Drug dependence complicating pregnancy, childbirth, or the puerperium (648.3)\(648.34) Drug dependence of mother, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.34''', NULL,
+ '(648.34) Drug dependence of mother, postpartum condition or complication', '(648.34) Drug dependence of mother, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.4''', NULL,
+ 'Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)', 'Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\(648.40) Mental disorders of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\(648.40) Mental disorders of mother, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.40''', NULL,
+ '(648.40) Mental disorders of mother, unspecified as to episode of care or not applicable', '(648.40) Mental disorders of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\(648.41) Mental disorders of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\(648.41) Mental disorders of mother, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.41''', NULL,
+ '(648.41) Mental disorders of mother, delivered, with or without mention of antepartum condition', '(648.41) Mental disorders of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\(648.42) Mental disorders of mother, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\(648.42) Mental disorders of mother, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.42''', NULL,
+ '(648.42) Mental disorders of mother, delivered, with mention of postpartum complication', '(648.42) Mental disorders of mother, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\(648.43) Mental disorders of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\(648.43) Mental disorders of mother, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.43''', NULL,
+ '(648.43) Mental disorders of mother, antepartum condition or complication', '(648.43) Mental disorders of mother, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\(648.44) Mental disorders of mother, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Mental disorders complicating pregnancy, childbirth, or the puerperium (648.4)\(648.44) Mental disorders of mother, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.44''', NULL,
+ '(648.44) Mental disorders of mother, postpartum condition or complication', '(648.44) Mental disorders of mother, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.6''', NULL,
+ 'Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)', 'Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\(648.60) Other cardiovascular diseases of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\(648.60) Other cardiovascular diseases of mother, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.60''', NULL,
+ '(648.60) Other cardiovascular diseases of mother, unspecified as to episode of care or not applicable', '(648.60) Other cardiovascular diseases of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\(648.61) Other cardiovascular diseases of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\(648.61) Other cardiovascular diseases of mother, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.61''', NULL,
+ '(648.61) Other cardiovascular diseases of mother, delivered, with or without mention of antepartum condition', '(648.61) Other cardiovascular diseases of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\(648.62) Other cardiovascular diseases of mother, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\(648.62) Other cardiovascular diseases of mother, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.62''', NULL,
+ '(648.62) Other cardiovascular diseases of mother, delivered, with mention of postpartum complication', '(648.62) Other cardiovascular diseases of mother, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\(648.63) Other cardiovascular diseases of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\(648.63) Other cardiovascular diseases of mother, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.63''', NULL,
+ '(648.63) Other cardiovascular diseases of mother, antepartum condition or complication', '(648.63) Other cardiovascular diseases of mother, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\(648.64) Other cardiovascular diseases of mother, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other cardiovascular diseases complicating pregnancy, childbirth, or the puerperium (648.6)\(648.64) Other cardiovascular diseases of mother, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.64''', NULL,
+ '(648.64) Other cardiovascular diseases of mother, postpartum condition or complication', '(648.64) Other cardiovascular diseases of mother, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.9''', NULL,
+ 'Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)', 'Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\(648.90) Other current conditions classifiable elsewhere of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\(648.90) Other current conditions classifiable elsewhere of mother, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.90''', NULL,
+ '(648.90) Other current conditions classifiable elsewhere of mother, unspecified as to episode of care or not applicable', '(648.90) Other current conditions classifiable elsewhere of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\(648.91) Other current conditions classifiable elsewhere of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\(648.91) Other current conditions classifiable elsewhere of mother, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.91''', NULL,
+ '(648.91) Other current conditions classifiable elsewhere of mother, delivered, with or without mention of antepartum condition', '(648.91) Other current conditions classifiable elsewhere of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\(648.92) Other current conditions classifiable elsewhere of mother, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\(648.92) Other current conditions classifiable elsewhere of mother, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.92''', NULL,
+ '(648.92) Other current conditions classifiable elsewhere of mother, delivered, with mention of postpartum complication', '(648.92) Other current conditions classifiable elsewhere of mother, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\(648.93) Other current conditions classifiable elsewhere of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\(648.93) Other current conditions classifiable elsewhere of mother, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.93''', NULL,
+ '(648.93) Other current conditions classifiable elsewhere of mother, antepartum condition or complication', '(648.93) Other current conditions classifiable elsewhere of mother, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\(648.94) Other current conditions classifiable elsewhere of mother, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Other current conditions complicating pregnancy, childbirth, or the puerperium (648.9)\(648.94) Other current conditions classifiable elsewhere of mother, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.94''', NULL,
+ '(648.94) Other current conditions classifiable elsewhere of mother, postpartum condition or complication', '(648.94) Other current conditions classifiable elsewhere of mother, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.1''', NULL,
+ 'Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)', 'Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\(648.10) Thyroid dysfunction of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\(648.10) Thyroid dysfunction of mother, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.10''', NULL,
+ '(648.10) Thyroid dysfunction of mother, unspecified as to episode of care or not applicable', '(648.10) Thyroid dysfunction of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\(648.11) Thyroid dysfunction of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\(648.11) Thyroid dysfunction of mother, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.11''', NULL,
+ '(648.11) Thyroid dysfunction of mother, delivered, with or without mention of antepartum condition', '(648.11) Thyroid dysfunction of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\(648.12) Thyroid dysfunction of mother, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\(648.12) Thyroid dysfunction of mother, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.12''', NULL,
+ '(648.12) Thyroid dysfunction of mother, delivered, with mention of postpartum complication', '(648.12) Thyroid dysfunction of mother, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\(648.13) Thyroid dysfunction of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\(648.13) Thyroid dysfunction of mother, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.13''', NULL,
+ '(648.13) Thyroid dysfunction of mother, antepartum condition or complication', '(648.13) Thyroid dysfunction of mother, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\(648.14) Thyroid dysfunction of mother, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications mainly related to pregnancy (640-649.99)\Other current conditions in the mother classifiable elsewhere, but complicating pregnancy, childbirth, or the puerperium (648)\Thyroid dysfunction complicating pregnancy, childbirth, or the puerperium (648.1)\(648.14) Thyroid dysfunction of mother, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''648.14''', NULL,
+ '(648.14) Thyroid dysfunction of mother, postpartum condition or complication', '(648.14) Thyroid dysfunction of mother, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''660'' AND ''669.99''', NULL,
+ 'Complications occurring mainly in the course of labor and delivery (660-669.99)', 'Complications occurring mainly in the course of labor and delivery (660-669.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661''', NULL,
+ 'Abnormality of forces of labor (661)', 'Abnormality of forces of labor (661)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.4''', NULL,
+ 'Hypertonic, incoordinate, or prolonged uterine contractions (661.4)', 'Hypertonic, incoordinate, or prolonged uterine contractions (661.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\(661.40) Hypertonic, incoordinate, or prolonged uterine contractions, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\(661.40) Hypertonic, incoordinate, or prolonged uterine contractions, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.40''', NULL,
+ '(661.40) Hypertonic, incoordinate, or prolonged uterine contractions, unspecified as to episode of care or not applicable', '(661.40) Hypertonic, incoordinate, or prolonged uterine contractions, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\(661.41) Hypertonic, incoordinate, or prolonged uterine contractions, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\(661.41) Hypertonic, incoordinate, or prolonged uterine contractions, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.41''', NULL,
+ '(661.41) Hypertonic, incoordinate, or prolonged uterine contractions, delivered, with or without mention of antepartum condition', '(661.41) Hypertonic, incoordinate, or prolonged uterine contractions, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\(661.43) Hypertonic, incoordinate, or prolonged uterine contractions, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Hypertonic, incoordinate, or prolonged uterine contractions (661.4)\(661.43) Hypertonic, incoordinate, or prolonged uterine contractions, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.43''', NULL,
+ '(661.43) Hypertonic, incoordinate, or prolonged uterine contractions, antepartum condition or complication', '(661.43) Hypertonic, incoordinate, or prolonged uterine contractions, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Other and unspecified uterine inertia (661.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Other and unspecified uterine inertia (661.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.2''', NULL,
+ 'Other and unspecified uterine inertia (661.2)', 'Other and unspecified uterine inertia (661.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Other and unspecified uterine inertia (661.2)\(661.20) Other and unspecified uterine inertia, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Other and unspecified uterine inertia (661.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Other and unspecified uterine inertia (661.2)\(661.20) Other and unspecified uterine inertia, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.20''', NULL,
+ '(661.20) Other and unspecified uterine inertia, unspecified as to episode of care or not applicable', '(661.20) Other and unspecified uterine inertia, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Other and unspecified uterine inertia (661.2)\(661.21) Other and unspecified uterine inertia, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Other and unspecified uterine inertia (661.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Other and unspecified uterine inertia (661.2)\(661.21) Other and unspecified uterine inertia, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.21''', NULL,
+ '(661.21) Other and unspecified uterine inertia, delivered, with or without mention of antepartum condition', '(661.21) Other and unspecified uterine inertia, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Other and unspecified uterine inertia (661.2)\(661.23) Other and unspecified uterine inertia, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Other and unspecified uterine inertia (661.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Other and unspecified uterine inertia (661.2)\(661.23) Other and unspecified uterine inertia, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.23''', NULL,
+ '(661.23) Other and unspecified uterine inertia, antepartum condition or complication', '(661.23) Other and unspecified uterine inertia, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Precipitate labor (661.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Precipitate labor (661.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.3''', NULL,
+ 'Precipitate labor (661.3)', 'Precipitate labor (661.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Precipitate labor (661.3)\(661.30) Precipitate labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Precipitate labor (661.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Precipitate labor (661.3)\(661.30) Precipitate labor, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.30''', NULL,
+ '(661.30) Precipitate labor, unspecified as to episode of care or not applicable', '(661.30) Precipitate labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Precipitate labor (661.3)\(661.31) Precipitate labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Precipitate labor (661.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Precipitate labor (661.3)\(661.31) Precipitate labor, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.31''', NULL,
+ '(661.31) Precipitate labor, delivered, with or without mention of antepartum condition', '(661.31) Precipitate labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Precipitate labor (661.3)\(661.33) Precipitate labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Precipitate labor (661.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Precipitate labor (661.3)\(661.33) Precipitate labor, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.33''', NULL,
+ '(661.33) Precipitate labor, antepartum condition or complication', '(661.33) Precipitate labor, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Primary uterine inertia (661.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Primary uterine inertia (661.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.0''', NULL,
+ 'Primary uterine inertia (661.0)', 'Primary uterine inertia (661.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Primary uterine inertia (661.0)\(661.00) Primary uterine inertia, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Primary uterine inertia (661.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Primary uterine inertia (661.0)\(661.00) Primary uterine inertia, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.00''', NULL,
+ '(661.00) Primary uterine inertia, unspecified as to episode of care or not applicable', '(661.00) Primary uterine inertia, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Primary uterine inertia (661.0)\(661.01) Primary uterine inertia, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Primary uterine inertia (661.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Primary uterine inertia (661.0)\(661.01) Primary uterine inertia, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.01''', NULL,
+ '(661.01) Primary uterine inertia, delivered, with or without mention of antepartum condition', '(661.01) Primary uterine inertia, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Primary uterine inertia (661.0)\(661.03) Primary uterine inertia, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Primary uterine inertia (661.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Primary uterine inertia (661.0)\(661.03) Primary uterine inertia, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.03''', NULL,
+ '(661.03) Primary uterine inertia, antepartum condition or complication', '(661.03) Primary uterine inertia, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Secondary uterine inertia (661.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Secondary uterine inertia (661.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.1''', NULL,
+ 'Secondary uterine inertia (661.1)', 'Secondary uterine inertia (661.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Secondary uterine inertia (661.1)\(661.10) Secondary uterine inertia, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Secondary uterine inertia (661.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Secondary uterine inertia (661.1)\(661.10) Secondary uterine inertia, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.10''', NULL,
+ '(661.10) Secondary uterine inertia, unspecified as to episode of care or not applicable', '(661.10) Secondary uterine inertia, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Secondary uterine inertia (661.1)\(661.11) Secondary uterine inertia, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Secondary uterine inertia (661.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Secondary uterine inertia (661.1)\(661.11) Secondary uterine inertia, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.11''', NULL,
+ '(661.11) Secondary uterine inertia, delivered, with or without mention of antepartum condition', '(661.11) Secondary uterine inertia, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Secondary uterine inertia (661.1)\(661.13) Secondary uterine inertia, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Secondary uterine inertia (661.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Secondary uterine inertia (661.1)\(661.13) Secondary uterine inertia, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.13''', NULL,
+ '(661.13) Secondary uterine inertia, antepartum condition or complication', '(661.13) Secondary uterine inertia, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Unspecified abnormality of labor (661.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Unspecified abnormality of labor (661.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.9''', NULL,
+ 'Unspecified abnormality of labor (661.9)', 'Unspecified abnormality of labor (661.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Unspecified abnormality of labor (661.9)\(661.90) Unspecified abnormality of labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Unspecified abnormality of labor (661.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Unspecified abnormality of labor (661.9)\(661.90) Unspecified abnormality of labor, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.90''', NULL,
+ '(661.90) Unspecified abnormality of labor, unspecified as to episode of care or not applicable', '(661.90) Unspecified abnormality of labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Unspecified abnormality of labor (661.9)\(661.91) Unspecified abnormality of labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Unspecified abnormality of labor (661.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Unspecified abnormality of labor (661.9)\(661.91) Unspecified abnormality of labor, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.91''', NULL,
+ '(661.91) Unspecified abnormality of labor, delivered, with or without mention of antepartum condition', '(661.91) Unspecified abnormality of labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Unspecified abnormality of labor (661.9)\(661.93) Unspecified abnormality of labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Unspecified abnormality of labor (661.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Abnormality of forces of labor (661)\Unspecified abnormality of labor (661.9)\(661.93) Unspecified abnormality of labor, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''661.93''', NULL,
+ '(661.93) Unspecified abnormality of labor, antepartum condition or complication', '(661.93) Unspecified abnormality of labor, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668''', NULL,
+ 'Complications of the administration of anesthetic or other sedation in labor and delivery (668)', 'Complications of the administration of anesthetic or other sedation in labor and delivery (668)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.1''', NULL,
+ 'Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)', 'Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\(668.10) Cardiac complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\(668.10) Cardiac complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.10''', NULL,
+ '(668.10) Cardiac complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable', '(668.10) Cardiac complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\(668.11) Cardiac complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\(668.11) Cardiac complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.11''', NULL,
+ '(668.11) Cardiac complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition', '(668.11) Cardiac complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\(668.12) Cardiac complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\(668.12) Cardiac complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.12''', NULL,
+ '(668.12) Cardiac complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication', '(668.12) Cardiac complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\(668.13) Cardiac complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\(668.13) Cardiac complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.13''', NULL,
+ '(668.13) Cardiac complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication', '(668.13) Cardiac complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\(668.14) Cardiac complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Cardiac complications of anesthesia or other sedation in labor and delivery (668.1)\(668.14) Cardiac complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.14''', NULL,
+ '(668.14) Cardiac complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication', '(668.14) Cardiac complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.2''', NULL,
+ 'Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)', 'Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\(668.20) Central nervous system complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\(668.20) Central nervous system complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.20''', NULL,
+ '(668.20) Central nervous system complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable', '(668.20) Central nervous system complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\(668.21) Central nervous system complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\(668.21) Central nervous system complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.21''', NULL,
+ '(668.21) Central nervous system complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition', '(668.21) Central nervous system complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\(668.22) Central nervous system complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\(668.22) Central nervous system complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.22''', NULL,
+ '(668.22) Central nervous system complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication', '(668.22) Central nervous system complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\(668.23) Central nervous system complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\(668.23) Central nervous system complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.23''', NULL,
+ '(668.23) Central nervous system complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication', '(668.23) Central nervous system complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\(668.24) Central nervous system complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Central nervous system complications of anesthesia or other sedation in labor and delivery (668.2)\(668.24) Central nervous system complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.24''', NULL,
+ '(668.24) Central nervous system complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication', '(668.24) Central nervous system complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.8''', NULL,
+ 'Other complications of anesthesia or other sedation in labor and delivery (668.8)', 'Other complications of anesthesia or other sedation in labor and delivery (668.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\(668.80) Other complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\(668.80) Other complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.80''', NULL,
+ '(668.80) Other complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable', '(668.80) Other complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\(668.81) Other complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\(668.81) Other complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.81''', NULL,
+ '(668.81) Other complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition', '(668.81) Other complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\(668.82) Other complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\(668.82) Other complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.82''', NULL,
+ '(668.82) Other complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication', '(668.82) Other complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\(668.83) Other complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\(668.83) Other complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.83''', NULL,
+ '(668.83) Other complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication', '(668.83) Other complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\(668.84) Other complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Other complications of anesthesia or other sedation in labor and delivery (668.8)\(668.84) Other complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.84''', NULL,
+ '(668.84) Other complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication', '(668.84) Other complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.0''', NULL,
+ 'Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)', 'Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\(668.00) Pulmonary complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\(668.00) Pulmonary complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.00''', NULL,
+ '(668.00) Pulmonary complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable', '(668.00) Pulmonary complications of anesthesia or other sedation in labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\(668.01) Pulmonary complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\(668.01) Pulmonary complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.01''', NULL,
+ '(668.01) Pulmonary complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition', '(668.01) Pulmonary complications of anesthesia or other sedation in labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\(668.02) Pulmonary complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\(668.02) Pulmonary complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.02''', NULL,
+ '(668.02) Pulmonary complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication', '(668.02) Pulmonary complications of anesthesia or other sedation in labor and delivery, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\(668.03) Pulmonary complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\(668.03) Pulmonary complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.03''', NULL,
+ '(668.03) Pulmonary complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication', '(668.03) Pulmonary complications of anesthesia or other sedation in labor and delivery, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\(668.04) Pulmonary complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Pulmonary complications of anesthesia or other sedation in labor and delivery (668.0)\(668.04) Pulmonary complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.04''', NULL,
+ '(668.04) Pulmonary complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication', '(668.04) Pulmonary complications of anesthesia or other sedation in labor and delivery, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.9''', NULL,
+ 'Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)', 'Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\(668.90) Unspecified complication of anesthesia and other sedation in labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\(668.90) Unspecified complication of anesthesia and other sedation in labor and delivery, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.90''', NULL,
+ '(668.90) Unspecified complication of anesthesia and other sedation in labor and delivery, unspecified as to episode of care or not applicable', '(668.90) Unspecified complication of anesthesia and other sedation in labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\(668.91) Unspecified complication of anesthesia and other sedation in labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\(668.91) Unspecified complication of anesthesia and other sedation in labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.91''', NULL,
+ '(668.91) Unspecified complication of anesthesia and other sedation in labor and delivery, delivered, with or without mention of antepartum condition', '(668.91) Unspecified complication of anesthesia and other sedation in labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\(668.92) Unspecified complication of anesthesia and other sedation in labor and delivery, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\(668.92) Unspecified complication of anesthesia and other sedation in labor and delivery, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.92''', NULL,
+ '(668.92) Unspecified complication of anesthesia and other sedation in labor and delivery, delivered, with mention of postpartum complication', '(668.92) Unspecified complication of anesthesia and other sedation in labor and delivery, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\(668.93) Unspecified complication of anesthesia and other sedation in labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\(668.93) Unspecified complication of anesthesia and other sedation in labor and delivery, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.93''', NULL,
+ '(668.93) Unspecified complication of anesthesia and other sedation in labor and delivery, antepartum condition or complication', '(668.93) Unspecified complication of anesthesia and other sedation in labor and delivery, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\(668.94) Unspecified complication of anesthesia and other sedation in labor and delivery, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Complications of the administration of anesthetic or other sedation in labor and delivery (668)\Unspecified complication of anesthesia or other sedation in labor and delivery (668.9)\(668.94) Unspecified complication of anesthesia and other sedation in labor and delivery, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''668.94''', NULL,
+ '(668.94) Unspecified complication of anesthesia and other sedation in labor and delivery, postpartum condition or complication', '(668.94) Unspecified complication of anesthesia and other sedation in labor and delivery, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662''', NULL,
+ 'Long labor (662)', 'Long labor (662)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Delayed delivery of second twin, triplet, etc. (662.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Delayed delivery of second twin, triplet, etc. (662.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.3''', NULL,
+ 'Delayed delivery of second twin, triplet, etc. (662.3)', 'Delayed delivery of second twin, triplet, etc. (662.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Delayed delivery of second twin, triplet, etc. (662.3)\(662.30) Delayed delivery of second twin, triplet, etc., unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Delayed delivery of second twin, triplet, etc. (662.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Delayed delivery of second twin, triplet, etc. (662.3)\(662.30) Delayed delivery of second twin, triplet, etc., unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.30''', NULL,
+ '(662.30) Delayed delivery of second twin, triplet, etc., unspecified as to episode of care or not applicable', '(662.30) Delayed delivery of second twin, triplet, etc., unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Delayed delivery of second twin, triplet, etc. (662.3)\(662.31) Delayed delivery of second twin, triplet, etc., delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Delayed delivery of second twin, triplet, etc. (662.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Delayed delivery of second twin, triplet, etc. (662.3)\(662.31) Delayed delivery of second twin, triplet, etc., delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.31''', NULL,
+ '(662.31) Delayed delivery of second twin, triplet, etc., delivered, with or without mention of antepartum condition', '(662.31) Delayed delivery of second twin, triplet, etc., delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Delayed delivery of second twin, triplet, etc. (662.3)\(662.33) Delayed delivery of second twin, triplet, etc., antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Delayed delivery of second twin, triplet, etc. (662.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Delayed delivery of second twin, triplet, etc. (662.3)\(662.33) Delayed delivery of second twin, triplet, etc., antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.33''', NULL,
+ '(662.33) Delayed delivery of second twin, triplet, etc., antepartum condition or complication', '(662.33) Delayed delivery of second twin, triplet, etc., antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged first stage of labor (662.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged first stage of labor (662.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.0''', NULL,
+ 'Prolonged first stage of labor (662.0)', 'Prolonged first stage of labor (662.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged first stage of labor (662.0)\(662.00) Prolonged first stage of labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged first stage of labor (662.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged first stage of labor (662.0)\(662.00) Prolonged first stage of labor, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.00''', NULL,
+ '(662.00) Prolonged first stage of labor, unspecified as to episode of care or not applicable', '(662.00) Prolonged first stage of labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged first stage of labor (662.0)\(662.01) Prolonged first stage of labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged first stage of labor (662.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged first stage of labor (662.0)\(662.01) Prolonged first stage of labor, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.01''', NULL,
+ '(662.01) Prolonged first stage of labor, delivered, with or without mention of antepartum condition', '(662.01) Prolonged first stage of labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged first stage of labor (662.0)\(662.03) Prolonged first stage of labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged first stage of labor (662.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged first stage of labor (662.0)\(662.03) Prolonged first stage of labor, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.03''', NULL,
+ '(662.03) Prolonged first stage of labor, antepartum condition or complication', '(662.03) Prolonged first stage of labor, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged labor, unspecified (662.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged labor, unspecified (662.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.1''', NULL,
+ 'Prolonged labor, unspecified (662.1)', 'Prolonged labor, unspecified (662.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged labor, unspecified (662.1)\(662.10) Unspecified prolonged labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged labor, unspecified (662.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged labor, unspecified (662.1)\(662.10) Unspecified prolonged labor, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.10''', NULL,
+ '(662.10) Unspecified prolonged labor, unspecified as to episode of care or not applicable', '(662.10) Unspecified prolonged labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged labor, unspecified (662.1)\(662.11) Unspecified prolonged labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged labor, unspecified (662.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged labor, unspecified (662.1)\(662.11) Unspecified prolonged labor, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.11''', NULL,
+ '(662.11) Unspecified prolonged labor, delivered, with or without mention of antepartum condition', '(662.11) Unspecified prolonged labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged labor, unspecified (662.1)\(662.13) Unspecified prolonged labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged labor, unspecified (662.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged labor, unspecified (662.1)\(662.13) Unspecified prolonged labor, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.13''', NULL,
+ '(662.13) Unspecified prolonged labor, antepartum condition or complication', '(662.13) Unspecified prolonged labor, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged second stage of labor (662.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged second stage of labor (662.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.2''', NULL,
+ 'Prolonged second stage of labor (662.2)', 'Prolonged second stage of labor (662.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged second stage of labor (662.2)\(662.20) Prolonged second stage of labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged second stage of labor (662.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged second stage of labor (662.2)\(662.20) Prolonged second stage of labor, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.20''', NULL,
+ '(662.20) Prolonged second stage of labor, unspecified as to episode of care or not applicable', '(662.20) Prolonged second stage of labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged second stage of labor (662.2)\(662.21) Prolonged second stage of labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged second stage of labor (662.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged second stage of labor (662.2)\(662.21) Prolonged second stage of labor, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.21''', NULL,
+ '(662.21) Prolonged second stage of labor, delivered, with or without mention of antepartum condition', '(662.21) Prolonged second stage of labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged second stage of labor (662.2)\(662.23) Prolonged second stage of labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged second stage of labor (662.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Long labor (662)\Prolonged second stage of labor (662.2)\(662.23) Prolonged second stage of labor, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''662.23''', NULL,
+ '(662.23) Prolonged second stage of labor, antepartum condition or complication', '(662.23) Prolonged second stage of labor, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660''', NULL,
+ 'Obstructed labor (660)', 'Obstructed labor (660)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.3''', NULL,
+ 'Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)', 'Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)\(660.30) Deep transverse arrest and persistent occipitoposterior position, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)\(660.30) Deep transverse arrest and persistent occipitoposterior position, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.30''', NULL,
+ '(660.30) Deep transverse arrest and persistent occipitoposterior position, unspecified as to episode of care or not applicable', '(660.30) Deep transverse arrest and persistent occipitoposterior position, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)\(660.31) Deep transverse arrest and persistent occipitoposterior position, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)\(660.31) Deep transverse arrest and persistent occipitoposterior position, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.31''', NULL,
+ '(660.31) Deep transverse arrest and persistent occipitoposterior position, delivered, with or without mention of antepartum condition', '(660.31) Deep transverse arrest and persistent occipitoposterior position, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)\(660.33) Deep transverse arrest and persistent occipitoposterior position, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Deep transverse arrest and persistent occipitoposterior position during labor and delivery (660.3)\(660.33) Deep transverse arrest and persistent occipitoposterior position, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.33''', NULL,
+ '(660.33) Deep transverse arrest and persistent occipitoposterior position, antepartum condition or complication', '(660.33) Deep transverse arrest and persistent occipitoposterior position, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed forceps or vacuum extractor, unspecified (660.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed forceps or vacuum extractor, unspecified (660.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.7''', NULL,
+ 'Failed forceps or vacuum extractor, unspecified (660.7)', 'Failed forceps or vacuum extractor, unspecified (660.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed forceps or vacuum extractor, unspecified (660.7)\(660.70) Failed forceps or vacuum extractor, unspecified, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed forceps or vacuum extractor, unspecified (660.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed forceps or vacuum extractor, unspecified (660.7)\(660.70) Failed forceps or vacuum extractor, unspecified, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.70''', NULL,
+ '(660.70) Failed forceps or vacuum extractor, unspecified, unspecified as to episode of care or not applicable', '(660.70) Failed forceps or vacuum extractor, unspecified, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed forceps or vacuum extractor, unspecified (660.7)\(660.71) Failed forceps or vacuum extractor, unspecified, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed forceps or vacuum extractor, unspecified (660.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed forceps or vacuum extractor, unspecified (660.7)\(660.71) Failed forceps or vacuum extractor, unspecified, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.71''', NULL,
+ '(660.71) Failed forceps or vacuum extractor, unspecified, delivered, with or without mention of antepartum condition', '(660.71) Failed forceps or vacuum extractor, unspecified, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed forceps or vacuum extractor, unspecified (660.7)\(660.73) Failed forceps or vacuum extractor, unspecified, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed forceps or vacuum extractor, unspecified (660.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed forceps or vacuum extractor, unspecified (660.7)\(660.73) Failed forceps or vacuum extractor, unspecified, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.73''', NULL,
+ '(660.73) Failed forceps or vacuum extractor, unspecified, antepartum condition or complication', '(660.73) Failed forceps or vacuum extractor, unspecified, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed trial of labor, unspecified (660.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed trial of labor, unspecified (660.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.6''', NULL,
+ 'Failed trial of labor, unspecified (660.6)', 'Failed trial of labor, unspecified (660.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed trial of labor, unspecified (660.6)\(660.60) Unspecified failed trial of labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed trial of labor, unspecified (660.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed trial of labor, unspecified (660.6)\(660.60) Unspecified failed trial of labor, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.60''', NULL,
+ '(660.60) Unspecified failed trial of labor, unspecified as to episode of care or not applicable', '(660.60) Unspecified failed trial of labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed trial of labor, unspecified (660.6)\(660.61) Unspecified failed trial of labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed trial of labor, unspecified (660.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed trial of labor, unspecified (660.6)\(660.61) Unspecified failed trial of labor, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.61''', NULL,
+ '(660.61) Unspecified failed trial of labor, delivered, with or without mention of antepartum condition', '(660.61) Unspecified failed trial of labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed trial of labor, unspecified (660.6)\(660.63) Unspecified failed trial of labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed trial of labor, unspecified (660.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Failed trial of labor, unspecified (660.6)\(660.63) Unspecified failed trial of labor, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.63''', NULL,
+ '(660.63) Unspecified failed trial of labor, antepartum condition or complication', '(660.63) Unspecified failed trial of labor, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Locked twins (660.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Locked twins (660.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.5''', NULL,
+ 'Locked twins (660.5)', 'Locked twins (660.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Locked twins (660.5)\(660.50) Locked twins, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Locked twins (660.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Locked twins (660.5)\(660.50) Locked twins, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.50''', NULL,
+ '(660.50) Locked twins, unspecified as to episode of care or not applicable', '(660.50) Locked twins, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Locked twins (660.5)\(660.51) Locked twins, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Locked twins (660.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Locked twins (660.5)\(660.51) Locked twins, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.51''', NULL,
+ '(660.51) Locked twins, delivered, with or without mention of antepartum condition', '(660.51) Locked twins, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Locked twins (660.5)\(660.53) Locked twins, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Locked twins (660.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Locked twins (660.5)\(660.53) Locked twins, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.53''', NULL,
+ '(660.53) Locked twins, antepartum condition or complication', '(660.53) Locked twins, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by abnormal pelvic soft tissues during labor (660.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by abnormal pelvic soft tissues during labor (660.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.2''', NULL,
+ 'Obstruction by abnormal pelvic soft tissues during labor (660.2)', 'Obstruction by abnormal pelvic soft tissues during labor (660.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by abnormal pelvic soft tissues during labor (660.2)\(660.20) Obstruction by abnormal pelvic soft tissues during labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by abnormal pelvic soft tissues during labor (660.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by abnormal pelvic soft tissues during labor (660.2)\(660.20) Obstruction by abnormal pelvic soft tissues during labor, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.20''', NULL,
+ '(660.20) Obstruction by abnormal pelvic soft tissues during labor, unspecified as to episode of care or not applicable', '(660.20) Obstruction by abnormal pelvic soft tissues during labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by abnormal pelvic soft tissues during labor (660.2)\(660.21) Obstruction by abnormal pelvic soft tissues during labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by abnormal pelvic soft tissues during labor (660.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by abnormal pelvic soft tissues during labor (660.2)\(660.21) Obstruction by abnormal pelvic soft tissues during labor, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.21''', NULL,
+ '(660.21) Obstruction by abnormal pelvic soft tissues during labor, delivered, with or without mention of antepartum condition', '(660.21) Obstruction by abnormal pelvic soft tissues during labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by abnormal pelvic soft tissues during labor (660.2)\(660.23) Obstruction by abnormal pelvic soft tissues during labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by abnormal pelvic soft tissues during labor (660.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by abnormal pelvic soft tissues during labor (660.2)\(660.23) Obstruction by abnormal pelvic soft tissues during labor, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.23''', NULL,
+ '(660.23) Obstruction by abnormal pelvic soft tissues during labor, antepartum condition or complication', '(660.23) Obstruction by abnormal pelvic soft tissues during labor, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by bony pelvis during labor (660.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by bony pelvis during labor (660.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.1''', NULL,
+ 'Obstruction by bony pelvis during labor (660.1)', 'Obstruction by bony pelvis during labor (660.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by bony pelvis during labor (660.1)\(660.10) Obstruction by bony pelvis during labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by bony pelvis during labor (660.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by bony pelvis during labor (660.1)\(660.10) Obstruction by bony pelvis during labor, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.10''', NULL,
+ '(660.10) Obstruction by bony pelvis during labor, unspecified as to episode of care or not applicable', '(660.10) Obstruction by bony pelvis during labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by bony pelvis during labor (660.1)\(660.11) Obstruction by bony pelvis during labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by bony pelvis during labor (660.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by bony pelvis during labor (660.1)\(660.11) Obstruction by bony pelvis during labor, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.11''', NULL,
+ '(660.11) Obstruction by bony pelvis during labor, delivered, with or without mention of antepartum condition', '(660.11) Obstruction by bony pelvis during labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by bony pelvis during labor (660.1)\(660.13) Obstruction by bony pelvis during labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by bony pelvis during labor (660.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction by bony pelvis during labor (660.1)\(660.13) Obstruction by bony pelvis during labor, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.13''', NULL,
+ '(660.13) Obstruction by bony pelvis during labor, antepartum condition or complication', '(660.13) Obstruction by bony pelvis during labor, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction caused by malposition of fetus at onset of labor (660.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction caused by malposition of fetus at onset of labor (660.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.0''', NULL,
+ 'Obstruction caused by malposition of fetus at onset of labor (660.0)', 'Obstruction caused by malposition of fetus at onset of labor (660.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction caused by malposition of fetus at onset of labor (660.0)\(660.00) Obstruction caused by malposition of fetus at onset of labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction caused by malposition of fetus at onset of labor (660.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction caused by malposition of fetus at onset of labor (660.0)\(660.00) Obstruction caused by malposition of fetus at onset of labor, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.00''', NULL,
+ '(660.00) Obstruction caused by malposition of fetus at onset of labor, unspecified as to episode of care or not applicable', '(660.00) Obstruction caused by malposition of fetus at onset of labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction caused by malposition of fetus at onset of labor (660.0)\(660.01) Obstruction caused by malposition of fetus at onset of labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction caused by malposition of fetus at onset of labor (660.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction caused by malposition of fetus at onset of labor (660.0)\(660.01) Obstruction caused by malposition of fetus at onset of labor, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.01''', NULL,
+ '(660.01) Obstruction caused by malposition of fetus at onset of labor, delivered, with or without mention of antepartum condition', '(660.01) Obstruction caused by malposition of fetus at onset of labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction caused by malposition of fetus at onset of labor (660.0)\(660.03) Obstruction caused by malposition of fetus at onset of labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction caused by malposition of fetus at onset of labor (660.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Obstruction caused by malposition of fetus at onset of labor (660.0)\(660.03) Obstruction caused by malposition of fetus at onset of labor, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.03''', NULL,
+ '(660.03) Obstruction caused by malposition of fetus at onset of labor, antepartum condition or complication', '(660.03) Obstruction caused by malposition of fetus at onset of labor, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Other causes of obstructed labor (660.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Other causes of obstructed labor (660.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.8''', NULL,
+ 'Other causes of obstructed labor (660.8)', 'Other causes of obstructed labor (660.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Other causes of obstructed labor (660.8)\(660.80) Other causes of obstructed labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Other causes of obstructed labor (660.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Other causes of obstructed labor (660.8)\(660.80) Other causes of obstructed labor, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.80''', NULL,
+ '(660.80) Other causes of obstructed labor, unspecified as to episode of care or not applicable', '(660.80) Other causes of obstructed labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Other causes of obstructed labor (660.8)\(660.81) Other causes of obstructed labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Other causes of obstructed labor (660.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Other causes of obstructed labor (660.8)\(660.81) Other causes of obstructed labor, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.81''', NULL,
+ '(660.81) Other causes of obstructed labor, delivered, with or without mention of antepartum condition', '(660.81) Other causes of obstructed labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Other causes of obstructed labor (660.8)\(660.83) Other causes of obstructed labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Other causes of obstructed labor (660.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Other causes of obstructed labor (660.8)\(660.83) Other causes of obstructed labor, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.83''', NULL,
+ '(660.83) Other causes of obstructed labor, antepartum condition or complication', '(660.83) Other causes of obstructed labor, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Shoulder (girdle) dystocia during labor and delivery (660.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Shoulder (girdle) dystocia during labor and delivery (660.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''girdle) dystocia during labor and delivery (660.4''', NULL,
+ 'Shoulder (girdle) dystocia during labor and delivery (660.4)', 'Shoulder (girdle) dystocia during labor and delivery (660.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Shoulder (girdle) dystocia during labor and delivery (660.4)\(660.40) Shoulder (girdle) dystocia, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Shoulder (girdle) dystocia during labor and delivery (660.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Shoulder (girdle) dystocia during labor and delivery (660.4)\(660.40) Shoulder (girdle) dystocia, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.40) Shoulder (girdle''', NULL,
+ '(660.40) Shoulder (girdle) dystocia, unspecified as to episode of care or not applicable', '(660.40) Shoulder (girdle) dystocia, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Shoulder (girdle) dystocia during labor and delivery (660.4)\(660.41) Shoulder (girdle) dystocia, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Shoulder (girdle) dystocia during labor and delivery (660.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Shoulder (girdle) dystocia during labor and delivery (660.4)\(660.41) Shoulder (girdle) dystocia, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.41) Shoulder (girdle''', NULL,
+ '(660.41) Shoulder (girdle) dystocia, delivered, with or without mention of antepartum condition', '(660.41) Shoulder (girdle) dystocia, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Shoulder (girdle) dystocia during labor and delivery (660.4)\(660.43) Shoulder (girdle) dystocia, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Shoulder (girdle) dystocia during labor and delivery (660.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Shoulder (girdle) dystocia during labor and delivery (660.4)\(660.43) Shoulder (girdle) dystocia, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.43) Shoulder (girdle''', NULL,
+ '(660.43) Shoulder (girdle) dystocia, antepartum condition or complication', '(660.43) Shoulder (girdle) dystocia, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Unspecified obstructed labor (660.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Unspecified obstructed labor (660.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.9''', NULL,
+ 'Unspecified obstructed labor (660.9)', 'Unspecified obstructed labor (660.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Unspecified obstructed labor (660.9)\(660.90) Unspecified obstructed labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Unspecified obstructed labor (660.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Unspecified obstructed labor (660.9)\(660.90) Unspecified obstructed labor, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.90''', NULL,
+ '(660.90) Unspecified obstructed labor, unspecified as to episode of care or not applicable', '(660.90) Unspecified obstructed labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Unspecified obstructed labor (660.9)\(660.91) Unspecified obstructed labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Unspecified obstructed labor (660.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Unspecified obstructed labor (660.9)\(660.91) Unspecified obstructed labor, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.91''', NULL,
+ '(660.91) Unspecified obstructed labor, delivered, with or without mention of antepartum condition', '(660.91) Unspecified obstructed labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Unspecified obstructed labor (660.9)\(660.93) Unspecified obstructed labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Unspecified obstructed labor (660.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Obstructed labor (660)\Unspecified obstructed labor (660.9)\(660.93) Unspecified obstructed labor, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''660.93''', NULL,
+ '(660.93) Unspecified obstructed labor, antepartum condition or complication', '(660.93) Unspecified obstructed labor, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669''', NULL,
+ 'Other complications of labor and delivery, not elsewhere classified (669)', 'Other complications of labor and delivery, not elsewhere classified (669)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Acute kidney failure following labor and delivery (669.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Acute kidney failure following labor and delivery (669.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.3''', NULL,
+ 'Acute kidney failure following labor and delivery (669.3)', 'Acute kidney failure following labor and delivery (669.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Acute kidney failure following labor and delivery (669.3)\(669.30) Acute kidney failure following labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Acute kidney failure following labor and delivery (669.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Acute kidney failure following labor and delivery (669.3)\(669.30) Acute kidney failure following labor and delivery, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.30''', NULL,
+ '(669.30) Acute kidney failure following labor and delivery, unspecified as to episode of care or not applicable', '(669.30) Acute kidney failure following labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Acute kidney failure following labor and delivery (669.3)\(669.32) Acute kidney failure following labor and delivery, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Acute kidney failure following labor and delivery (669.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Acute kidney failure following labor and delivery (669.3)\(669.32) Acute kidney failure following labor and delivery, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.32''', NULL,
+ '(669.32) Acute kidney failure following labor and delivery, delivered, with mention of postpartum complication', '(669.32) Acute kidney failure following labor and delivery, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Acute kidney failure following labor and delivery (669.3)\(669.34) Acute kidney failure following labor and delivery, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Acute kidney failure following labor and delivery (669.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Acute kidney failure following labor and delivery (669.3)\(669.34) Acute kidney failure following labor and delivery, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.34''', NULL,
+ '(669.34) Acute kidney failure following labor and delivery, postpartum condition or complication', '(669.34) Acute kidney failure following labor and delivery, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Breech extraction, without mention of indication (669.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Breech extraction, without mention of indication (669.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.6''', NULL,
+ 'Breech extraction, without mention of indication (669.6)', 'Breech extraction, without mention of indication (669.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Breech extraction, without mention of indication (669.6)\(669.60) Breech extraction, without mention of indication, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Breech extraction, without mention of indication (669.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Breech extraction, without mention of indication (669.6)\(669.60) Breech extraction, without mention of indication, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.60''', NULL,
+ '(669.60) Breech extraction, without mention of indication, unspecified as to episode of care or not applicable', '(669.60) Breech extraction, without mention of indication, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Breech extraction, without mention of indication (669.6)\(669.61) Breech extraction, without mention of indication, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Breech extraction, without mention of indication (669.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Breech extraction, without mention of indication (669.6)\(669.61) Breech extraction, without mention of indication, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.61''', NULL,
+ '(669.61) Breech extraction, without mention of indication, delivered, with or without mention of antepartum condition', '(669.61) Breech extraction, without mention of indication, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Cesarean delivery, without mention of indication (669.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Cesarean delivery, without mention of indication (669.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.7''', NULL,
+ 'Cesarean delivery, without mention of indication (669.7)', 'Cesarean delivery, without mention of indication (669.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Cesarean delivery, without mention of indication (669.7)\(669.70) Cesarean delivery, without mention of indication, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Cesarean delivery, without mention of indication (669.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Cesarean delivery, without mention of indication (669.7)\(669.70) Cesarean delivery, without mention of indication, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.70''', NULL,
+ '(669.70) Cesarean delivery, without mention of indication, unspecified as to episode of care or not applicable', '(669.70) Cesarean delivery, without mention of indication, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Cesarean delivery, without mention of indication (669.7)\(669.71) Cesarean delivery, without mention of indication, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Cesarean delivery, without mention of indication (669.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Cesarean delivery, without mention of indication (669.7)\(669.71) Cesarean delivery, without mention of indication, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.71''', NULL,
+ '(669.71) Cesarean delivery, without mention of indication, delivered, with or without mention of antepartum condition', '(669.71) Cesarean delivery, without mention of indication, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Forceps or vacuum extractor delivery without mention of indication (669.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Forceps or vacuum extractor delivery without mention of indication (669.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.5''', NULL,
+ 'Forceps or vacuum extractor delivery without mention of indication (669.5)', 'Forceps or vacuum extractor delivery without mention of indication (669.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Forceps or vacuum extractor delivery without mention of indication (669.5)\(669.50) Forceps or vacuum extractor delivery without mention of indication, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Forceps or vacuum extractor delivery without mention of indication (669.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Forceps or vacuum extractor delivery without mention of indication (669.5)\(669.50) Forceps or vacuum extractor delivery without mention of indication, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.50''', NULL,
+ '(669.50) Forceps or vacuum extractor delivery without mention of indication, unspecified as to episode of care or not applicable', '(669.50) Forceps or vacuum extractor delivery without mention of indication, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Forceps or vacuum extractor delivery without mention of indication (669.5)\(669.51) Forceps or vacuum extractor delivery without mention of indication, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Forceps or vacuum extractor delivery without mention of indication (669.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Forceps or vacuum extractor delivery without mention of indication (669.5)\(669.51) Forceps or vacuum extractor delivery without mention of indication, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.51''', NULL,
+ '(669.51) Forceps or vacuum extractor delivery without mention of indication, delivered, with or without mention of antepartum condition', '(669.51) Forceps or vacuum extractor delivery without mention of indication, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.0''', NULL,
+ 'Maternal distress (669.0)', 'Maternal distress (669.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\(669.00) Maternal distress complicating labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\(669.00) Maternal distress complicating labor and delivery, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.00''', NULL,
+ '(669.00) Maternal distress complicating labor and delivery, unspecified as to episode of care or not applicable', '(669.00) Maternal distress complicating labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\(669.01) Maternal distress complicating labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\(669.01) Maternal distress complicating labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.01''', NULL,
+ '(669.01) Maternal distress complicating labor and delivery, delivered, with or without mention of antepartum condition', '(669.01) Maternal distress complicating labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\(669.02) Maternal distress complicating labor and delivery, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\(669.02) Maternal distress complicating labor and delivery, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.02''', NULL,
+ '(669.02) Maternal distress complicating labor and delivery, delivered, with mention of postpartum complication', '(669.02) Maternal distress complicating labor and delivery, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\(669.03) Maternal distress complicating labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\(669.03) Maternal distress complicating labor and delivery, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.03''', NULL,
+ '(669.03) Maternal distress complicating labor and delivery, antepartum condition or complication', '(669.03) Maternal distress complicating labor and delivery, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\(669.04) Maternal distress complicating labor and delivery, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal distress (669.0)\(669.04) Maternal distress complicating labor and delivery, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.04''', NULL,
+ '(669.04) Maternal distress complicating labor and delivery, postpartum condition or complication', '(669.04) Maternal distress complicating labor and delivery, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.2''', NULL,
+ 'Maternal hypotension syndrome (669.2)', 'Maternal hypotension syndrome (669.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\(669.20) Maternal hypotension syndrome, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\(669.20) Maternal hypotension syndrome, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.20''', NULL,
+ '(669.20) Maternal hypotension syndrome, unspecified as to episode of care or not applicable', '(669.20) Maternal hypotension syndrome, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\(669.21) Maternal hypotension syndrome, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\(669.21) Maternal hypotension syndrome, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.21''', NULL,
+ '(669.21) Maternal hypotension syndrome, delivered, with or without mention of antepartum condition', '(669.21) Maternal hypotension syndrome, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\(669.22) Maternal hypotension syndrome, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\(669.22) Maternal hypotension syndrome, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.22''', NULL,
+ '(669.22) Maternal hypotension syndrome, delivered, with mention of postpartum complication', '(669.22) Maternal hypotension syndrome, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\(669.23) Maternal hypotension syndrome, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\(669.23) Maternal hypotension syndrome, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.23''', NULL,
+ '(669.23) Maternal hypotension syndrome, antepartum condition or complication', '(669.23) Maternal hypotension syndrome, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\(669.24) Maternal hypotension syndrome, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Maternal hypotension syndrome (669.2)\(669.24) Maternal hypotension syndrome, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.24''', NULL,
+ '(669.24) Maternal hypotension syndrome, postpartum condition or complication', '(669.24) Maternal hypotension syndrome, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.8''', NULL,
+ 'Other complications of labor and delivery (669.8)', 'Other complications of labor and delivery (669.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\(669.80) Other complications of labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\(669.80) Other complications of labor and delivery, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.80''', NULL,
+ '(669.80) Other complications of labor and delivery, unspecified as to episode of care or not applicable', '(669.80) Other complications of labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\(669.81) Other complications of labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\(669.81) Other complications of labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.81''', NULL,
+ '(669.81) Other complications of labor and delivery, delivered, with or without mention of antepartum condition', '(669.81) Other complications of labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\(669.82) Other complications of labor and delivery, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\(669.82) Other complications of labor and delivery, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.82''', NULL,
+ '(669.82) Other complications of labor and delivery, delivered, with mention of postpartum complication', '(669.82) Other complications of labor and delivery, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\(669.83) Other complications of labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\(669.83) Other complications of labor and delivery, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.83''', NULL,
+ '(669.83) Other complications of labor and delivery, antepartum condition or complication', '(669.83) Other complications of labor and delivery, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\(669.84) Other complications of labor and delivery, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of labor and delivery (669.8)\(669.84) Other complications of labor and delivery, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.84''', NULL,
+ '(669.84) Other complications of labor and delivery, postpartum condition or complication', '(669.84) Other complications of labor and delivery, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.4''', NULL,
+ 'Other complications of obstetrical surgery and procedures (669.4)', 'Other complications of obstetrical surgery and procedures (669.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\(669.40) Other complications of obstetrical surgery and procedures, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\(669.40) Other complications of obstetrical surgery and procedures, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.40''', NULL,
+ '(669.40) Other complications of obstetrical surgery and procedures, unspecified as to episode of care or not applicable', '(669.40) Other complications of obstetrical surgery and procedures, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\(669.41) Other complications of obstetrical surgery and procedures, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\(669.41) Other complications of obstetrical surgery and procedures, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.41''', NULL,
+ '(669.41) Other complications of obstetrical surgery and procedures, delivered, with or without mention of antepartum condition', '(669.41) Other complications of obstetrical surgery and procedures, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\(669.42) Other complications of obstetrical surgery and procedures, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\(669.42) Other complications of obstetrical surgery and procedures, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.42''', NULL,
+ '(669.42) Other complications of obstetrical surgery and procedures, delivered, with mention of postpartum complication', '(669.42) Other complications of obstetrical surgery and procedures, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\(669.43) Other complications of obstetrical surgery and procedures, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\(669.43) Other complications of obstetrical surgery and procedures, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.43''', NULL,
+ '(669.43) Other complications of obstetrical surgery and procedures, antepartum condition or complication', '(669.43) Other complications of obstetrical surgery and procedures, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\(669.44) Other complications of obstetrical surgery and procedures, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Other complications of obstetrical surgery and procedures (669.4)\(669.44) Other complications of obstetrical surgery and procedures, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.44''', NULL,
+ '(669.44) Other complications of obstetrical surgery and procedures, postpartum condition or complication', '(669.44) Other complications of obstetrical surgery and procedures, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.1''', NULL,
+ 'Shock during or following labor and delivery (669.1)', 'Shock during or following labor and delivery (669.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\(669.10) Shock during or following labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\(669.10) Shock during or following labor and delivery, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.10''', NULL,
+ '(669.10) Shock during or following labor and delivery, unspecified as to episode of care or not applicable', '(669.10) Shock during or following labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\(669.11) Shock during or following labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\(669.11) Shock during or following labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.11''', NULL,
+ '(669.11) Shock during or following labor and delivery, delivered, with or without mention of antepartum condition', '(669.11) Shock during or following labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\(669.12) Shock during or following labor and delivery, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\(669.12) Shock during or following labor and delivery, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.12''', NULL,
+ '(669.12) Shock during or following labor and delivery, delivered, with mention of postpartum complication', '(669.12) Shock during or following labor and delivery, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\(669.13) Shock during or following labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\(669.13) Shock during or following labor and delivery, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.13''', NULL,
+ '(669.13) Shock during or following labor and delivery, antepartum condition or complication', '(669.13) Shock during or following labor and delivery, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\(669.14) Shock during or following labor and delivery, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Shock during or following labor and delivery (669.1)\(669.14) Shock during or following labor and delivery, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.14''', NULL,
+ '(669.14) Shock during or following labor and delivery, postpartum condition or complication', '(669.14) Shock during or following labor and delivery, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.9''', NULL,
+ 'Unspecified complication of labor and delivery (669.9)', 'Unspecified complication of labor and delivery (669.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\(669.90) Unspecified complication of labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\(669.90) Unspecified complication of labor and delivery, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.90''', NULL,
+ '(669.90) Unspecified complication of labor and delivery, unspecified as to episode of care or not applicable', '(669.90) Unspecified complication of labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\(669.91) Unspecified complication of labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\(669.91) Unspecified complication of labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.91''', NULL,
+ '(669.91) Unspecified complication of labor and delivery, delivered, with or without mention of antepartum condition', '(669.91) Unspecified complication of labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\(669.92) Unspecified complication of labor and delivery, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\(669.92) Unspecified complication of labor and delivery, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.92''', NULL,
+ '(669.92) Unspecified complication of labor and delivery, delivered, with mention of postpartum complication', '(669.92) Unspecified complication of labor and delivery, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\(669.93) Unspecified complication of labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\(669.93) Unspecified complication of labor and delivery, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.93''', NULL,
+ '(669.93) Unspecified complication of labor and delivery, antepartum condition or complication', '(669.93) Unspecified complication of labor and delivery, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\(669.94) Unspecified complication of labor and delivery, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other complications of labor and delivery, not elsewhere classified (669)\Unspecified complication of labor and delivery (669.9)\(669.94) Unspecified complication of labor and delivery, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''669.94''', NULL,
+ '(669.94) Unspecified complication of labor and delivery, postpartum condition or complication', '(669.94) Unspecified complication of labor and delivery, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665''', NULL,
+ 'Other obstetrical trauma (665)', 'Other obstetrical trauma (665)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\High vaginal laceration during and after labor (665.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\High vaginal laceration during and after labor (665.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.4''', NULL,
+ 'High vaginal laceration during and after labor (665.4)', 'High vaginal laceration during and after labor (665.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\High vaginal laceration during and after labor (665.4)\(665.40) High vaginal laceration, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\High vaginal laceration during and after labor (665.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\High vaginal laceration during and after labor (665.4)\(665.40) High vaginal laceration, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.40''', NULL,
+ '(665.40) High vaginal laceration, unspecified as to episode of care or not applicable', '(665.40) High vaginal laceration, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\High vaginal laceration during and after labor (665.4)\(665.41) High vaginal laceration, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\High vaginal laceration during and after labor (665.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\High vaginal laceration during and after labor (665.4)\(665.41) High vaginal laceration, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.41''', NULL,
+ '(665.41) High vaginal laceration, delivered, with or without mention of antepartum condition', '(665.41) High vaginal laceration, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\High vaginal laceration during and after labor (665.4)\(665.44) High vaginal laceration, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\High vaginal laceration during and after labor (665.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\High vaginal laceration during and after labor (665.4)\(665.44) High vaginal laceration, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.44''', NULL,
+ '(665.44) High vaginal laceration, postpartum condition or complication', '(665.44) High vaginal laceration, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical damage to pelvic joints and ligaments (665.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical damage to pelvic joints and ligaments (665.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.6''', NULL,
+ 'Obstetrical damage to pelvic joints and ligaments (665.6)', 'Obstetrical damage to pelvic joints and ligaments (665.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical damage to pelvic joints and ligaments (665.6)\(665.60) Damage to pelvic joints and ligaments, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical damage to pelvic joints and ligaments (665.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical damage to pelvic joints and ligaments (665.6)\(665.60) Damage to pelvic joints and ligaments, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.60''', NULL,
+ '(665.60) Damage to pelvic joints and ligaments, unspecified as to episode of care or not applicable', '(665.60) Damage to pelvic joints and ligaments, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical damage to pelvic joints and ligaments (665.6)\(665.61) Damage to pelvic joints and ligaments, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical damage to pelvic joints and ligaments (665.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical damage to pelvic joints and ligaments (665.6)\(665.61) Damage to pelvic joints and ligaments, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.61''', NULL,
+ '(665.61) Damage to pelvic joints and ligaments, delivered, with or without mention of antepartum condition', '(665.61) Damage to pelvic joints and ligaments, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical damage to pelvic joints and ligaments (665.6)\(665.64) Damage to pelvic joints and ligaments, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical damage to pelvic joints and ligaments (665.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical damage to pelvic joints and ligaments (665.6)\(665.64) Damage to pelvic joints and ligaments, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.64''', NULL,
+ '(665.64) Damage to pelvic joints and ligaments, postpartum condition or complication', '(665.64) Damage to pelvic joints and ligaments, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical inversion of uterus (665.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical inversion of uterus (665.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.2''', NULL,
+ 'Obstetrical inversion of uterus (665.2)', 'Obstetrical inversion of uterus (665.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical inversion of uterus (665.2)\(665.20) Inversion of uterus, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical inversion of uterus (665.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical inversion of uterus (665.2)\(665.20) Inversion of uterus, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.20''', NULL,
+ '(665.20) Inversion of uterus, unspecified as to episode of care or not applicable', '(665.20) Inversion of uterus, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical inversion of uterus (665.2)\(665.22) Inversion of uterus, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical inversion of uterus (665.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical inversion of uterus (665.2)\(665.22) Inversion of uterus, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.22''', NULL,
+ '(665.22) Inversion of uterus, delivered, with mention of postpartum complication', '(665.22) Inversion of uterus, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical inversion of uterus (665.2)\(665.24) Inversion of uterus, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical inversion of uterus (665.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical inversion of uterus (665.2)\(665.24) Inversion of uterus, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.24''', NULL,
+ '(665.24) Inversion of uterus, postpartum condition or complication', '(665.24) Inversion of uterus, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical laceration of cervix (665.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical laceration of cervix (665.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.3''', NULL,
+ 'Obstetrical laceration of cervix (665.3)', 'Obstetrical laceration of cervix (665.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical laceration of cervix (665.3)\(665.30) Laceration of cervix, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical laceration of cervix (665.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical laceration of cervix (665.3)\(665.30) Laceration of cervix, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.30''', NULL,
+ '(665.30) Laceration of cervix, unspecified as to episode of care or not applicable', '(665.30) Laceration of cervix, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical laceration of cervix (665.3)\(665.31) Laceration of cervix, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical laceration of cervix (665.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical laceration of cervix (665.3)\(665.31) Laceration of cervix, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.31''', NULL,
+ '(665.31) Laceration of cervix, delivered, with or without mention of antepartum condition', '(665.31) Laceration of cervix, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical laceration of cervix (665.3)\(665.34) Laceration of cervix, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical laceration of cervix (665.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical laceration of cervix (665.3)\(665.34) Laceration of cervix, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.34''', NULL,
+ '(665.34) Laceration of cervix, postpartum condition or complication', '(665.34) Laceration of cervix, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical pelvic hematoma (665.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical pelvic hematoma (665.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.7''', NULL,
+ 'Obstetrical pelvic hematoma (665.7)', 'Obstetrical pelvic hematoma (665.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical pelvic hematoma (665.7)\(665.70) Pelvic hematoma, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical pelvic hematoma (665.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical pelvic hematoma (665.7)\(665.70) Pelvic hematoma, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.70''', NULL,
+ '(665.70) Pelvic hematoma, unspecified as to episode of care or not applicable', '(665.70) Pelvic hematoma, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical pelvic hematoma (665.7)\(665.71) Pelvic hematoma, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical pelvic hematoma (665.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical pelvic hematoma (665.7)\(665.71) Pelvic hematoma, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.71''', NULL,
+ '(665.71) Pelvic hematoma, delivered, with or without mention of antepartum condition', '(665.71) Pelvic hematoma, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical pelvic hematoma (665.7)\(665.72) Pelvic hematoma, delivered with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical pelvic hematoma (665.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical pelvic hematoma (665.7)\(665.72) Pelvic hematoma, delivered with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.72''', NULL,
+ '(665.72) Pelvic hematoma, delivered with mention of postpartum complication', '(665.72) Pelvic hematoma, delivered with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical pelvic hematoma (665.7)\(665.74) Pelvic hematoma, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical pelvic hematoma (665.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Obstetrical pelvic hematoma (665.7)\(665.74) Pelvic hematoma, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.74''', NULL,
+ '(665.74) Pelvic hematoma, postpartum condition or complication', '(665.74) Pelvic hematoma, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other obstetrical injury to pelvic organs (665.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other obstetrical injury to pelvic organs (665.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.5''', NULL,
+ 'Other obstetrical injury to pelvic organs (665.5)', 'Other obstetrical injury to pelvic organs (665.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other obstetrical injury to pelvic organs (665.5)\(665.50) Other injury to pelvic organs, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other obstetrical injury to pelvic organs (665.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other obstetrical injury to pelvic organs (665.5)\(665.50) Other injury to pelvic organs, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.50''', NULL,
+ '(665.50) Other injury to pelvic organs, unspecified as to episode of care or not applicable', '(665.50) Other injury to pelvic organs, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other obstetrical injury to pelvic organs (665.5)\(665.51) Other injury to pelvic organs, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other obstetrical injury to pelvic organs (665.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other obstetrical injury to pelvic organs (665.5)\(665.51) Other injury to pelvic organs, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.51''', NULL,
+ '(665.51) Other injury to pelvic organs, delivered, with or without mention of antepartum condition', '(665.51) Other injury to pelvic organs, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other obstetrical injury to pelvic organs (665.5)\(665.54) Other injury to pelvic organs, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other obstetrical injury to pelvic organs (665.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other obstetrical injury to pelvic organs (665.5)\(665.54) Other injury to pelvic organs, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.54''', NULL,
+ '(665.54) Other injury to pelvic organs, postpartum condition or complication', '(665.54) Other injury to pelvic organs, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.8''', NULL,
+ 'Other specified obstetrical trauma (665.8)', 'Other specified obstetrical trauma (665.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\(665.80) Other specified obstetrical trauma, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\(665.80) Other specified obstetrical trauma, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.80''', NULL,
+ '(665.80) Other specified obstetrical trauma, unspecified as to episode of care or not applicable', '(665.80) Other specified obstetrical trauma, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\(665.81) Other specified obstetrical trauma, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\(665.81) Other specified obstetrical trauma, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.81''', NULL,
+ '(665.81) Other specified obstetrical trauma, delivered, with or without mention of antepartum condition', '(665.81) Other specified obstetrical trauma, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\(665.82) Other specified obstetrical trauma, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\(665.82) Other specified obstetrical trauma, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.82''', NULL,
+ '(665.82) Other specified obstetrical trauma, delivered, with mention of postpartum complication', '(665.82) Other specified obstetrical trauma, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\(665.83) Other specified obstetrical trauma, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\(665.83) Other specified obstetrical trauma, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.83''', NULL,
+ '(665.83) Other specified obstetrical trauma, antepartum condition or complication', '(665.83) Other specified obstetrical trauma, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\(665.84) Other specified obstetrical trauma, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Other specified obstetrical trauma (665.8)\(665.84) Other specified obstetrical trauma, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.84''', NULL,
+ '(665.84) Other specified obstetrical trauma, postpartum condition or complication', '(665.84) Other specified obstetrical trauma, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus before onset of labor (665.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus before onset of labor (665.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.0''', NULL,
+ 'Rupture of uterus before onset of labor (665.0)', 'Rupture of uterus before onset of labor (665.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus before onset of labor (665.0)\(665.00) Rupture of uterus before onset of labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus before onset of labor (665.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus before onset of labor (665.0)\(665.00) Rupture of uterus before onset of labor, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.00''', NULL,
+ '(665.00) Rupture of uterus before onset of labor, unspecified as to episode of care or not applicable', '(665.00) Rupture of uterus before onset of labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus before onset of labor (665.0)\(665.01) Rupture of uterus before onset of labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus before onset of labor (665.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus before onset of labor (665.0)\(665.01) Rupture of uterus before onset of labor, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.01''', NULL,
+ '(665.01) Rupture of uterus before onset of labor, delivered, with or without mention of antepartum condition', '(665.01) Rupture of uterus before onset of labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus before onset of labor (665.0)\(665.03) Rupture of uterus before onset of labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus before onset of labor (665.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus before onset of labor (665.0)\(665.03) Rupture of uterus before onset of labor, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.03''', NULL,
+ '(665.03) Rupture of uterus before onset of labor, antepartum condition or complication', '(665.03) Rupture of uterus before onset of labor, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus during labor (665.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus during labor (665.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.1''', NULL,
+ 'Rupture of uterus during labor (665.1)', 'Rupture of uterus during labor (665.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus during labor (665.1)\(665.10) Rupture of uterus during labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus during labor (665.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus during labor (665.1)\(665.10) Rupture of uterus during labor, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.10''', NULL,
+ '(665.10) Rupture of uterus during labor, unspecified as to episode of care or not applicable', '(665.10) Rupture of uterus during labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus during labor (665.1)\(665.11) Rupture of uterus during labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus during labor (665.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Rupture of uterus during labor (665.1)\(665.11) Rupture of uterus during labor, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.11''', NULL,
+ '(665.11) Rupture of uterus during labor, delivered, with or without mention of antepartum condition', '(665.11) Rupture of uterus during labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.9''', NULL,
+ 'Unspecified obstetrical trauma (665.9)', 'Unspecified obstetrical trauma (665.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\(665.90) Unspecified obstetrical trauma, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\(665.90) Unspecified obstetrical trauma, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.90''', NULL,
+ '(665.90) Unspecified obstetrical trauma, unspecified as to episode of care or not applicable', '(665.90) Unspecified obstetrical trauma, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\(665.91) Unspecified obstetrical trauma, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\(665.91) Unspecified obstetrical trauma, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.91''', NULL,
+ '(665.91) Unspecified obstetrical trauma, delivered, with or without mention of antepartum condition', '(665.91) Unspecified obstetrical trauma, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\(665.92) Unspecified obstetrical trauma, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\(665.92) Unspecified obstetrical trauma, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.92''', NULL,
+ '(665.92) Unspecified obstetrical trauma, delivered, with mention of postpartum complication', '(665.92) Unspecified obstetrical trauma, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\(665.93) Unspecified obstetrical trauma, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\(665.93) Unspecified obstetrical trauma, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.93''', NULL,
+ '(665.93) Unspecified obstetrical trauma, antepartum condition or complication', '(665.93) Unspecified obstetrical trauma, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\(665.94) Unspecified obstetrical trauma, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Other obstetrical trauma (665)\Unspecified obstetrical trauma (665.9)\(665.94) Unspecified obstetrical trauma, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''665.94''', NULL,
+ '(665.94) Unspecified obstetrical trauma, postpartum condition or complication', '(665.94) Unspecified obstetrical trauma, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666''', NULL,
+ 'Postpartum hemorrhage (666)', 'Postpartum hemorrhage (666)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Delayed and secondary postpartum hemorrhage (666.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Delayed and secondary postpartum hemorrhage (666.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.2''', NULL,
+ 'Delayed and secondary postpartum hemorrhage (666.2)', 'Delayed and secondary postpartum hemorrhage (666.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Delayed and secondary postpartum hemorrhage (666.2)\(666.20) Delayed and secondary postpartum hemorrhage, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Delayed and secondary postpartum hemorrhage (666.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Delayed and secondary postpartum hemorrhage (666.2)\(666.20) Delayed and secondary postpartum hemorrhage, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.20''', NULL,
+ '(666.20) Delayed and secondary postpartum hemorrhage, unspecified as to episode of care or not applicable', '(666.20) Delayed and secondary postpartum hemorrhage, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Delayed and secondary postpartum hemorrhage (666.2)\(666.22) Delayed and secondary postpartum hemorrhage, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Delayed and secondary postpartum hemorrhage (666.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Delayed and secondary postpartum hemorrhage (666.2)\(666.22) Delayed and secondary postpartum hemorrhage, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.22''', NULL,
+ '(666.22) Delayed and secondary postpartum hemorrhage, delivered, with mention of postpartum complication', '(666.22) Delayed and secondary postpartum hemorrhage, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Delayed and secondary postpartum hemorrhage (666.2)\(666.24) Delayed and secondary postpartum hemorrhage, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Delayed and secondary postpartum hemorrhage (666.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Delayed and secondary postpartum hemorrhage (666.2)\(666.24) Delayed and secondary postpartum hemorrhage, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.24''', NULL,
+ '(666.24) Delayed and secondary postpartum hemorrhage, postpartum condition or complication', '(666.24) Delayed and secondary postpartum hemorrhage, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Other immediate postpartum hemorrhage (666.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Other immediate postpartum hemorrhage (666.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.1''', NULL,
+ 'Other immediate postpartum hemorrhage (666.1)', 'Other immediate postpartum hemorrhage (666.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Other immediate postpartum hemorrhage (666.1)\(666.10) Other immediate postpartum hemorrhage, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Other immediate postpartum hemorrhage (666.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Other immediate postpartum hemorrhage (666.1)\(666.10) Other immediate postpartum hemorrhage, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.10''', NULL,
+ '(666.10) Other immediate postpartum hemorrhage, unspecified as to episode of care or not applicable', '(666.10) Other immediate postpartum hemorrhage, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Other immediate postpartum hemorrhage (666.1)\(666.12) Other immediate postpartum hemorrhage, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Other immediate postpartum hemorrhage (666.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Other immediate postpartum hemorrhage (666.1)\(666.12) Other immediate postpartum hemorrhage, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.12''', NULL,
+ '(666.12) Other immediate postpartum hemorrhage, delivered, with mention of postpartum complication', '(666.12) Other immediate postpartum hemorrhage, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Other immediate postpartum hemorrhage (666.1)\(666.14) Other immediate postpartum hemorrhage, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Other immediate postpartum hemorrhage (666.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Other immediate postpartum hemorrhage (666.1)\(666.14) Other immediate postpartum hemorrhage, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.14''', NULL,
+ '(666.14) Other immediate postpartum hemorrhage, postpartum condition or complication', '(666.14) Other immediate postpartum hemorrhage, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Postpartum coagulation defects (666.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Postpartum coagulation defects (666.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.3''', NULL,
+ 'Postpartum coagulation defects (666.3)', 'Postpartum coagulation defects (666.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Postpartum coagulation defects (666.3)\(666.30) Postpartum coagulation defects, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Postpartum coagulation defects (666.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Postpartum coagulation defects (666.3)\(666.30) Postpartum coagulation defects, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.30''', NULL,
+ '(666.30) Postpartum coagulation defects, unspecified as to episode of care or not applicable', '(666.30) Postpartum coagulation defects, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Postpartum coagulation defects (666.3)\(666.32) Postpartum coagulation defects, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Postpartum coagulation defects (666.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Postpartum coagulation defects (666.3)\(666.32) Postpartum coagulation defects, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.32''', NULL,
+ '(666.32) Postpartum coagulation defects, delivered, with mention of postpartum complication', '(666.32) Postpartum coagulation defects, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Postpartum coagulation defects (666.3)\(666.34) Postpartum coagulation defects, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Postpartum coagulation defects (666.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Postpartum coagulation defects (666.3)\(666.34) Postpartum coagulation defects, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.34''', NULL,
+ '(666.34) Postpartum coagulation defects, postpartum condition or complication', '(666.34) Postpartum coagulation defects, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Third-stage postpartum hemorrhage (666.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Third-stage postpartum hemorrhage (666.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.0''', NULL,
+ 'Third-stage postpartum hemorrhage (666.0)', 'Third-stage postpartum hemorrhage (666.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Third-stage postpartum hemorrhage (666.0)\(666.00) Third-stage postpartum hemorrhage, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Third-stage postpartum hemorrhage (666.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Third-stage postpartum hemorrhage (666.0)\(666.00) Third-stage postpartum hemorrhage, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.00''', NULL,
+ '(666.00) Third-stage postpartum hemorrhage, unspecified as to episode of care or not applicable', '(666.00) Third-stage postpartum hemorrhage, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Third-stage postpartum hemorrhage (666.0)\(666.02) Third-stage postpartum hemorrhage, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Third-stage postpartum hemorrhage (666.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Third-stage postpartum hemorrhage (666.0)\(666.02) Third-stage postpartum hemorrhage, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.02''', NULL,
+ '(666.02) Third-stage postpartum hemorrhage, delivered, with mention of postpartum complication', '(666.02) Third-stage postpartum hemorrhage, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Third-stage postpartum hemorrhage (666.0)\(666.04) Third-stage postpartum hemorrhage, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Third-stage postpartum hemorrhage (666.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Postpartum hemorrhage (666)\Third-stage postpartum hemorrhage (666.0)\(666.04) Third-stage postpartum hemorrhage, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''666.04''', NULL,
+ '(666.04) Third-stage postpartum hemorrhage, postpartum condition or complication', '(666.04) Third-stage postpartum hemorrhage, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''667''', NULL,
+ 'Retained placenta or membranes, without hemorrhage (667)', 'Retained placenta or membranes, without hemorrhage (667)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained placenta without hemorrhage (667.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained placenta without hemorrhage (667.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''667.0''', NULL,
+ 'Retained placenta without hemorrhage (667.0)', 'Retained placenta without hemorrhage (667.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained placenta without hemorrhage (667.0)\(667.00) Retained placenta without hemorrhage, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained placenta without hemorrhage (667.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained placenta without hemorrhage (667.0)\(667.00) Retained placenta without hemorrhage, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''667.00''', NULL,
+ '(667.00) Retained placenta without hemorrhage, unspecified as to episode of care or not applicable', '(667.00) Retained placenta without hemorrhage, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained placenta without hemorrhage (667.0)\(667.02) Retained placenta without hemorrhage, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained placenta without hemorrhage (667.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained placenta without hemorrhage (667.0)\(667.02) Retained placenta without hemorrhage, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''667.02''', NULL,
+ '(667.02) Retained placenta without hemorrhage, delivered, with mention of postpartum complication', '(667.02) Retained placenta without hemorrhage, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained placenta without hemorrhage (667.0)\(667.04) Retained placenta without hemorrhage, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained placenta without hemorrhage (667.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained placenta without hemorrhage (667.0)\(667.04) Retained placenta without hemorrhage, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''667.04''', NULL,
+ '(667.04) Retained placenta without hemorrhage, postpartum condition or complication', '(667.04) Retained placenta without hemorrhage, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained portions of placenta or membranes, without hemorrhage (667.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained portions of placenta or membranes, without hemorrhage (667.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''667.1''', NULL,
+ 'Retained portions of placenta or membranes, without hemorrhage (667.1)', 'Retained portions of placenta or membranes, without hemorrhage (667.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained portions of placenta or membranes, without hemorrhage (667.1)\(667.10) Retained portions of placenta or membranes, without hemorrhage, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained portions of placenta or membranes, without hemorrhage (667.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained portions of placenta or membranes, without hemorrhage (667.1)\(667.10) Retained portions of placenta or membranes, without hemorrhage, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''667.10''', NULL,
+ '(667.10) Retained portions of placenta or membranes, without hemorrhage, unspecified as to episode of care or not applicable', '(667.10) Retained portions of placenta or membranes, without hemorrhage, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained portions of placenta or membranes, without hemorrhage (667.1)\(667.12) Retained portions of placenta or membranes, without hemorrhage, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained portions of placenta or membranes, without hemorrhage (667.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained portions of placenta or membranes, without hemorrhage (667.1)\(667.12) Retained portions of placenta or membranes, without hemorrhage, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''667.12''', NULL,
+ '(667.12) Retained portions of placenta or membranes, without hemorrhage, delivered, with mention of postpartum complication', '(667.12) Retained portions of placenta or membranes, without hemorrhage, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained portions of placenta or membranes, without hemorrhage (667.1)\(667.14) Retained portions of placenta or membranes, without hemorrhage, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained portions of placenta or membranes, without hemorrhage (667.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Retained placenta or membranes, without hemorrhage (667)\Retained portions of placenta or membranes, without hemorrhage (667.1)\(667.14) Retained portions of placenta or membranes, without hemorrhage, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''667.14''', NULL,
+ '(667.14) Retained portions of placenta or membranes, without hemorrhage, postpartum condition or complication', '(667.14) Retained portions of placenta or membranes, without hemorrhage, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664''', NULL,
+ 'Trauma to perineum and vulva during delivery (664)', 'Trauma to perineum and vulva during delivery (664)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.6''', NULL,
+ 'Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)', 'Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)\(664.60) Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)\(664.60) Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.60''', NULL,
+ '(664.60) Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, unspecified as to episode of care or not applicable', '(664.60) Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)\(664.61) Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)\(664.61) Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.61''', NULL,
+ '(664.61) Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, delivered, with or without mention of antepartum condition', '(664.61) Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)\(664.64) Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration (664.6)\(664.64) Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.64''', NULL,
+ '(664.64) Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, postpartum condition or complication', '(664.64) Anal sphincter tear complicating delivery, not associated with third-degree perineal laceration, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\First-degree perineal laceration during delivery (664.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\First-degree perineal laceration during delivery (664.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.0''', NULL,
+ 'First-degree perineal laceration during delivery (664.0)', 'First-degree perineal laceration during delivery (664.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\First-degree perineal laceration during delivery (664.0)\(664.00) First-degree perineal laceration, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\First-degree perineal laceration during delivery (664.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\First-degree perineal laceration during delivery (664.0)\(664.00) First-degree perineal laceration, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.00''', NULL,
+ '(664.00) First-degree perineal laceration, unspecified as to episode of care or not applicable', '(664.00) First-degree perineal laceration, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\First-degree perineal laceration during delivery (664.0)\(664.01) First-degree perineal laceration, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\First-degree perineal laceration during delivery (664.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\First-degree perineal laceration during delivery (664.0)\(664.01) First-degree perineal laceration, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.01''', NULL,
+ '(664.01) First-degree perineal laceration, delivered, with or without mention of antepartum condition', '(664.01) First-degree perineal laceration, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\First-degree perineal laceration during delivery (664.0)\(664.04) First-degree perineal laceration, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\First-degree perineal laceration during delivery (664.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\First-degree perineal laceration during delivery (664.0)\(664.04) First-degree perineal laceration, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.04''', NULL,
+ '(664.04) First-degree perineal laceration, postpartum condition or complication', '(664.04) First-degree perineal laceration, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Fourth-degree perineal laceration during delivery (664.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Fourth-degree perineal laceration during delivery (664.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.3''', NULL,
+ 'Fourth-degree perineal laceration during delivery (664.3)', 'Fourth-degree perineal laceration during delivery (664.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Fourth-degree perineal laceration during delivery (664.3)\(664.30) Fourth-degree perineal laceration, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Fourth-degree perineal laceration during delivery (664.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Fourth-degree perineal laceration during delivery (664.3)\(664.30) Fourth-degree perineal laceration, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.30''', NULL,
+ '(664.30) Fourth-degree perineal laceration, unspecified as to episode of care or not applicable', '(664.30) Fourth-degree perineal laceration, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Fourth-degree perineal laceration during delivery (664.3)\(664.31) Fourth-degree perineal laceration, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Fourth-degree perineal laceration during delivery (664.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Fourth-degree perineal laceration during delivery (664.3)\(664.31) Fourth-degree perineal laceration, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.31''', NULL,
+ '(664.31) Fourth-degree perineal laceration, delivered, with or without mention of antepartum condition', '(664.31) Fourth-degree perineal laceration, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Fourth-degree perineal laceration during delivery (664.3)\(664.34) Fourth-degree perineal laceration, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Fourth-degree perineal laceration during delivery (664.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Fourth-degree perineal laceration during delivery (664.3)\(664.34) Fourth-degree perineal laceration, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.34''', NULL,
+ '(664.34) Fourth-degree perineal laceration, postpartum condition or complication', '(664.34) Fourth-degree perineal laceration, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Other specified trauma to perineum and vulva during delivery (664.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Other specified trauma to perineum and vulva during delivery (664.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.8''', NULL,
+ 'Other specified trauma to perineum and vulva during delivery (664.8)', 'Other specified trauma to perineum and vulva during delivery (664.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Other specified trauma to perineum and vulva during delivery (664.8)\(664.80) Other specified trauma to perineum and vulva, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Other specified trauma to perineum and vulva during delivery (664.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Other specified trauma to perineum and vulva during delivery (664.8)\(664.80) Other specified trauma to perineum and vulva, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.80''', NULL,
+ '(664.80) Other specified trauma to perineum and vulva, unspecified as to episode of care or not applicable', '(664.80) Other specified trauma to perineum and vulva, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Other specified trauma to perineum and vulva during delivery (664.8)\(664.81) Other specified trauma to perineum and vulva, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Other specified trauma to perineum and vulva during delivery (664.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Other specified trauma to perineum and vulva during delivery (664.8)\(664.81) Other specified trauma to perineum and vulva, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.81''', NULL,
+ '(664.81) Other specified trauma to perineum and vulva, delivered, with or without mention of antepartum condition', '(664.81) Other specified trauma to perineum and vulva, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Other specified trauma to perineum and vulva during delivery (664.8)\(664.84) Other specified trauma to perineum and vulva, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Other specified trauma to perineum and vulva during delivery (664.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Other specified trauma to perineum and vulva during delivery (664.8)\(664.84) Other specified trauma to perineum and vulva, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.84''', NULL,
+ '(664.84) Other specified trauma to perineum and vulva, postpartum condition or complication', '(664.84) Other specified trauma to perineum and vulva, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Second-degree perineal laceration during delivery (664.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Second-degree perineal laceration during delivery (664.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.1''', NULL,
+ 'Second-degree perineal laceration during delivery (664.1)', 'Second-degree perineal laceration during delivery (664.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Second-degree perineal laceration during delivery (664.1)\(664.10) Second-degree perineal laceration, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Second-degree perineal laceration during delivery (664.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Second-degree perineal laceration during delivery (664.1)\(664.10) Second-degree perineal laceration, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.10''', NULL,
+ '(664.10) Second-degree perineal laceration, unspecified as to episode of care or not applicable', '(664.10) Second-degree perineal laceration, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Second-degree perineal laceration during delivery (664.1)\(664.11) Second-degree perineal laceration, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Second-degree perineal laceration during delivery (664.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Second-degree perineal laceration during delivery (664.1)\(664.11) Second-degree perineal laceration, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.11''', NULL,
+ '(664.11) Second-degree perineal laceration, delivered, with or without mention of antepartum condition', '(664.11) Second-degree perineal laceration, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Second-degree perineal laceration during delivery (664.1)\(664.14) Second-degree perineal laceration, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Second-degree perineal laceration during delivery (664.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Second-degree perineal laceration during delivery (664.1)\(664.14) Second-degree perineal laceration, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.14''', NULL,
+ '(664.14) Second-degree perineal laceration, postpartum condition or complication', '(664.14) Second-degree perineal laceration, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Third-degree perineal laceration during delivery (664.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Third-degree perineal laceration during delivery (664.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.2''', NULL,
+ 'Third-degree perineal laceration during delivery (664.2)', 'Third-degree perineal laceration during delivery (664.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Third-degree perineal laceration during delivery (664.2)\(664.20) Third-degree perineal laceration, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Third-degree perineal laceration during delivery (664.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Third-degree perineal laceration during delivery (664.2)\(664.20) Third-degree perineal laceration, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.20''', NULL,
+ '(664.20) Third-degree perineal laceration, unspecified as to episode of care or not applicable', '(664.20) Third-degree perineal laceration, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Third-degree perineal laceration during delivery (664.2)\(664.21) Third-degree perineal laceration, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Third-degree perineal laceration during delivery (664.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Third-degree perineal laceration during delivery (664.2)\(664.21) Third-degree perineal laceration, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.21''', NULL,
+ '(664.21) Third-degree perineal laceration, delivered, with or without mention of antepartum condition', '(664.21) Third-degree perineal laceration, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Third-degree perineal laceration during delivery (664.2)\(664.24) Third-degree perineal laceration, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Third-degree perineal laceration during delivery (664.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Third-degree perineal laceration during delivery (664.2)\(664.24) Third-degree perineal laceration, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.24''', NULL,
+ '(664.24) Third-degree perineal laceration, postpartum condition or complication', '(664.24) Third-degree perineal laceration, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified perineal laceration during delivery (664.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified perineal laceration during delivery (664.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.4''', NULL,
+ 'Unspecified perineal laceration during delivery (664.4)', 'Unspecified perineal laceration during delivery (664.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified perineal laceration during delivery (664.4)\(664.40) Unspecified perineal laceration, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified perineal laceration during delivery (664.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified perineal laceration during delivery (664.4)\(664.40) Unspecified perineal laceration, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.40''', NULL,
+ '(664.40) Unspecified perineal laceration, unspecified as to episode of care or not applicable', '(664.40) Unspecified perineal laceration, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified perineal laceration during delivery (664.4)\(664.41) Unspecified perineal laceration, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified perineal laceration during delivery (664.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified perineal laceration during delivery (664.4)\(664.41) Unspecified perineal laceration, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.41''', NULL,
+ '(664.41) Unspecified perineal laceration, delivered, with or without mention of antepartum condition', '(664.41) Unspecified perineal laceration, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified perineal laceration during delivery (664.4)\(664.44) Unspecified perineal laceration, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified perineal laceration during delivery (664.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified perineal laceration during delivery (664.4)\(664.44) Unspecified perineal laceration, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.44''', NULL,
+ '(664.44) Unspecified perineal laceration, postpartum condition or complication', '(664.44) Unspecified perineal laceration, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified trauma to perineum and vulva during delivery (664.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified trauma to perineum and vulva during delivery (664.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.9''', NULL,
+ 'Unspecified trauma to perineum and vulva during delivery (664.9)', 'Unspecified trauma to perineum and vulva during delivery (664.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified trauma to perineum and vulva during delivery (664.9)\(664.90) Unspecified trauma to perineum and vulva, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified trauma to perineum and vulva during delivery (664.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified trauma to perineum and vulva during delivery (664.9)\(664.90) Unspecified trauma to perineum and vulva, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.90''', NULL,
+ '(664.90) Unspecified trauma to perineum and vulva, unspecified as to episode of care or not applicable', '(664.90) Unspecified trauma to perineum and vulva, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified trauma to perineum and vulva during delivery (664.9)\(664.91) Unspecified trauma to perineum and vulva, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified trauma to perineum and vulva during delivery (664.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified trauma to perineum and vulva during delivery (664.9)\(664.91) Unspecified trauma to perineum and vulva, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.91''', NULL,
+ '(664.91) Unspecified trauma to perineum and vulva, delivered, with or without mention of antepartum condition', '(664.91) Unspecified trauma to perineum and vulva, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified trauma to perineum and vulva during delivery (664.9)\(664.94) Unspecified trauma to perineum and vulva, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified trauma to perineum and vulva during delivery (664.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Unspecified trauma to perineum and vulva during delivery (664.9)\(664.94) Unspecified trauma to perineum and vulva, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.94''', NULL,
+ '(664.94) Unspecified trauma to perineum and vulva, postpartum condition or complication', '(664.94) Unspecified trauma to perineum and vulva, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Vulvar and perineal hematoma during delivery (664.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Vulvar and perineal hematoma during delivery (664.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.5''', NULL,
+ 'Vulvar and perineal hematoma during delivery (664.5)', 'Vulvar and perineal hematoma during delivery (664.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Vulvar and perineal hematoma during delivery (664.5)\(664.50) Vulvar and perineal hematoma, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Vulvar and perineal hematoma during delivery (664.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Vulvar and perineal hematoma during delivery (664.5)\(664.50) Vulvar and perineal hematoma, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.50''', NULL,
+ '(664.50) Vulvar and perineal hematoma, unspecified as to episode of care or not applicable', '(664.50) Vulvar and perineal hematoma, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Vulvar and perineal hematoma during delivery (664.5)\(664.51) Vulvar and perineal hematoma, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Vulvar and perineal hematoma during delivery (664.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Vulvar and perineal hematoma during delivery (664.5)\(664.51) Vulvar and perineal hematoma, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.51''', NULL,
+ '(664.51) Vulvar and perineal hematoma, delivered, with or without mention of antepartum condition', '(664.51) Vulvar and perineal hematoma, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Vulvar and perineal hematoma during delivery (664.5)\(664.54) Vulvar and perineal hematoma, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Vulvar and perineal hematoma during delivery (664.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Trauma to perineum and vulva during delivery (664)\Vulvar and perineal hematoma during delivery (664.5)\(664.54) Vulvar and perineal hematoma, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''664.54''', NULL,
+ '(664.54) Vulvar and perineal hematoma, postpartum condition or complication', '(664.54) Vulvar and perineal hematoma, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663''', NULL,
+ 'Umbilical cord complications during labor and delivery (663)', 'Umbilical cord complications during labor and delivery (663)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Cord around neck, with compression, complicating labor and delivery (663.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Cord around neck, with compression, complicating labor and delivery (663.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.1''', NULL,
+ 'Cord around neck, with compression, complicating labor and delivery (663.1)', 'Cord around neck, with compression, complicating labor and delivery (663.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Cord around neck, with compression, complicating labor and delivery (663.1)\(663.10) Cord around neck with compression, complicating labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Cord around neck, with compression, complicating labor and delivery (663.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Cord around neck, with compression, complicating labor and delivery (663.1)\(663.10) Cord around neck with compression, complicating labor and delivery, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.10''', NULL,
+ '(663.10) Cord around neck with compression, complicating labor and delivery, unspecified as to episode of care or not applicable', '(663.10) Cord around neck with compression, complicating labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Cord around neck, with compression, complicating labor and delivery (663.1)\(663.11) Cord around neck, with compression, complicating labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Cord around neck, with compression, complicating labor and delivery (663.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Cord around neck, with compression, complicating labor and delivery (663.1)\(663.11) Cord around neck, with compression, complicating labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.11''', NULL,
+ '(663.11) Cord around neck, with compression, complicating labor and delivery, delivered, with or without mention of antepartum condition', '(663.11) Cord around neck, with compression, complicating labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Cord around neck, with compression, complicating labor and delivery (663.1)\(663.13) Cord around neck, with compression, complicating labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Cord around neck, with compression, complicating labor and delivery (663.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Cord around neck, with compression, complicating labor and delivery (663.1)\(663.13) Cord around neck, with compression, complicating labor and delivery, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.13''', NULL,
+ '(663.13) Cord around neck, with compression, complicating labor and delivery, antepartum condition or complication', '(663.13) Cord around neck, with compression, complicating labor and delivery, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.2''', NULL,
+ 'Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)', 'Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)\(663.20) Other and unspecified cord entanglement, with compression, complicating labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)\(663.20) Other and unspecified cord entanglement, with compression, complicating labor and delivery, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.20''', NULL,
+ '(663.20) Other and unspecified cord entanglement, with compression, complicating labor and delivery, unspecified as to episode of care or not applicable', '(663.20) Other and unspecified cord entanglement, with compression, complicating labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)\(663.21) Other and unspecified cord entanglement, with compression, complicating labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)\(663.21) Other and unspecified cord entanglement, with compression, complicating labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.21''', NULL,
+ '(663.21) Other and unspecified cord entanglement, with compression, complicating labor and delivery, delivered, with or without mention of antepartum condition', '(663.21) Other and unspecified cord entanglement, with compression, complicating labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)\(663.23) Other and unspecified cord entanglement, with compression, complicating labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, with compression, complicating labor and delivery (663.2)\(663.23) Other and unspecified cord entanglement, with compression, complicating labor and delivery, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.23''', NULL,
+ '(663.23) Other and unspecified cord entanglement, with compression, complicating labor and delivery, antepartum condition or complication', '(663.23) Other and unspecified cord entanglement, with compression, complicating labor and delivery, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.3''', NULL,
+ 'Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)', 'Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)\(663.30) Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)\(663.30) Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.30''', NULL,
+ '(663.30) Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, unspecified as to episode of care or not applicable', '(663.30) Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)\(663.31) Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)\(663.31) Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.31''', NULL,
+ '(663.31) Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, delivered, with or without mention of antepartum condition', '(663.31) Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)\(663.33) Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery (663.3)\(663.33) Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.33''', NULL,
+ '(663.33) Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, antepartum condition or complication', '(663.33) Other and unspecified cord entanglement, without mention of compression, complicating labor and delivery, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other umbilical cord complications during labor and delivery (663.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other umbilical cord complications during labor and delivery (663.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.8''', NULL,
+ 'Other umbilical cord complications during labor and delivery (663.8)', 'Other umbilical cord complications during labor and delivery (663.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other umbilical cord complications during labor and delivery (663.8)\(663.80) Other umbilical cord complications complicating labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other umbilical cord complications during labor and delivery (663.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other umbilical cord complications during labor and delivery (663.8)\(663.80) Other umbilical cord complications complicating labor and delivery, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.80''', NULL,
+ '(663.80) Other umbilical cord complications complicating labor and delivery, unspecified as to episode of care or not applicable', '(663.80) Other umbilical cord complications complicating labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other umbilical cord complications during labor and delivery (663.8)\(663.81) Other umbilical cord complications complicating labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other umbilical cord complications during labor and delivery (663.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other umbilical cord complications during labor and delivery (663.8)\(663.81) Other umbilical cord complications complicating labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.81''', NULL,
+ '(663.81) Other umbilical cord complications complicating labor and delivery, delivered, with or without mention of antepartum condition', '(663.81) Other umbilical cord complications complicating labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other umbilical cord complications during labor and delivery (663.8)\(663.83) Other umbilical cord complications complicating labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other umbilical cord complications during labor and delivery (663.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Other umbilical cord complications during labor and delivery (663.8)\(663.83) Other umbilical cord complications complicating labor and delivery, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.83''', NULL,
+ '(663.83) Other umbilical cord complications complicating labor and delivery, antepartum condition or complication', '(663.83) Other umbilical cord complications complicating labor and delivery, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Prolapse of cord complicating labor and delivery (663.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Prolapse of cord complicating labor and delivery (663.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.0''', NULL,
+ 'Prolapse of cord complicating labor and delivery (663.0)', 'Prolapse of cord complicating labor and delivery (663.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Prolapse of cord complicating labor and delivery (663.0)\(663.00) Prolapse of cord complicating labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Prolapse of cord complicating labor and delivery (663.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Prolapse of cord complicating labor and delivery (663.0)\(663.00) Prolapse of cord complicating labor and delivery, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.00''', NULL,
+ '(663.00) Prolapse of cord complicating labor and delivery, unspecified as to episode of care or not applicable', '(663.00) Prolapse of cord complicating labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Prolapse of cord complicating labor and delivery (663.0)\(663.01) Prolapse of cord complicating labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Prolapse of cord complicating labor and delivery (663.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Prolapse of cord complicating labor and delivery (663.0)\(663.01) Prolapse of cord complicating labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.01''', NULL,
+ '(663.01) Prolapse of cord complicating labor and delivery, delivered, with or without mention of antepartum condition', '(663.01) Prolapse of cord complicating labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Prolapse of cord complicating labor and delivery (663.0)\(663.03) Prolapse of cord complicating labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Prolapse of cord complicating labor and delivery (663.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Prolapse of cord complicating labor and delivery (663.0)\(663.03) Prolapse of cord complicating labor and delivery, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.03''', NULL,
+ '(663.03) Prolapse of cord complicating labor and delivery, antepartum condition or complication', '(663.03) Prolapse of cord complicating labor and delivery, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Short cord complicating labor and delivery (663.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Short cord complicating labor and delivery (663.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.4''', NULL,
+ 'Short cord complicating labor and delivery (663.4)', 'Short cord complicating labor and delivery (663.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Short cord complicating labor and delivery (663.4)\(663.40) Short cord complicating labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Short cord complicating labor and delivery (663.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Short cord complicating labor and delivery (663.4)\(663.40) Short cord complicating labor and delivery, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.40''', NULL,
+ '(663.40) Short cord complicating labor and delivery, unspecified as to episode of care or not applicable', '(663.40) Short cord complicating labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Short cord complicating labor and delivery (663.4)\(663.41) Short cord complicating labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Short cord complicating labor and delivery (663.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Short cord complicating labor and delivery (663.4)\(663.41) Short cord complicating labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.41''', NULL,
+ '(663.41) Short cord complicating labor and delivery, delivered, with or without mention of antepartum condition', '(663.41) Short cord complicating labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Short cord complicating labor and delivery (663.4)\(663.43) Short cord complicating labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Short cord complicating labor and delivery (663.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Short cord complicating labor and delivery (663.4)\(663.43) Short cord complicating labor and delivery, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.43''', NULL,
+ '(663.43) Short cord complicating labor and delivery, antepartum condition or complication', '(663.43) Short cord complicating labor and delivery, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Unspecified umbilical cord complication during labor and delivery (663.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Unspecified umbilical cord complication during labor and delivery (663.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.9''', NULL,
+ 'Unspecified umbilical cord complication during labor and delivery (663.9)', 'Unspecified umbilical cord complication during labor and delivery (663.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Unspecified umbilical cord complication during labor and delivery (663.9)\(663.90) Unspecified umbilical cord complication complicating labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Unspecified umbilical cord complication during labor and delivery (663.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Unspecified umbilical cord complication during labor and delivery (663.9)\(663.90) Unspecified umbilical cord complication complicating labor and delivery, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.90''', NULL,
+ '(663.90) Unspecified umbilical cord complication complicating labor and delivery, unspecified as to episode of care or not applicable', '(663.90) Unspecified umbilical cord complication complicating labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Unspecified umbilical cord complication during labor and delivery (663.9)\(663.91) Unspecified umbilical cord complication complicating labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Unspecified umbilical cord complication during labor and delivery (663.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Unspecified umbilical cord complication during labor and delivery (663.9)\(663.91) Unspecified umbilical cord complication complicating labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.91''', NULL,
+ '(663.91) Unspecified umbilical cord complication complicating labor and delivery, delivered, with or without mention of antepartum condition', '(663.91) Unspecified umbilical cord complication complicating labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Unspecified umbilical cord complication during labor and delivery (663.9)\(663.93) Unspecified umbilical cord complication complicating labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Unspecified umbilical cord complication during labor and delivery (663.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Unspecified umbilical cord complication during labor and delivery (663.9)\(663.93) Unspecified umbilical cord complication complicating labor and delivery, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.93''', NULL,
+ '(663.93) Unspecified umbilical cord complication complicating labor and delivery, antepartum condition or complication', '(663.93) Unspecified umbilical cord complication complicating labor and delivery, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vasa previa complicating labor and delivery (663.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vasa previa complicating labor and delivery (663.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.5''', NULL,
+ 'Vasa previa complicating labor and delivery (663.5)', 'Vasa previa complicating labor and delivery (663.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vasa previa complicating labor and delivery (663.5)\(663.50) Vasa previa complicating labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vasa previa complicating labor and delivery (663.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vasa previa complicating labor and delivery (663.5)\(663.50) Vasa previa complicating labor and delivery, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.50''', NULL,
+ '(663.50) Vasa previa complicating labor and delivery, unspecified as to episode of care or not applicable', '(663.50) Vasa previa complicating labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vasa previa complicating labor and delivery (663.5)\(663.51) Vasa previa complicating labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vasa previa complicating labor and delivery (663.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vasa previa complicating labor and delivery (663.5)\(663.51) Vasa previa complicating labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.51''', NULL,
+ '(663.51) Vasa previa complicating labor and delivery, delivered, with or without mention of antepartum condition', '(663.51) Vasa previa complicating labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vasa previa complicating labor and delivery (663.5)\(663.53) Vasa previa complicating labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vasa previa complicating labor and delivery (663.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vasa previa complicating labor and delivery (663.5)\(663.53) Vasa previa complicating labor and delivery, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.53''', NULL,
+ '(663.53) Vasa previa complicating labor and delivery, antepartum condition or complication', '(663.53) Vasa previa complicating labor and delivery, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vascular lesions of cord complicating labor and delivery (663.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vascular lesions of cord complicating labor and delivery (663.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.6''', NULL,
+ 'Vascular lesions of cord complicating labor and delivery (663.6)', 'Vascular lesions of cord complicating labor and delivery (663.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vascular lesions of cord complicating labor and delivery (663.6)\(663.60) Vascular lesions of cord complicating labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vascular lesions of cord complicating labor and delivery (663.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vascular lesions of cord complicating labor and delivery (663.6)\(663.60) Vascular lesions of cord complicating labor and delivery, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.60''', NULL,
+ '(663.60) Vascular lesions of cord complicating labor and delivery, unspecified as to episode of care or not applicable', '(663.60) Vascular lesions of cord complicating labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vascular lesions of cord complicating labor and delivery (663.6)\(663.61) Vascular lesions of cord complicating labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vascular lesions of cord complicating labor and delivery (663.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vascular lesions of cord complicating labor and delivery (663.6)\(663.61) Vascular lesions of cord complicating labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.61''', NULL,
+ '(663.61) Vascular lesions of cord complicating labor and delivery, delivered, with or without mention of antepartum condition', '(663.61) Vascular lesions of cord complicating labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vascular lesions of cord complicating labor and delivery (663.6)\(663.63) Vascular lesions of cord complicating labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vascular lesions of cord complicating labor and delivery (663.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications occurring mainly in the course of labor and delivery (660-669.99)\Umbilical cord complications during labor and delivery (663)\Vascular lesions of cord complicating labor and delivery (663.6)\(663.63) Vascular lesions of cord complicating labor and delivery, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''663.63''', NULL,
+ '(663.63) Vascular lesions of cord complicating labor and delivery, antepartum condition or complication', '(663.63) Vascular lesions of cord complicating labor and delivery, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''670'' AND ''677.99''', NULL,
+ 'Complications of the puerperium (670-677.99)', 'Complications of the puerperium (670-677.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\(677) Late effect of complication of pregnancy, childbirth, and the puerperium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\(677) Late effect of complication of pregnancy, childbirth, and the puerperium\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''677''', NULL,
+ '(677) Late effect of complication of pregnancy, childbirth, and the puerperium', '(677) Late effect of complication of pregnancy, childbirth, and the puerperium', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675''', NULL,
+ 'Infections of the breast and nipple associated with childbirth (675)', 'Infections of the breast and nipple associated with childbirth (675)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.1''', NULL,
+ 'Abscess of breast associated with childbirth (675.1)', 'Abscess of breast associated with childbirth (675.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\(675.10) Abscess of breast associated with childbirth, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\(675.10) Abscess of breast associated with childbirth, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.10''', NULL,
+ '(675.10) Abscess of breast associated with childbirth, unspecified as to episode of care or not applicable', '(675.10) Abscess of breast associated with childbirth, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\(675.11) Abscess of breast associated with childbirth, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\(675.11) Abscess of breast associated with childbirth, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.11''', NULL,
+ '(675.11) Abscess of breast associated with childbirth, delivered, with or without mention of antepartum condition', '(675.11) Abscess of breast associated with childbirth, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\(675.12) Abscess of breast associated with childbirth, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\(675.12) Abscess of breast associated with childbirth, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.12''', NULL,
+ '(675.12) Abscess of breast associated with childbirth, delivered, with mention of postpartum complication', '(675.12) Abscess of breast associated with childbirth, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\(675.13) Abscess of breast associated with childbirth, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\(675.13) Abscess of breast associated with childbirth, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.13''', NULL,
+ '(675.13) Abscess of breast associated with childbirth, antepartum condition or complication', '(675.13) Abscess of breast associated with childbirth, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\(675.14) Abscess of breast associated with childbirth, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Abscess of breast associated with childbirth (675.1)\(675.14) Abscess of breast associated with childbirth, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.14''', NULL,
+ '(675.14) Abscess of breast associated with childbirth, postpartum condition or complication', '(675.14) Abscess of breast associated with childbirth, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.0''', NULL,
+ 'Infections of nipple associated with childbirth (675.0)', 'Infections of nipple associated with childbirth (675.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\(675.00) Infections of nipple associated with childbirth, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\(675.00) Infections of nipple associated with childbirth, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.00''', NULL,
+ '(675.00) Infections of nipple associated with childbirth, unspecified as to episode of care or not applicable', '(675.00) Infections of nipple associated with childbirth, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\(675.01) Infections of nipple associated with childbirth, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\(675.01) Infections of nipple associated with childbirth, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.01''', NULL,
+ '(675.01) Infections of nipple associated with childbirth, delivered, with or without mention of antepartum condition', '(675.01) Infections of nipple associated with childbirth, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\(675.02) Infections of nipple associated with childbirth, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\(675.02) Infections of nipple associated with childbirth, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.02''', NULL,
+ '(675.02) Infections of nipple associated with childbirth, delivered, with mention of postpartum complication', '(675.02) Infections of nipple associated with childbirth, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\(675.03) Infections of nipple associated with childbirth, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\(675.03) Infections of nipple associated with childbirth, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.03''', NULL,
+ '(675.03) Infections of nipple associated with childbirth, antepartum condition or complication', '(675.03) Infections of nipple associated with childbirth, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\(675.04) Infections of nipple associated with childbirth, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Infections of nipple associated with childbirth (675.0)\(675.04) Infections of nipple associated with childbirth, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.04''', NULL,
+ '(675.04) Infections of nipple associated with childbirth, postpartum condition or complication', '(675.04) Infections of nipple associated with childbirth, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.2''', NULL,
+ 'Nonpurulent mastitis associated with childbirth (675.2)', 'Nonpurulent mastitis associated with childbirth (675.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\(675.20) Nonpurulent mastitis associated with childbirth, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\(675.20) Nonpurulent mastitis associated with childbirth, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.20''', NULL,
+ '(675.20) Nonpurulent mastitis associated with childbirth, unspecified as to episode of care or not applicable', '(675.20) Nonpurulent mastitis associated with childbirth, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\(675.21) Nonpurulent mastitis associated with childbirth, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\(675.21) Nonpurulent mastitis associated with childbirth, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.21''', NULL,
+ '(675.21) Nonpurulent mastitis associated with childbirth, delivered, with or without mention of antepartum condition', '(675.21) Nonpurulent mastitis associated with childbirth, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\(675.22) Nonpurulent mastitis associated with childbirth, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\(675.22) Nonpurulent mastitis associated with childbirth, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.22''', NULL,
+ '(675.22) Nonpurulent mastitis associated with childbirth, delivered, with mention of postpartum complication', '(675.22) Nonpurulent mastitis associated with childbirth, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\(675.23) Nonpurulent mastitis associated with childbirth, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\(675.23) Nonpurulent mastitis associated with childbirth, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.23''', NULL,
+ '(675.23) Nonpurulent mastitis associated with childbirth, antepartum condition or complication', '(675.23) Nonpurulent mastitis associated with childbirth, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\(675.24) Nonpurulent mastitis associated with childbirth, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Nonpurulent mastitis associated with childbirth (675.2)\(675.24) Nonpurulent mastitis associated with childbirth, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.24''', NULL,
+ '(675.24) Nonpurulent mastitis associated with childbirth, postpartum condition or complication', '(675.24) Nonpurulent mastitis associated with childbirth, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.8''', NULL,
+ 'Other specified infections of the breast and nipple associated with childbirth (675.8)', 'Other specified infections of the breast and nipple associated with childbirth (675.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\(675.80) Other specified infections of the breast and nipple associated with childbirth, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\(675.80) Other specified infections of the breast and nipple associated with childbirth, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.80''', NULL,
+ '(675.80) Other specified infections of the breast and nipple associated with childbirth, unspecified as to episode of care or not applicable', '(675.80) Other specified infections of the breast and nipple associated with childbirth, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\(675.81) Other specified infections of the breast and nipple associated with childbirth, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\(675.81) Other specified infections of the breast and nipple associated with childbirth, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.81''', NULL,
+ '(675.81) Other specified infections of the breast and nipple associated with childbirth, delivered, with or without mention of antepartum condition', '(675.81) Other specified infections of the breast and nipple associated with childbirth, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\(675.82) Other specified infections of the breast and nipple associated with childbirth, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\(675.82) Other specified infections of the breast and nipple associated with childbirth, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.82''', NULL,
+ '(675.82) Other specified infections of the breast and nipple associated with childbirth, delivered, with mention of postpartum complication', '(675.82) Other specified infections of the breast and nipple associated with childbirth, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\(675.83) Other specified infections of the breast and nipple associated with childbirth, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\(675.83) Other specified infections of the breast and nipple associated with childbirth, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.83''', NULL,
+ '(675.83) Other specified infections of the breast and nipple associated with childbirth, antepartum condition or complication', '(675.83) Other specified infections of the breast and nipple associated with childbirth, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\(675.84) Other specified infections of the breast and nipple associated with childbirth, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Other specified infections of the breast and nipple associated with childbirth (675.8)\(675.84) Other specified infections of the breast and nipple associated with childbirth, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.84''', NULL,
+ '(675.84) Other specified infections of the breast and nipple associated with childbirth, postpartum condition or complication', '(675.84) Other specified infections of the breast and nipple associated with childbirth, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.9''', NULL,
+ 'Unspecified infection of the breast and nipple associated with childbirth (675.9)', 'Unspecified infection of the breast and nipple associated with childbirth (675.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\(675.90) Unspecified infection of the breast and nipple associated with childbirth, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\(675.90) Unspecified infection of the breast and nipple associated with childbirth, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.90''', NULL,
+ '(675.90) Unspecified infection of the breast and nipple associated with childbirth, unspecified as to episode of care or not applicable', '(675.90) Unspecified infection of the breast and nipple associated with childbirth, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\(675.91) Unspecified infection of the breast and nipple associated with childbirth, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\(675.91) Unspecified infection of the breast and nipple associated with childbirth, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.91''', NULL,
+ '(675.91) Unspecified infection of the breast and nipple associated with childbirth, delivered, with or without mention of antepartum condition', '(675.91) Unspecified infection of the breast and nipple associated with childbirth, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\(675.92) Unspecified infection of the breast and nipple associated with childbirth, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\(675.92) Unspecified infection of the breast and nipple associated with childbirth, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.92''', NULL,
+ '(675.92) Unspecified infection of the breast and nipple associated with childbirth, delivered, with mention of postpartum complication', '(675.92) Unspecified infection of the breast and nipple associated with childbirth, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\(675.93) Unspecified infection of the breast and nipple associated with childbirth, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\(675.93) Unspecified infection of the breast and nipple associated with childbirth, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.93''', NULL,
+ '(675.93) Unspecified infection of the breast and nipple associated with childbirth, antepartum condition or complication', '(675.93) Unspecified infection of the breast and nipple associated with childbirth, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\(675.94) Unspecified infection of the breast and nipple associated with childbirth, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Infections of the breast and nipple associated with childbirth (675)\Unspecified infection of the breast and nipple associated with childbirth (675.9)\(675.94) Unspecified infection of the breast and nipple associated with childbirth, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''675.94''', NULL,
+ '(675.94) Unspecified infection of the breast and nipple associated with childbirth, postpartum condition or complication', '(675.94) Unspecified infection of the breast and nipple associated with childbirth, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''670''', NULL,
+ 'Major puerperal infection (670)', 'Major puerperal infection (670)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Major puerperal infection, unspecified (670.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Major puerperal infection, unspecified (670.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''670.0''', NULL,
+ 'Major puerperal infection, unspecified (670.0)', 'Major puerperal infection, unspecified (670.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Major puerperal infection, unspecified (670.0)\(670.00) Major puerperal infection, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Major puerperal infection, unspecified (670.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Major puerperal infection, unspecified (670.0)\(670.00) Major puerperal infection, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''670.00''', NULL,
+ '(670.00) Major puerperal infection, unspecified as to episode of care or not applicable', '(670.00) Major puerperal infection, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Major puerperal infection, unspecified (670.0)\(670.02) Major puerperal infection, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Major puerperal infection, unspecified (670.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Major puerperal infection, unspecified (670.0)\(670.02) Major puerperal infection, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''670.02''', NULL,
+ '(670.02) Major puerperal infection, delivered, with mention of postpartum complication', '(670.02) Major puerperal infection, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Major puerperal infection, unspecified (670.0)\(670.04) Major puerperal infection, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Major puerperal infection, unspecified (670.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Major puerperal infection, unspecified (670.0)\(670.04) Major puerperal infection, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''670.04''', NULL,
+ '(670.04) Major puerperal infection, postpartum condition or complication', '(670.04) Major puerperal infection, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Other major puerperal infection (670.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Other major puerperal infection (670.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''670.8''', NULL,
+ 'Other major puerperal infection (670.8)', 'Other major puerperal infection (670.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Other major puerperal infection (670.8)\(670.82) Other major puerperal infection, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Other major puerperal infection (670.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Other major puerperal infection (670.8)\(670.82) Other major puerperal infection, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''670.82''', NULL,
+ '(670.82) Other major puerperal infection, delivered, with mention of postpartum complication', '(670.82) Other major puerperal infection, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Other major puerperal infection (670.8)\(670.84) Other major puerperal infection, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Other major puerperal infection (670.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Other major puerperal infection (670.8)\(670.84) Other major puerperal infection, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''670.84''', NULL,
+ '(670.84) Other major puerperal infection, postpartum condition or complication', '(670.84) Other major puerperal infection, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal endometritis (670.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal endometritis (670.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''670.1''', NULL,
+ 'Puerperal endometritis (670.1)', 'Puerperal endometritis (670.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal endometritis (670.1)\(670.12) Puerperal endometritis, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal endometritis (670.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal endometritis (670.1)\(670.12) Puerperal endometritis, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''670.12''', NULL,
+ '(670.12) Puerperal endometritis, delivered, with mention of postpartum complication', '(670.12) Puerperal endometritis, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal endometritis (670.1)\(670.14) Puerperal endometritis, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal endometritis (670.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal endometritis (670.1)\(670.14) Puerperal endometritis, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''670.14''', NULL,
+ '(670.14) Puerperal endometritis, postpartum condition or complication', '(670.14) Puerperal endometritis, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal sepsis (670.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal sepsis (670.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''670.2''', NULL,
+ 'Puerperal sepsis (670.2)', 'Puerperal sepsis (670.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal sepsis (670.2)\(670.20) Puerperal sepsis, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal sepsis (670.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal sepsis (670.2)\(670.20) Puerperal sepsis, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''670.20''', NULL,
+ '(670.20) Puerperal sepsis, unspecified as to episode of care or not applicable', '(670.20) Puerperal sepsis, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal sepsis (670.2)\(670.24) Puerperal sepsis, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal sepsis (670.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Major puerperal infection (670)\Puerperal sepsis (670.2)\(670.24) Puerperal sepsis, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''670.24''', NULL,
+ '(670.24) Puerperal sepsis, postpartum condition or complication', '(670.24) Puerperal sepsis, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673''', NULL,
+ 'Obstetrical pulmonary embolism (673)', 'Obstetrical pulmonary embolism (673)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.1''', NULL,
+ 'Amniotic fluid embolism (673.1)', 'Amniotic fluid embolism (673.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\(673.10) Amniotic fluid embolism, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\(673.10) Amniotic fluid embolism, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.10''', NULL,
+ '(673.10) Amniotic fluid embolism, unspecified as to episode of care or not applicable', '(673.10) Amniotic fluid embolism, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\(673.11) Amniotic fluid embolism, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\(673.11) Amniotic fluid embolism, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.11''', NULL,
+ '(673.11) Amniotic fluid embolism, delivered, with or without mention of antepartum condition', '(673.11) Amniotic fluid embolism, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\(673.12) Amniotic fluid embolism, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\(673.12) Amniotic fluid embolism, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.12''', NULL,
+ '(673.12) Amniotic fluid embolism, delivered, with mention of postpartum complication', '(673.12) Amniotic fluid embolism, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\(673.13) Amniotic fluid embolism, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\(673.13) Amniotic fluid embolism, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.13''', NULL,
+ '(673.13) Amniotic fluid embolism, antepartum condition or complication', '(673.13) Amniotic fluid embolism, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\(673.14) Amniotic fluid embolism, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Amniotic fluid embolism (673.1)\(673.14) Amniotic fluid embolism, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.14''', NULL,
+ '(673.14) Amniotic fluid embolism, postpartum condition or complication', '(673.14) Amniotic fluid embolism, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.0''', NULL,
+ 'Obstetrical air embolism (673.0)', 'Obstetrical air embolism (673.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\(673.00) Obstetrical air embolism, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\(673.00) Obstetrical air embolism, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.00''', NULL,
+ '(673.00) Obstetrical air embolism, unspecified as to episode of care or not applicable', '(673.00) Obstetrical air embolism, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\(673.01) Obstetrical air embolism, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\(673.01) Obstetrical air embolism, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.01''', NULL,
+ '(673.01) Obstetrical air embolism, delivered, with or without mention of antepartum condition', '(673.01) Obstetrical air embolism, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\(673.02) Obstetrical air embolism, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\(673.02) Obstetrical air embolism, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.02''', NULL,
+ '(673.02) Obstetrical air embolism, delivered, with mention of postpartum complication', '(673.02) Obstetrical air embolism, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\(673.03) Obstetrical air embolism, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\(673.03) Obstetrical air embolism, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.03''', NULL,
+ '(673.03) Obstetrical air embolism, antepartum condition or complication', '(673.03) Obstetrical air embolism, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\(673.04) Obstetrical air embolism, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical air embolism (673.0)\(673.04) Obstetrical air embolism, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.04''', NULL,
+ '(673.04) Obstetrical air embolism, postpartum condition or complication', '(673.04) Obstetrical air embolism, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.2''', NULL,
+ 'Obstetrical blood-clot embolism (673.2)', 'Obstetrical blood-clot embolism (673.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\(673.20) Obstetrical blood-clot embolism, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\(673.20) Obstetrical blood-clot embolism, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.20''', NULL,
+ '(673.20) Obstetrical blood-clot embolism, unspecified as to episode of care or not applicable', '(673.20) Obstetrical blood-clot embolism, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\(673.21) Obstetrical blood-clot embolism, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\(673.21) Obstetrical blood-clot embolism, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.21''', NULL,
+ '(673.21) Obstetrical blood-clot embolism, delivered, with or without mention of antepartum condition', '(673.21) Obstetrical blood-clot embolism, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\(673.22) Obstetrical blood-clot embolism, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\(673.22) Obstetrical blood-clot embolism, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.22''', NULL,
+ '(673.22) Obstetrical blood-clot embolism, delivered, with mention of postpartum complication', '(673.22) Obstetrical blood-clot embolism, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\(673.23) Obstetrical blood-clot embolism, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\(673.23) Obstetrical blood-clot embolism, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.23''', NULL,
+ '(673.23) Obstetrical blood-clot embolism, antepartum condition or complication', '(673.23) Obstetrical blood-clot embolism, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\(673.24) Obstetrical blood-clot embolism, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical blood-clot embolism (673.2)\(673.24) Obstetrical blood-clot embolism, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.24''', NULL,
+ '(673.24) Obstetrical blood-clot embolism, postpartum condition or complication', '(673.24) Obstetrical blood-clot embolism, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.3''', NULL,
+ 'Obstetrical pyemic and septic embolism (673.3)', 'Obstetrical pyemic and septic embolism (673.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\(673.30) Obstetrical pyemic and septic embolism, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\(673.30) Obstetrical pyemic and septic embolism, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.30''', NULL,
+ '(673.30) Obstetrical pyemic and septic embolism, unspecified as to episode of care or not applicable', '(673.30) Obstetrical pyemic and septic embolism, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\(673.31) Obstetrical pyemic and septic embolism, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\(673.31) Obstetrical pyemic and septic embolism, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.31''', NULL,
+ '(673.31) Obstetrical pyemic and septic embolism, delivered, with or without mention of antepartum condition', '(673.31) Obstetrical pyemic and septic embolism, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\(673.32) Obstetrical pyemic and septic embolism, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\(673.32) Obstetrical pyemic and septic embolism, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.32''', NULL,
+ '(673.32) Obstetrical pyemic and septic embolism, delivered, with mention of postpartum complication', '(673.32) Obstetrical pyemic and septic embolism, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\(673.33) Obstetrical pyemic and septic embolism, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\(673.33) Obstetrical pyemic and septic embolism, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.33''', NULL,
+ '(673.33) Obstetrical pyemic and septic embolism, antepartum condition or complication', '(673.33) Obstetrical pyemic and septic embolism, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\(673.34) Obstetrical pyemic and septic embolism, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Obstetrical pyemic and septic embolism (673.3)\(673.34) Obstetrical pyemic and septic embolism, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.34''', NULL,
+ '(673.34) Obstetrical pyemic and septic embolism, postpartum condition or complication', '(673.34) Obstetrical pyemic and septic embolism, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.8''', NULL,
+ 'Other obstetrical pulmonary embolism (673.8)', 'Other obstetrical pulmonary embolism (673.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\(673.80) Other obstetrical pulmonary embolism, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\(673.80) Other obstetrical pulmonary embolism, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.80''', NULL,
+ '(673.80) Other obstetrical pulmonary embolism, unspecified as to episode of care or not applicable', '(673.80) Other obstetrical pulmonary embolism, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\(673.81) Other obstetrical pulmonary embolism, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\(673.81) Other obstetrical pulmonary embolism, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.81''', NULL,
+ '(673.81) Other obstetrical pulmonary embolism, delivered, with or without mention of antepartum condition', '(673.81) Other obstetrical pulmonary embolism, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\(673.82) Other obstetrical pulmonary embolism, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\(673.82) Other obstetrical pulmonary embolism, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.82''', NULL,
+ '(673.82) Other obstetrical pulmonary embolism, delivered, with mention of postpartum complication', '(673.82) Other obstetrical pulmonary embolism, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\(673.83) Other obstetrical pulmonary embolism, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\(673.83) Other obstetrical pulmonary embolism, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.83''', NULL,
+ '(673.83) Other obstetrical pulmonary embolism, antepartum condition or complication', '(673.83) Other obstetrical pulmonary embolism, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\(673.84) Other obstetrical pulmonary embolism, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Obstetrical pulmonary embolism (673)\Other obstetrical pulmonary embolism (673.8)\(673.84) Other obstetrical pulmonary embolism, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''673.84''', NULL,
+ '(673.84) Other obstetrical pulmonary embolism, postpartum condition or complication', '(673.84) Other obstetrical pulmonary embolism, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674''', NULL,
+ 'Other and unspecified complications of the puerperium, not elsewhere classified (674)', 'Other and unspecified complications of the puerperium, not elsewhere classified (674)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.0''', NULL,
+ 'Cerebrovascular disorders in the puerperium (674.0)', 'Cerebrovascular disorders in the puerperium (674.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\(674.00) Cerebrovascular disorders in the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\(674.00) Cerebrovascular disorders in the puerperium, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.00''', NULL,
+ '(674.00) Cerebrovascular disorders in the puerperium, unspecified as to episode of care or not applicable', '(674.00) Cerebrovascular disorders in the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\(674.01) Cerebrovascular disorders in the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\(674.01) Cerebrovascular disorders in the puerperium, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.01''', NULL,
+ '(674.01) Cerebrovascular disorders in the puerperium, delivered, with or without mention of antepartum condition', '(674.01) Cerebrovascular disorders in the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\(674.02) Cerebrovascular disorders in the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\(674.02) Cerebrovascular disorders in the puerperium, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.02''', NULL,
+ '(674.02) Cerebrovascular disorders in the puerperium, delivered, with mention of postpartum complication', '(674.02) Cerebrovascular disorders in the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\(674.03) Cerebrovascular disorders in the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\(674.03) Cerebrovascular disorders in the puerperium, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.03''', NULL,
+ '(674.03) Cerebrovascular disorders in the puerperium, antepartum condition or complication', '(674.03) Cerebrovascular disorders in the puerperium, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\(674.04) Cerebrovascular disorders in the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Cerebrovascular disorders in the puerperium (674.0)\(674.04) Cerebrovascular disorders in the puerperium, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.04''', NULL,
+ '(674.04) Cerebrovascular disorders in the puerperium, postpartum condition or complication', '(674.04) Cerebrovascular disorders in the puerperium, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of cesarean wound (674.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of cesarean wound (674.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.1''', NULL,
+ 'Disruption of cesarean wound (674.1)', 'Disruption of cesarean wound (674.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of cesarean wound (674.1)\(674.10) Disruption of cesarean wound, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of cesarean wound (674.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of cesarean wound (674.1)\(674.10) Disruption of cesarean wound, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.10''', NULL,
+ '(674.10) Disruption of cesarean wound, unspecified as to episode of care or not applicable', '(674.10) Disruption of cesarean wound, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of cesarean wound (674.1)\(674.12) Disruption of cesarean wound, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of cesarean wound (674.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of cesarean wound (674.1)\(674.12) Disruption of cesarean wound, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.12''', NULL,
+ '(674.12) Disruption of cesarean wound, delivered, with mention of postpartum complication', '(674.12) Disruption of cesarean wound, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of cesarean wound (674.1)\(674.14) Disruption of cesarean wound, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of cesarean wound (674.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of cesarean wound (674.1)\(674.14) Disruption of cesarean wound, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.14''', NULL,
+ '(674.14) Disruption of cesarean wound, postpartum condition or complication', '(674.14) Disruption of cesarean wound, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of obstetrical perineal wound (674.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of obstetrical perineal wound (674.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.2''', NULL,
+ 'Disruption of obstetrical perineal wound (674.2)', 'Disruption of obstetrical perineal wound (674.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of obstetrical perineal wound (674.2)\(674.20) Disruption of perineal wound, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of obstetrical perineal wound (674.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of obstetrical perineal wound (674.2)\(674.20) Disruption of perineal wound, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.20''', NULL,
+ '(674.20) Disruption of perineal wound, unspecified as to episode of care or not applicable', '(674.20) Disruption of perineal wound, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of obstetrical perineal wound (674.2)\(674.22) Disruption of perineal wound, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of obstetrical perineal wound (674.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of obstetrical perineal wound (674.2)\(674.22) Disruption of perineal wound, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.22''', NULL,
+ '(674.22) Disruption of perineal wound, delivered, with mention of postpartum complication', '(674.22) Disruption of perineal wound, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of obstetrical perineal wound (674.2)\(674.24) Disruption of perineal wound, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of obstetrical perineal wound (674.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Disruption of obstetrical perineal wound (674.2)\(674.24) Disruption of perineal wound, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.24''', NULL,
+ '(674.24) Disruption of perineal wound, postpartum condition or complication', '(674.24) Disruption of perineal wound, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of obstetrical surgical wounds (674.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of obstetrical surgical wounds (674.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.3''', NULL,
+ 'Other complications of obstetrical surgical wounds (674.3)', 'Other complications of obstetrical surgical wounds (674.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of obstetrical surgical wounds (674.3)\(674.30) Other complications of obstetrical surgical wounds, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of obstetrical surgical wounds (674.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of obstetrical surgical wounds (674.3)\(674.30) Other complications of obstetrical surgical wounds, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.30''', NULL,
+ '(674.30) Other complications of obstetrical surgical wounds, unspecified as to episode of care or not applicable', '(674.30) Other complications of obstetrical surgical wounds, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of obstetrical surgical wounds (674.3)\(674.32) Other complications of obstetrical surgical wounds, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of obstetrical surgical wounds (674.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of obstetrical surgical wounds (674.3)\(674.32) Other complications of obstetrical surgical wounds, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.32''', NULL,
+ '(674.32) Other complications of obstetrical surgical wounds, delivered, with mention of postpartum complication', '(674.32) Other complications of obstetrical surgical wounds, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of obstetrical surgical wounds (674.3)\(674.34) Other complications of obstetrical surgical wounds, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of obstetrical surgical wounds (674.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of obstetrical surgical wounds (674.3)\(674.34) Other complications of obstetrical surgical wounds, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.34''', NULL,
+ '(674.34) Other complications of obstetrical surgical wounds, postpartum condition or complication', '(674.34) Other complications of obstetrical surgical wounds, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of the puerperium (674.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of the puerperium (674.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.8''', NULL,
+ 'Other complications of the puerperium (674.8)', 'Other complications of the puerperium (674.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of the puerperium (674.8)\(674.80) Other complications of puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of the puerperium (674.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of the puerperium (674.8)\(674.80) Other complications of puerperium, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.80''', NULL,
+ '(674.80) Other complications of puerperium, unspecified as to episode of care or not applicable', '(674.80) Other complications of puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of the puerperium (674.8)\(674.82) Other complications of puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of the puerperium (674.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of the puerperium (674.8)\(674.82) Other complications of puerperium, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.82''', NULL,
+ '(674.82) Other complications of puerperium, delivered, with mention of postpartum complication', '(674.82) Other complications of puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of the puerperium (674.8)\(674.84) Other complications of puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of the puerperium (674.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Other complications of the puerperium (674.8)\(674.84) Other complications of puerperium, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.84''', NULL,
+ '(674.84) Other complications of puerperium, postpartum condition or complication', '(674.84) Other complications of puerperium, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.5''', NULL,
+ 'Peripartum cardiomyopathy (674.5)', 'Peripartum cardiomyopathy (674.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\(674.50) Peripartum cardiomyopathy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\(674.50) Peripartum cardiomyopathy, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.50''', NULL,
+ '(674.50) Peripartum cardiomyopathy, unspecified as to episode of care or not applicable', '(674.50) Peripartum cardiomyopathy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\(674.51) Peripartum cardiomyopathy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\(674.51) Peripartum cardiomyopathy, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.51''', NULL,
+ '(674.51) Peripartum cardiomyopathy, delivered, with or without mention of antepartum condition', '(674.51) Peripartum cardiomyopathy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\(674.52) Peripartum cardiomyopathy, delivered, with mention of postpartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\(674.52) Peripartum cardiomyopathy, delivered, with mention of postpartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.52''', NULL,
+ '(674.52) Peripartum cardiomyopathy, delivered, with mention of postpartum condition', '(674.52) Peripartum cardiomyopathy, delivered, with mention of postpartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\(674.53) Peripartum cardiomyopathy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\(674.53) Peripartum cardiomyopathy, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.53''', NULL,
+ '(674.53) Peripartum cardiomyopathy, antepartum condition or complication', '(674.53) Peripartum cardiomyopathy, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\(674.54) Peripartum cardiomyopathy, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Peripartum cardiomyopathy (674.5)\(674.54) Peripartum cardiomyopathy, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.54''', NULL,
+ '(674.54) Peripartum cardiomyopathy, postpartum condition or complication', '(674.54) Peripartum cardiomyopathy, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Placental polyp (674.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Placental polyp (674.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.4''', NULL,
+ 'Placental polyp (674.4)', 'Placental polyp (674.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Placental polyp (674.4)\(674.40) Placental polyp, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Placental polyp (674.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Placental polyp (674.4)\(674.40) Placental polyp, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.40''', NULL,
+ '(674.40) Placental polyp, unspecified as to episode of care or not applicable', '(674.40) Placental polyp, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Placental polyp (674.4)\(674.42) Placental polyp, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Placental polyp (674.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Placental polyp (674.4)\(674.42) Placental polyp, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.42''', NULL,
+ '(674.42) Placental polyp, delivered, with mention of postpartum complication', '(674.42) Placental polyp, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Placental polyp (674.4)\(674.44) Placental polyp, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Placental polyp (674.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Placental polyp (674.4)\(674.44) Placental polyp, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.44''', NULL,
+ '(674.44) Placental polyp, postpartum condition or complication', '(674.44) Placental polyp, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Unspecified complications of the puerperium (674.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Unspecified complications of the puerperium (674.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.9''', NULL,
+ 'Unspecified complications of the puerperium (674.9)', 'Unspecified complications of the puerperium (674.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Unspecified complications of the puerperium (674.9)\(674.90) Unspecified complications of puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Unspecified complications of the puerperium (674.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Unspecified complications of the puerperium (674.9)\(674.90) Unspecified complications of puerperium, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.90''', NULL,
+ '(674.90) Unspecified complications of puerperium, unspecified as to episode of care or not applicable', '(674.90) Unspecified complications of puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Unspecified complications of the puerperium (674.9)\(674.92) Unspecified complications of puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Unspecified complications of the puerperium (674.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Unspecified complications of the puerperium (674.9)\(674.92) Unspecified complications of puerperium, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.92''', NULL,
+ '(674.92) Unspecified complications of puerperium, delivered, with mention of postpartum complication', '(674.92) Unspecified complications of puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Unspecified complications of the puerperium (674.9)\(674.94) Unspecified complications of puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Unspecified complications of the puerperium (674.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other and unspecified complications of the puerperium, not elsewhere classified (674)\Unspecified complications of the puerperium (674.9)\(674.94) Unspecified complications of puerperium, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''674.94''', NULL,
+ '(674.94) Unspecified complications of puerperium, postpartum condition or complication', '(674.94) Unspecified complications of puerperium, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676''', NULL,
+ 'Other disorders of the breast associated with childbirth and disorders of lactation (676)', 'Other disorders of the breast associated with childbirth and disorders of lactation (676)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.1''', NULL,
+ 'Cracked nipple associated with childbirth (676.1)', 'Cracked nipple associated with childbirth (676.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\(676.10) Cracked nipple associated with childbirth, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\(676.10) Cracked nipple associated with childbirth, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.10''', NULL,
+ '(676.10) Cracked nipple associated with childbirth, unspecified as to episode of care or not applicable', '(676.10) Cracked nipple associated with childbirth, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\(676.11) Cracked nipple associated with childbirth, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\(676.11) Cracked nipple associated with childbirth, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.11''', NULL,
+ '(676.11) Cracked nipple associated with childbirth, delivered, with or without mention of antepartum condition', '(676.11) Cracked nipple associated with childbirth, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\(676.12) Cracked nipple associated with childbirth, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\(676.12) Cracked nipple associated with childbirth, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.12''', NULL,
+ '(676.12) Cracked nipple associated with childbirth, delivered, with mention of postpartum complication', '(676.12) Cracked nipple associated with childbirth, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\(676.13) Cracked nipple associated with childbirth, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\(676.13) Cracked nipple associated with childbirth, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.13''', NULL,
+ '(676.13) Cracked nipple associated with childbirth, antepartum condition or complication', '(676.13) Cracked nipple associated with childbirth, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\(676.14) Cracked nipple associated with childbirth, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Cracked nipple associated with childbirth (676.1)\(676.14) Cracked nipple associated with childbirth, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.14''', NULL,
+ '(676.14) Cracked nipple associated with childbirth, postpartum condition or complication', '(676.14) Cracked nipple associated with childbirth, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.2''', NULL,
+ 'Engorgement of breasts associated with childbirth (676.2)', 'Engorgement of breasts associated with childbirth (676.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\(676.20) Engorgement of breasts associated with childbirth, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\(676.20) Engorgement of breasts associated with childbirth, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.20''', NULL,
+ '(676.20) Engorgement of breasts associated with childbirth, unspecified as to episode of care or not applicable', '(676.20) Engorgement of breasts associated with childbirth, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\(676.21) Engorgement of breasts associated with childbirth, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\(676.21) Engorgement of breasts associated with childbirth, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.21''', NULL,
+ '(676.21) Engorgement of breasts associated with childbirth, delivered, with or without mention of antepartum condition', '(676.21) Engorgement of breasts associated with childbirth, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\(676.22) Engorgement of breasts associated with childbirth, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\(676.22) Engorgement of breasts associated with childbirth, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.22''', NULL,
+ '(676.22) Engorgement of breasts associated with childbirth, delivered, with mention of postpartum complication', '(676.22) Engorgement of breasts associated with childbirth, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\(676.23) Engorgement of breasts associated with childbirth, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\(676.23) Engorgement of breasts associated with childbirth, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.23''', NULL,
+ '(676.23) Engorgement of breasts associated with childbirth, antepartum condition or complication', '(676.23) Engorgement of breasts associated with childbirth, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\(676.24) Engorgement of breasts associated with childbirth, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Engorgement of breasts associated with childbirth (676.2)\(676.24) Engorgement of breasts associated with childbirth, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.24''', NULL,
+ '(676.24) Engorgement of breasts associated with childbirth, postpartum condition or complication', '(676.24) Engorgement of breasts associated with childbirth, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.4''', NULL,
+ 'Failure of lactation (676.4)', 'Failure of lactation (676.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\(676.40) Failure of lactation, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\(676.40) Failure of lactation, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.40''', NULL,
+ '(676.40) Failure of lactation, unspecified as to episode of care or not applicable', '(676.40) Failure of lactation, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\(676.41) Failure of lactation, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\(676.41) Failure of lactation, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.41''', NULL,
+ '(676.41) Failure of lactation, delivered, with or without mention of antepartum condition', '(676.41) Failure of lactation, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\(676.42) Failure of lactation, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\(676.42) Failure of lactation, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.42''', NULL,
+ '(676.42) Failure of lactation, delivered, with mention of postpartum complication', '(676.42) Failure of lactation, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\(676.43) Failure of lactation, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\(676.43) Failure of lactation, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.43''', NULL,
+ '(676.43) Failure of lactation, antepartum condition or complication', '(676.43) Failure of lactation, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\(676.44) Failure of lactation, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Failure of lactation (676.4)\(676.44) Failure of lactation, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.44''', NULL,
+ '(676.44) Failure of lactation, postpartum condition or complication', '(676.44) Failure of lactation, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.6''', NULL,
+ 'Galactorrhea (676.6)', 'Galactorrhea (676.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\(676.60) Galactorrhea associated with childbirth, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\(676.60) Galactorrhea associated with childbirth, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.60''', NULL,
+ '(676.60) Galactorrhea associated with childbirth, unspecified as to episode of care or not applicable', '(676.60) Galactorrhea associated with childbirth, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\(676.61) Galactorrhea associated with childbirth, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\(676.61) Galactorrhea associated with childbirth, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.61''', NULL,
+ '(676.61) Galactorrhea associated with childbirth, delivered, with or without mention of antepartum condition', '(676.61) Galactorrhea associated with childbirth, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\(676.62) Galactorrhea associated with childbirth, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\(676.62) Galactorrhea associated with childbirth, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.62''', NULL,
+ '(676.62) Galactorrhea associated with childbirth, delivered, with mention of postpartum complication', '(676.62) Galactorrhea associated with childbirth, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\(676.63) Galactorrhea associated with childbirth, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\(676.63) Galactorrhea associated with childbirth, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.63''', NULL,
+ '(676.63) Galactorrhea associated with childbirth, antepartum condition or complication', '(676.63) Galactorrhea associated with childbirth, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\(676.64) Galactorrhea associated with childbirth, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Galactorrhea (676.6)\(676.64) Galactorrhea associated with childbirth, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.64''', NULL,
+ '(676.64) Galactorrhea associated with childbirth, postpartum condition or complication', '(676.64) Galactorrhea associated with childbirth, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.3''', NULL,
+ 'Other and unspecified disorder of breast associated with childbirth (676.3)', 'Other and unspecified disorder of breast associated with childbirth (676.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\(676.30) Other and unspecified disorder of breast associated with childbirth, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\(676.30) Other and unspecified disorder of breast associated with childbirth, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.30''', NULL,
+ '(676.30) Other and unspecified disorder of breast associated with childbirth, unspecified as to episode of care or not applicable', '(676.30) Other and unspecified disorder of breast associated with childbirth, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\(676.31) Other and unspecified disorder of breast associated with childbirth, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\(676.31) Other and unspecified disorder of breast associated with childbirth, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.31''', NULL,
+ '(676.31) Other and unspecified disorder of breast associated with childbirth, delivered, with or without mention of antepartum condition', '(676.31) Other and unspecified disorder of breast associated with childbirth, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\(676.32) Other and unspecified disorder of breast associated with childbirth, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\(676.32) Other and unspecified disorder of breast associated with childbirth, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.32''', NULL,
+ '(676.32) Other and unspecified disorder of breast associated with childbirth, delivered, with mention of postpartum complication', '(676.32) Other and unspecified disorder of breast associated with childbirth, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\(676.33) Other and unspecified disorder of breast associated with childbirth, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\(676.33) Other and unspecified disorder of breast associated with childbirth, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.33''', NULL,
+ '(676.33) Other and unspecified disorder of breast associated with childbirth, antepartum condition or complication', '(676.33) Other and unspecified disorder of breast associated with childbirth, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\(676.34) Other and unspecified disorder of breast associated with childbirth, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other and unspecified disorder of breast associated with childbirth (676.3)\(676.34) Other and unspecified disorder of breast associated with childbirth, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.34''', NULL,
+ '(676.34) Other and unspecified disorder of breast associated with childbirth, postpartum condition or complication', '(676.34) Other and unspecified disorder of breast associated with childbirth, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.8''', NULL,
+ 'Other disorders of lactation (676.8)', 'Other disorders of lactation (676.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\(676.80) Other disorders of lactation, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\(676.80) Other disorders of lactation, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.80''', NULL,
+ '(676.80) Other disorders of lactation, unspecified as to episode of care or not applicable', '(676.80) Other disorders of lactation, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\(676.81) Other disorders of lactation, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\(676.81) Other disorders of lactation, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.81''', NULL,
+ '(676.81) Other disorders of lactation, delivered, with or without mention of antepartum condition', '(676.81) Other disorders of lactation, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\(676.82) Other disorders of lactation, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\(676.82) Other disorders of lactation, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.82''', NULL,
+ '(676.82) Other disorders of lactation, delivered, with mention of postpartum complication', '(676.82) Other disorders of lactation, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\(676.83) Other disorders of lactation, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\(676.83) Other disorders of lactation, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.83''', NULL,
+ '(676.83) Other disorders of lactation, antepartum condition or complication', '(676.83) Other disorders of lactation, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\(676.84) Other disorders of lactation, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Other disorders of lactation (676.8)\(676.84) Other disorders of lactation, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.84''', NULL,
+ '(676.84) Other disorders of lactation, postpartum condition or complication', '(676.84) Other disorders of lactation, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.0''', NULL,
+ 'Retracted nipple associated with childbirth (676.0)', 'Retracted nipple associated with childbirth (676.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\(676.00) Retracted nipple associated with childbirth, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\(676.00) Retracted nipple associated with childbirth, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.00''', NULL,
+ '(676.00) Retracted nipple associated with childbirth, unspecified as to episode of care or not applicable', '(676.00) Retracted nipple associated with childbirth, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\(676.01) Retracted nipple associated with childbirth, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\(676.01) Retracted nipple associated with childbirth, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.01''', NULL,
+ '(676.01) Retracted nipple associated with childbirth, delivered, with or without mention of antepartum condition', '(676.01) Retracted nipple associated with childbirth, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\(676.02) Retracted nipple associated with childbirth, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\(676.02) Retracted nipple associated with childbirth, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.02''', NULL,
+ '(676.02) Retracted nipple associated with childbirth, delivered, with mention of postpartum complication', '(676.02) Retracted nipple associated with childbirth, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\(676.03) Retracted nipple associated with childbirth, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\(676.03) Retracted nipple associated with childbirth, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.03''', NULL,
+ '(676.03) Retracted nipple associated with childbirth, antepartum condition or complication', '(676.03) Retracted nipple associated with childbirth, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\(676.04) Retracted nipple associated with childbirth, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Retracted nipple associated with childbirth (676.0)\(676.04) Retracted nipple associated with childbirth, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.04''', NULL,
+ '(676.04) Retracted nipple associated with childbirth, postpartum condition or complication', '(676.04) Retracted nipple associated with childbirth, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.5''', NULL,
+ 'Suppressed lactation (676.5)', 'Suppressed lactation (676.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\(676.50) Suppressed lactation, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\(676.50) Suppressed lactation, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.50''', NULL,
+ '(676.50) Suppressed lactation, unspecified as to episode of care or not applicable', '(676.50) Suppressed lactation, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\(676.51) Suppressed lactation, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\(676.51) Suppressed lactation, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.51''', NULL,
+ '(676.51) Suppressed lactation, delivered, with or without mention of antepartum condition', '(676.51) Suppressed lactation, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\(676.52) Suppressed lactation, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\(676.52) Suppressed lactation, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.52''', NULL,
+ '(676.52) Suppressed lactation, delivered, with mention of postpartum complication', '(676.52) Suppressed lactation, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\(676.53) Suppressed lactation, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\(676.53) Suppressed lactation, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.53''', NULL,
+ '(676.53) Suppressed lactation, antepartum condition or complication', '(676.53) Suppressed lactation, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\(676.54) Suppressed lactation, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Suppressed lactation (676.5)\(676.54) Suppressed lactation, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.54''', NULL,
+ '(676.54) Suppressed lactation, postpartum condition or complication', '(676.54) Suppressed lactation, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.9''', NULL,
+ 'Unspecified disorder of lactation (676.9)', 'Unspecified disorder of lactation (676.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\(676.90) Unspecified disorder of lactation, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\(676.90) Unspecified disorder of lactation, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.90''', NULL,
+ '(676.90) Unspecified disorder of lactation, unspecified as to episode of care or not applicable', '(676.90) Unspecified disorder of lactation, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\(676.91) Unspecified disorder of lactation, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\(676.91) Unspecified disorder of lactation, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.91''', NULL,
+ '(676.91) Unspecified disorder of lactation, delivered, with or without mention of antepartum condition', '(676.91) Unspecified disorder of lactation, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\(676.92) Unspecified disorder of lactation, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\(676.92) Unspecified disorder of lactation, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.92''', NULL,
+ '(676.92) Unspecified disorder of lactation, delivered, with mention of postpartum complication', '(676.92) Unspecified disorder of lactation, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\(676.93) Unspecified disorder of lactation, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\(676.93) Unspecified disorder of lactation, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.93''', NULL,
+ '(676.93) Unspecified disorder of lactation, antepartum condition or complication', '(676.93) Unspecified disorder of lactation, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\(676.94) Unspecified disorder of lactation, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Other disorders of the breast associated with childbirth and disorders of lactation (676)\Unspecified disorder of lactation (676.9)\(676.94) Unspecified disorder of lactation, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''676.94''', NULL,
+ '(676.94) Unspecified disorder of lactation, postpartum condition or complication', '(676.94) Unspecified disorder of lactation, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Pyrexia of unknown origin during the puerperium (672)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Pyrexia of unknown origin during the puerperium (672)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''672''', NULL,
+ 'Pyrexia of unknown origin during the puerperium (672)', 'Pyrexia of unknown origin during the puerperium (672)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Pyrexia of unknown origin during the puerperium (672)\Pyrexia of unknown origin during the puerperium (672.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Pyrexia of unknown origin during the puerperium (672)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Pyrexia of unknown origin during the puerperium (672)\Pyrexia of unknown origin during the puerperium (672.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''672.0''', NULL,
+ 'Pyrexia of unknown origin during the puerperium (672.0)', 'Pyrexia of unknown origin during the puerperium (672.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Pyrexia of unknown origin during the puerperium (672)\Pyrexia of unknown origin during the puerperium (672.0)\(672.00) Pyrexia of unknown origin during the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Pyrexia of unknown origin during the puerperium (672)\Pyrexia of unknown origin during the puerperium (672.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Pyrexia of unknown origin during the puerperium (672)\Pyrexia of unknown origin during the puerperium (672.0)\(672.00) Pyrexia of unknown origin during the puerperium, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''672.00''', NULL,
+ '(672.00) Pyrexia of unknown origin during the puerperium, unspecified as to episode of care or not applicable', '(672.00) Pyrexia of unknown origin during the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Pyrexia of unknown origin during the puerperium (672)\Pyrexia of unknown origin during the puerperium (672.0)\(672.02) Pyrexia of unknown origin during the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Pyrexia of unknown origin during the puerperium (672)\Pyrexia of unknown origin during the puerperium (672.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Pyrexia of unknown origin during the puerperium (672)\Pyrexia of unknown origin during the puerperium (672.0)\(672.02) Pyrexia of unknown origin during the puerperium, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''672.02''', NULL,
+ '(672.02) Pyrexia of unknown origin during the puerperium, delivered, with mention of postpartum complication', '(672.02) Pyrexia of unknown origin during the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Pyrexia of unknown origin during the puerperium (672)\Pyrexia of unknown origin during the puerperium (672.0)\(672.04) Pyrexia of unknown origin during the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Pyrexia of unknown origin during the puerperium (672)\Pyrexia of unknown origin during the puerperium (672.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Pyrexia of unknown origin during the puerperium (672)\Pyrexia of unknown origin during the puerperium (672.0)\(672.04) Pyrexia of unknown origin during the puerperium, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''672.04''', NULL,
+ '(672.04) Pyrexia of unknown origin during the puerperium, postpartum condition or complication', '(672.04) Pyrexia of unknown origin during the puerperium, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671''', NULL,
+ 'Venous complications in pregnancy and the puerperium (671)', 'Venous complications in pregnancy and the puerperium (671)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, antepartum (671.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, antepartum (671.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.3''', NULL,
+ 'Deep phlebothrombosis, antepartum (671.3)', 'Deep phlebothrombosis, antepartum (671.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, antepartum (671.3)\(671.30) Deep phlebothrombosis, antepartum, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, antepartum (671.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, antepartum (671.3)\(671.30) Deep phlebothrombosis, antepartum, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.30''', NULL,
+ '(671.30) Deep phlebothrombosis, antepartum, unspecified as to episode of care or not applicable', '(671.30) Deep phlebothrombosis, antepartum, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, antepartum (671.3)\(671.31) Deep phlebothrombosis, antepartum, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, antepartum (671.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, antepartum (671.3)\(671.31) Deep phlebothrombosis, antepartum, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.31''', NULL,
+ '(671.31) Deep phlebothrombosis, antepartum, delivered, with or without mention of antepartum condition', '(671.31) Deep phlebothrombosis, antepartum, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, antepartum (671.3)\(671.33) Deep phlebothrombosis, antepartum, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, antepartum (671.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, antepartum (671.3)\(671.33) Deep phlebothrombosis, antepartum, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.33''', NULL,
+ '(671.33) Deep phlebothrombosis, antepartum, antepartum condition or complication', '(671.33) Deep phlebothrombosis, antepartum, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, postpartum (671.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, postpartum (671.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.4''', NULL,
+ 'Deep phlebothrombosis, postpartum (671.4)', 'Deep phlebothrombosis, postpartum (671.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, postpartum (671.4)\(671.40) Deep phlebothrombosis, postpartum, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, postpartum (671.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, postpartum (671.4)\(671.40) Deep phlebothrombosis, postpartum, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.40''', NULL,
+ '(671.40) Deep phlebothrombosis, postpartum, unspecified as to episode of care or not applicable', '(671.40) Deep phlebothrombosis, postpartum, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, postpartum (671.4)\(671.42) Deep phlebothrombosis, postpartum, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, postpartum (671.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, postpartum (671.4)\(671.42) Deep phlebothrombosis, postpartum, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.42''', NULL,
+ '(671.42) Deep phlebothrombosis, postpartum, delivered, with mention of postpartum complication', '(671.42) Deep phlebothrombosis, postpartum, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, postpartum (671.4)\(671.44) Deep phlebothrombosis, postpartum, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, postpartum (671.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Deep phlebothrombosis, postpartum (671.4)\(671.44) Deep phlebothrombosis, postpartum, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.44''', NULL,
+ '(671.44) Deep phlebothrombosis, postpartum, postpartum condition or complication', '(671.44) Deep phlebothrombosis, postpartum, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.5''', NULL,
+ 'Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)', 'Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\(671.50) Other phlebitis and thrombosis complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\(671.50) Other phlebitis and thrombosis complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.50''', NULL,
+ '(671.50) Other phlebitis and thrombosis complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable', '(671.50) Other phlebitis and thrombosis complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\(671.51) Other phlebitis and thrombosis complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\(671.51) Other phlebitis and thrombosis complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.51''', NULL,
+ '(671.51) Other phlebitis and thrombosis complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition', '(671.51) Other phlebitis and thrombosis complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\(671.52) Other phlebitis and thrombosis complicating pregnancy and the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\(671.52) Other phlebitis and thrombosis complicating pregnancy and the puerperium, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.52''', NULL,
+ '(671.52) Other phlebitis and thrombosis complicating pregnancy and the puerperium, delivered, with mention of postpartum complication', '(671.52) Other phlebitis and thrombosis complicating pregnancy and the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\(671.53) Other phlebitis and thrombosis complicating pregnancy and the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\(671.53) Other phlebitis and thrombosis complicating pregnancy and the puerperium, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.53''', NULL,
+ '(671.53) Other phlebitis and thrombosis complicating pregnancy and the puerperium, antepartum condition or complication', '(671.53) Other phlebitis and thrombosis complicating pregnancy and the puerperium, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\(671.54) Other phlebitis and thrombosis complicating pregnancy and the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other phlebitis and thrombosis in pregnancy and the puerperium (671.5)\(671.54) Other phlebitis and thrombosis complicating pregnancy and the puerperium, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.54''', NULL,
+ '(671.54) Other phlebitis and thrombosis complicating pregnancy and the puerperium, postpartum condition or complication', '(671.54) Other phlebitis and thrombosis complicating pregnancy and the puerperium, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.8''', NULL,
+ 'Other venous complications in pregnancy and the puerperium (671.8)', 'Other venous complications in pregnancy and the puerperium (671.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\(671.80) Other venous complications of pregnancy and the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\(671.80) Other venous complications of pregnancy and the puerperium, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.80''', NULL,
+ '(671.80) Other venous complications of pregnancy and the puerperium, unspecified as to episode of care or not applicable', '(671.80) Other venous complications of pregnancy and the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\(671.81) Other venous complications of pregnancy and the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\(671.81) Other venous complications of pregnancy and the puerperium, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.81''', NULL,
+ '(671.81) Other venous complications of pregnancy and the puerperium, delivered, with or without mention of antepartum condition', '(671.81) Other venous complications of pregnancy and the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\(671.82) Other venous complications of pregnancy and the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\(671.82) Other venous complications of pregnancy and the puerperium, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.82''', NULL,
+ '(671.82) Other venous complications of pregnancy and the puerperium, delivered, with mention of postpartum complication', '(671.82) Other venous complications of pregnancy and the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\(671.83) Other venous complications of pregnancy and the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\(671.83) Other venous complications of pregnancy and the puerperium, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.83''', NULL,
+ '(671.83) Other venous complications of pregnancy and the puerperium, antepartum condition or complication', '(671.83) Other venous complications of pregnancy and the puerperium, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\(671.84) Other venous complications of pregnancy and the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Other venous complications in pregnancy and the puerperium (671.8)\(671.84) Other venous complications of pregnancy and the puerperium, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.84''', NULL,
+ '(671.84) Other venous complications of pregnancy and the puerperium, postpartum condition or complication', '(671.84) Other venous complications of pregnancy and the puerperium, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.2''', NULL,
+ 'Superficial thrombophlebitis in pregnancy and the puerperium (671.2)', 'Superficial thrombophlebitis in pregnancy and the puerperium (671.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\(671.20) Superficial thrombophlebitis complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\(671.20) Superficial thrombophlebitis complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.20''', NULL,
+ '(671.20) Superficial thrombophlebitis complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable', '(671.20) Superficial thrombophlebitis complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\(671.21) Superficial thrombophlebitis complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\(671.21) Superficial thrombophlebitis complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.21''', NULL,
+ '(671.21) Superficial thrombophlebitis complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition', '(671.21) Superficial thrombophlebitis complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\(671.22) Superficial thrombophlebitis complicating pregnancy and the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\(671.22) Superficial thrombophlebitis complicating pregnancy and the puerperium, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.22''', NULL,
+ '(671.22) Superficial thrombophlebitis complicating pregnancy and the puerperium, delivered, with mention of postpartum complication', '(671.22) Superficial thrombophlebitis complicating pregnancy and the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\(671.23) Superficial thrombophlebitis complicating pregnancy and the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\(671.23) Superficial thrombophlebitis complicating pregnancy and the puerperium, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.23''', NULL,
+ '(671.23) Superficial thrombophlebitis complicating pregnancy and the puerperium, antepartum condition or complication', '(671.23) Superficial thrombophlebitis complicating pregnancy and the puerperium, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\(671.24) Superficial thrombophlebitis complicating pregnancy and the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Superficial thrombophlebitis in pregnancy and the puerperium (671.2)\(671.24) Superficial thrombophlebitis complicating pregnancy and the puerperium, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.24''', NULL,
+ '(671.24) Superficial thrombophlebitis complicating pregnancy and the puerperium, postpartum condition or complication', '(671.24) Superficial thrombophlebitis complicating pregnancy and the puerperium, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.9''', NULL,
+ 'Unspecified venous complication in pregnancy and the puerperium (671.9)', 'Unspecified venous complication in pregnancy and the puerperium (671.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\(671.90) Unspecified venous complication of pregnancy and the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\(671.90) Unspecified venous complication of pregnancy and the puerperium, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.90''', NULL,
+ '(671.90) Unspecified venous complication of pregnancy and the puerperium, unspecified as to episode of care or not applicable', '(671.90) Unspecified venous complication of pregnancy and the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\(671.91) Unspecified venous complication of pregnancy and the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\(671.91) Unspecified venous complication of pregnancy and the puerperium, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.91''', NULL,
+ '(671.91) Unspecified venous complication of pregnancy and the puerperium, delivered, with or without mention of antepartum condition', '(671.91) Unspecified venous complication of pregnancy and the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\(671.92) Unspecified venous complication of pregnancy and the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\(671.92) Unspecified venous complication of pregnancy and the puerperium, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.92''', NULL,
+ '(671.92) Unspecified venous complication of pregnancy and the puerperium, delivered, with mention of postpartum complication', '(671.92) Unspecified venous complication of pregnancy and the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\(671.93) Unspecified venous complication of pregnancy and the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\(671.93) Unspecified venous complication of pregnancy and the puerperium, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.93''', NULL,
+ '(671.93) Unspecified venous complication of pregnancy and the puerperium, antepartum condition or complication', '(671.93) Unspecified venous complication of pregnancy and the puerperium, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\(671.94) Unspecified venous complication of pregnancy and the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Unspecified venous complication in pregnancy and the puerperium (671.9)\(671.94) Unspecified venous complication of pregnancy and the puerperium, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.94''', NULL,
+ '(671.94) Unspecified venous complication of pregnancy and the puerperium, postpartum condition or complication', '(671.94) Unspecified venous complication of pregnancy and the puerperium, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.0''', NULL,
+ 'Varicose veins of legs in pregnancy and the puerperium (671.0)', 'Varicose veins of legs in pregnancy and the puerperium (671.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\(671.00) Varicose veins of legs complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\(671.00) Varicose veins of legs complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.00''', NULL,
+ '(671.00) Varicose veins of legs complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable', '(671.00) Varicose veins of legs complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\(671.01) Varicose veins of legs complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\(671.01) Varicose veins of legs complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.01''', NULL,
+ '(671.01) Varicose veins of legs complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition', '(671.01) Varicose veins of legs complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\(671.02) Varicose veins of legs complicating pregnancy and the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\(671.02) Varicose veins of legs complicating pregnancy and the puerperium, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.02''', NULL,
+ '(671.02) Varicose veins of legs complicating pregnancy and the puerperium, delivered, with mention of postpartum complication', '(671.02) Varicose veins of legs complicating pregnancy and the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\(671.03) Varicose veins of legs complicating pregnancy and the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\(671.03) Varicose veins of legs complicating pregnancy and the puerperium, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.03''', NULL,
+ '(671.03) Varicose veins of legs complicating pregnancy and the puerperium, antepartum condition or complication', '(671.03) Varicose veins of legs complicating pregnancy and the puerperium, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\(671.04) Varicose veins of legs complicating pregnancy and the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of legs in pregnancy and the puerperium (671.0)\(671.04) Varicose veins of legs complicating pregnancy and the puerperium, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.04''', NULL,
+ '(671.04) Varicose veins of legs complicating pregnancy and the puerperium, postpartum condition or complication', '(671.04) Varicose veins of legs complicating pregnancy and the puerperium, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.1''', NULL,
+ 'Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)', 'Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\(671.10) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\(671.10) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.10''', NULL,
+ '(671.10) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable', '(671.10) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\(671.11) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\(671.11) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.11''', NULL,
+ '(671.11) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition', '(671.11) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\(671.12) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\(671.12) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.12''', NULL,
+ '(671.12) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, delivered, with mention of postpartum complication', '(671.12) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\(671.13) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\(671.13) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.13''', NULL,
+ '(671.13) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, antepartum condition or complication', '(671.13) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\(671.14) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Complications of the puerperium (670-677.99)\Venous complications in pregnancy and the puerperium (671)\Varicose veins of vulva and perineum in pregnancy and the puerperium (671.1)\(671.14) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''671.14''', NULL,
+ '(671.14) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, postpartum condition or complication', '(671.14) Varicose veins of vulva and perineum complicating pregnancy and the puerperium, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''630'' AND ''633.99''', NULL,
+ 'Ectopic and molar pregnancy (630-633.99)', 'Ectopic and molar pregnancy (630-633.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\(630) Hydatidiform mole\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\(630) Hydatidiform mole\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''630''', NULL,
+ '(630) Hydatidiform mole', '(630) Hydatidiform mole', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\(632) Missed abortion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\(632) Missed abortion\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''632''', NULL,
+ '(632) Missed abortion', '(632) Missed abortion', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633''', NULL,
+ 'Ectopic pregnancy (633)', 'Ectopic pregnancy (633)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Abdominal pregnancy (633.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Abdominal pregnancy (633.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633.0''', NULL,
+ 'Abdominal pregnancy (633.0)', 'Abdominal pregnancy (633.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Abdominal pregnancy (633.0)\(633.00) Abdominal pregnancy without intrauterine pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Abdominal pregnancy (633.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Abdominal pregnancy (633.0)\(633.00) Abdominal pregnancy without intrauterine pregnancy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633.00''', NULL,
+ '(633.00) Abdominal pregnancy without intrauterine pregnancy', '(633.00) Abdominal pregnancy without intrauterine pregnancy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Abdominal pregnancy (633.0)\(633.01) Abdominal pregnancy with intrauterine pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Abdominal pregnancy (633.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Abdominal pregnancy (633.0)\(633.01) Abdominal pregnancy with intrauterine pregnancy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633.01''', NULL,
+ '(633.01) Abdominal pregnancy with intrauterine pregnancy', '(633.01) Abdominal pregnancy with intrauterine pregnancy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Other ectopic pregnancy (633.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Other ectopic pregnancy (633.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633.8''', NULL,
+ 'Other ectopic pregnancy (633.8)', 'Other ectopic pregnancy (633.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Other ectopic pregnancy (633.8)\(633.80) Other ectopic pregnancy without intrauterine pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Other ectopic pregnancy (633.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Other ectopic pregnancy (633.8)\(633.80) Other ectopic pregnancy without intrauterine pregnancy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633.80''', NULL,
+ '(633.80) Other ectopic pregnancy without intrauterine pregnancy', '(633.80) Other ectopic pregnancy without intrauterine pregnancy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Other ectopic pregnancy (633.8)\(633.81) Other ectopic pregnancy with intrauterine pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Other ectopic pregnancy (633.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Other ectopic pregnancy (633.8)\(633.81) Other ectopic pregnancy with intrauterine pregnancy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633.81''', NULL,
+ '(633.81) Other ectopic pregnancy with intrauterine pregnancy', '(633.81) Other ectopic pregnancy with intrauterine pregnancy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Ovarian pregnancy (633.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Ovarian pregnancy (633.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633.2''', NULL,
+ 'Ovarian pregnancy (633.2)', 'Ovarian pregnancy (633.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Ovarian pregnancy (633.2)\(633.20) Ovarian pregnancy without intrauterine pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Ovarian pregnancy (633.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Ovarian pregnancy (633.2)\(633.20) Ovarian pregnancy without intrauterine pregnancy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633.20''', NULL,
+ '(633.20) Ovarian pregnancy without intrauterine pregnancy', '(633.20) Ovarian pregnancy without intrauterine pregnancy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Ovarian pregnancy (633.2)\(633.21) Ovarian pregnancy with intrauterine pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Ovarian pregnancy (633.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Ovarian pregnancy (633.2)\(633.21) Ovarian pregnancy with intrauterine pregnancy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633.21''', NULL,
+ '(633.21) Ovarian pregnancy with intrauterine pregnancy', '(633.21) Ovarian pregnancy with intrauterine pregnancy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Tubal pregnancy (633.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Tubal pregnancy (633.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633.1''', NULL,
+ 'Tubal pregnancy (633.1)', 'Tubal pregnancy (633.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Tubal pregnancy (633.1)\(633.10) Tubal pregnancy without intrauterine pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Tubal pregnancy (633.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Tubal pregnancy (633.1)\(633.10) Tubal pregnancy without intrauterine pregnancy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633.10''', NULL,
+ '(633.10) Tubal pregnancy without intrauterine pregnancy', '(633.10) Tubal pregnancy without intrauterine pregnancy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Tubal pregnancy (633.1)\(633.11) Tubal pregnancy with intrauterine pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Tubal pregnancy (633.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Tubal pregnancy (633.1)\(633.11) Tubal pregnancy with intrauterine pregnancy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633.11''', NULL,
+ '(633.11) Tubal pregnancy with intrauterine pregnancy', '(633.11) Tubal pregnancy with intrauterine pregnancy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Unspecified ectopic pregnancy (633.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Unspecified ectopic pregnancy (633.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633.9''', NULL,
+ 'Unspecified ectopic pregnancy (633.9)', 'Unspecified ectopic pregnancy (633.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Unspecified ectopic pregnancy (633.9)\(633.90) Unspecified ectopic pregnancy without intrauterine pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Unspecified ectopic pregnancy (633.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Unspecified ectopic pregnancy (633.9)\(633.90) Unspecified ectopic pregnancy without intrauterine pregnancy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633.90''', NULL,
+ '(633.90) Unspecified ectopic pregnancy without intrauterine pregnancy', '(633.90) Unspecified ectopic pregnancy without intrauterine pregnancy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Unspecified ectopic pregnancy (633.9)\(633.91) Unspecified ectopic pregnancy with intrauterine pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Unspecified ectopic pregnancy (633.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Ectopic pregnancy (633)\Unspecified ectopic pregnancy (633.9)\(633.91) Unspecified ectopic pregnancy with intrauterine pregnancy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''633.91''', NULL,
+ '(633.91) Unspecified ectopic pregnancy with intrauterine pregnancy', '(633.91) Unspecified ectopic pregnancy with intrauterine pregnancy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Other abnormal product of conception (631)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Other abnormal product of conception (631)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''631''', NULL,
+ 'Other abnormal product of conception (631)', 'Other abnormal product of conception (631)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Other abnormal product of conception (631)\(631.0) Inappropriate change in quantitative human chorionic gonadotropin (hCG) in early pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Other abnormal product of conception (631)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Other abnormal product of conception (631)\(631.0) Inappropriate change in quantitative human chorionic gonadotropin (hCG) in early pregnancy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''631.0) Inappropriate change in quantitative human chorionic gonadotropin (hCG''', NULL,
+ '(631.0) Inappropriate change in quantitative human chorionic gonadotropin (hCG) in early pregnancy', '(631.0) Inappropriate change in quantitative human chorionic gonadotropin (hCG) in early pregnancy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Other abnormal product of conception (631)\(631.8) Other abnormal products of conception\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Other abnormal product of conception (631)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Ectopic and molar pregnancy (630-633.99)\Other abnormal product of conception (631)\(631.8) Other abnormal products of conception\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''631.8''', NULL,
+ '(631.8) Other abnormal products of conception', '(631.8) Other abnormal products of conception', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''650'' AND ''659.99''', NULL,
+ 'Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)', 'Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\(650) Normal delivery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\(650) Normal delivery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''650''', NULL,
+ '(650) Normal delivery', '(650) Normal delivery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654''', NULL,
+ 'Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)', 'Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.5''', NULL,
+ 'Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)', 'Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\(654.50) Cervical incompetence, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\(654.50) Cervical incompetence, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.50''', NULL,
+ '(654.50) Cervical incompetence, unspecified as to episode of care or not applicable', '(654.50) Cervical incompetence, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\(654.51) Cervical incompetence, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\(654.51) Cervical incompetence, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.51''', NULL,
+ '(654.51) Cervical incompetence, delivered, with or without mention of antepartum condition', '(654.51) Cervical incompetence, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\(654.52) Cervical incompetence, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\(654.52) Cervical incompetence, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.52''', NULL,
+ '(654.52) Cervical incompetence, delivered, with mention of postpartum complication', '(654.52) Cervical incompetence, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\(654.53) Cervical incompetence, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\(654.53) Cervical incompetence, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.53''', NULL,
+ '(654.53) Cervical incompetence, antepartum condition or complication', '(654.53) Cervical incompetence, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\(654.54) Cervical incompetence, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Cervical incompetence complicating pregnancy, childbirth, or the puerperium (654.5)\(654.54) Cervical incompetence, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.54''', NULL,
+ '(654.54) Cervical incompetence, postpartum condition or complication', '(654.54) Cervical incompetence, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.0''', NULL,
+ 'Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)', 'Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\(654.00) Congenital abnormalities of uterus, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\(654.00) Congenital abnormalities of uterus, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.00''', NULL,
+ '(654.00) Congenital abnormalities of uterus, unspecified as to episode of care or not applicable', '(654.00) Congenital abnormalities of uterus, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\(654.01) Congenital abnormalities of uterus, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\(654.01) Congenital abnormalities of uterus, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.01''', NULL,
+ '(654.01) Congenital abnormalities of uterus, delivered, with or without mention of antepartum condition', '(654.01) Congenital abnormalities of uterus, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\(654.02) Congenital abnormalities of uterus, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\(654.02) Congenital abnormalities of uterus, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.02''', NULL,
+ '(654.02) Congenital abnormalities of uterus, delivered, with mention of postpartum complication', '(654.02) Congenital abnormalities of uterus, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\(654.03) Congenital abnormalities of uterus, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\(654.03) Congenital abnormalities of uterus, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.03''', NULL,
+ '(654.03) Congenital abnormalities of uterus, antepartum condition or complication', '(654.03) Congenital abnormalities of uterus, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\(654.04) Congenital abnormalities of uterus, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital abnormalities of uterus complicating pregnancy, childbirth, or the puerperium (654.0)\(654.04) Congenital abnormalities of uterus, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.04''', NULL,
+ '(654.04) Congenital abnormalities of uterus, postpartum condition or complication', '(654.04) Congenital abnormalities of uterus, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.7''', NULL,
+ 'Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)', 'Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\(654.70) Congenital or acquired abnormality of vagina, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\(654.70) Congenital or acquired abnormality of vagina, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.70''', NULL,
+ '(654.70) Congenital or acquired abnormality of vagina, unspecified as to episode of care or not applicable', '(654.70) Congenital or acquired abnormality of vagina, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\(654.71) Congenital or acquired abnormality of vagina, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\(654.71) Congenital or acquired abnormality of vagina, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.71''', NULL,
+ '(654.71) Congenital or acquired abnormality of vagina, delivered, with or without mention of antepartum condition', '(654.71) Congenital or acquired abnormality of vagina, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\(654.72) Congenital or acquired abnormality of vagina, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\(654.72) Congenital or acquired abnormality of vagina, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.72''', NULL,
+ '(654.72) Congenital or acquired abnormality of vagina, delivered, with mention of postpartum complication', '(654.72) Congenital or acquired abnormality of vagina, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\(654.73) Congenital or acquired abnormality of vagina, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\(654.73) Congenital or acquired abnormality of vagina, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.73''', NULL,
+ '(654.73) Congenital or acquired abnormality of vagina, antepartum condition or complication', '(654.73) Congenital or acquired abnormality of vagina, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\(654.74) Congenital or acquired abnormality of vagina, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vagina complicating pregnancy, childbirth, or the puerperium (654.7)\(654.74) Congenital or acquired abnormality of vagina, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.74''', NULL,
+ '(654.74) Congenital or acquired abnormality of vagina, postpartum condition or complication', '(654.74) Congenital or acquired abnormality of vagina, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.8''', NULL,
+ 'Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)', 'Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\(654.80) Congenital or acquired abnormality of vulva, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\(654.80) Congenital or acquired abnormality of vulva, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.80''', NULL,
+ '(654.80) Congenital or acquired abnormality of vulva, unspecified as to episode of care or not applicable', '(654.80) Congenital or acquired abnormality of vulva, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\(654.81) Congenital or acquired abnormality of vulva, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\(654.81) Congenital or acquired abnormality of vulva, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.81''', NULL,
+ '(654.81) Congenital or acquired abnormality of vulva, delivered, with or without mention of antepartum condition', '(654.81) Congenital or acquired abnormality of vulva, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\(654.82) Congenital or acquired abnormality of vulva, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\(654.82) Congenital or acquired abnormality of vulva, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.82''', NULL,
+ '(654.82) Congenital or acquired abnormality of vulva, delivered, with mention of postpartum complication', '(654.82) Congenital or acquired abnormality of vulva, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\(654.83) Congenital or acquired abnormality of vulva, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\(654.83) Congenital or acquired abnormality of vulva, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.83''', NULL,
+ '(654.83) Congenital or acquired abnormality of vulva, antepartum condition or complication', '(654.83) Congenital or acquired abnormality of vulva, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\(654.84) Congenital or acquired abnormality of vulva, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Congenital or acquired abnormality of vulva complicating pregnancy, childbirth, or the puerperium (654.8)\(654.84) Congenital or acquired abnormality of vulva, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.84''', NULL,
+ '(654.84) Congenital or acquired abnormality of vulva, postpartum condition or complication', '(654.84) Congenital or acquired abnormality of vulva, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.4''', NULL,
+ 'Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)', 'Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\(654.40) Other abnormalities in shape or position of gravid uterus and of neighboring structures, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\(654.40) Other abnormalities in shape or position of gravid uterus and of neighboring structures, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.40''', NULL,
+ '(654.40) Other abnormalities in shape or position of gravid uterus and of neighboring structures, unspecified as to episode of care or not applicable', '(654.40) Other abnormalities in shape or position of gravid uterus and of neighboring structures, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\(654.41) Other abnormalities in shape or position of gravid uterus and of neighboring structures, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\(654.41) Other abnormalities in shape or position of gravid uterus and of neighboring structures, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.41''', NULL,
+ '(654.41) Other abnormalities in shape or position of gravid uterus and of neighboring structures, delivered, with or without mention of antepartum condition', '(654.41) Other abnormalities in shape or position of gravid uterus and of neighboring structures, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\(654.42) Other abnormalities in shape or position of gravid uterus and of neighboring structures, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\(654.42) Other abnormalities in shape or position of gravid uterus and of neighboring structures, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.42''', NULL,
+ '(654.42) Other abnormalities in shape or position of gravid uterus and of neighboring structures, delivered, with mention of postpartum complication', '(654.42) Other abnormalities in shape or position of gravid uterus and of neighboring structures, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\(654.43) Other abnormalities in shape or position of gravid uterus and of neighboring structures, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\(654.43) Other abnormalities in shape or position of gravid uterus and of neighboring structures, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.43''', NULL,
+ '(654.43) Other abnormalities in shape or position of gravid uterus and of neighboring structures, antepartum condition or complication', '(654.43) Other abnormalities in shape or position of gravid uterus and of neighboring structures, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\(654.44) Other abnormalities in shape or position of gravid uterus and of neighboring structures, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other abnormalities in shape or position of gravid uterus and of neighboring structures (654.4)\(654.44) Other abnormalities in shape or position of gravid uterus and of neighboring structures, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.44''', NULL,
+ '(654.44) Other abnormalities in shape or position of gravid uterus and of neighboring structures, postpartum condition or complication', '(654.44) Other abnormalities in shape or position of gravid uterus and of neighboring structures, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.9''', NULL,
+ 'Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)', 'Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\(654.90) Other and unspecified abnormality of organs and soft tissues of pelvis, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\(654.90) Other and unspecified abnormality of organs and soft tissues of pelvis, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.90''', NULL,
+ '(654.90) Other and unspecified abnormality of organs and soft tissues of pelvis, unspecified as to episode of care or not applicable', '(654.90) Other and unspecified abnormality of organs and soft tissues of pelvis, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\(654.91) Other and unspecified abnormality of organs and soft tissues of pelvis, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\(654.91) Other and unspecified abnormality of organs and soft tissues of pelvis, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.91''', NULL,
+ '(654.91) Other and unspecified abnormality of organs and soft tissues of pelvis, delivered, with or without mention of antepartum condition', '(654.91) Other and unspecified abnormality of organs and soft tissues of pelvis, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\(654.92) Other and unspecified abnormality of organs and soft tissues of pelvis, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\(654.92) Other and unspecified abnormality of organs and soft tissues of pelvis, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.92''', NULL,
+ '(654.92) Other and unspecified abnormality of organs and soft tissues of pelvis, delivered, with mention of postpartum complication', '(654.92) Other and unspecified abnormality of organs and soft tissues of pelvis, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\(654.93) Other and unspecified abnormality of organs and soft tissues of pelvis, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\(654.93) Other and unspecified abnormality of organs and soft tissues of pelvis, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.93''', NULL,
+ '(654.93) Other and unspecified abnormality of organs and soft tissues of pelvis, antepartum condition or complication', '(654.93) Other and unspecified abnormality of organs and soft tissues of pelvis, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\(654.94) Other and unspecified abnormality of organs and soft tissues of pelvis, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other and unspecified abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, and the puerperium (654.9)\(654.94) Other and unspecified abnormality of organs and soft tissues of pelvis, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.94''', NULL,
+ '(654.94) Other and unspecified abnormality of organs and soft tissues of pelvis, postpartum condition or complication', '(654.94) Other and unspecified abnormality of organs and soft tissues of pelvis, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.6''', NULL,
+ 'Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)', 'Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\(654.60) Other congenital or acquired abnormality of cervix, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\(654.60) Other congenital or acquired abnormality of cervix, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.60''', NULL,
+ '(654.60) Other congenital or acquired abnormality of cervix, unspecified as to episode of care or not applicable', '(654.60) Other congenital or acquired abnormality of cervix, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\(654.61) Other congenital or acquired abnormality of cervix, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\(654.61) Other congenital or acquired abnormality of cervix, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.61''', NULL,
+ '(654.61) Other congenital or acquired abnormality of cervix, delivered, with or without mention of antepartum condition', '(654.61) Other congenital or acquired abnormality of cervix, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\(654.62) Other congenital or acquired abnormality of cervix, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\(654.62) Other congenital or acquired abnormality of cervix, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.62''', NULL,
+ '(654.62) Other congenital or acquired abnormality of cervix, delivered, with mention of postpartum complication', '(654.62) Other congenital or acquired abnormality of cervix, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\(654.63) Other congenital or acquired abnormality of cervix, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\(654.63) Other congenital or acquired abnormality of cervix, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.63''', NULL,
+ '(654.63) Other congenital or acquired abnormality of cervix, antepartum condition or complication', '(654.63) Other congenital or acquired abnormality of cervix, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\(654.64) Other congenital or acquired abnormality of cervix, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Other congenital or acquired abnormality of cervix complicating pregnancy, childbirth, or the puerperium (654.6)\(654.64) Other congenital or acquired abnormality of cervix, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.64''', NULL,
+ '(654.64) Other congenital or acquired abnormality of cervix, postpartum condition or complication', '(654.64) Other congenital or acquired abnormality of cervix, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Previous cesarean section complicating pregnancy or childbirth (654.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Previous cesarean section complicating pregnancy or childbirth (654.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.2''', NULL,
+ 'Previous cesarean section complicating pregnancy or childbirth (654.2)', 'Previous cesarean section complicating pregnancy or childbirth (654.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Previous cesarean section complicating pregnancy or childbirth (654.2)\(654.20) Previous cesarean delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Previous cesarean section complicating pregnancy or childbirth (654.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Previous cesarean section complicating pregnancy or childbirth (654.2)\(654.20) Previous cesarean delivery, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.20''', NULL,
+ '(654.20) Previous cesarean delivery, unspecified as to episode of care or not applicable', '(654.20) Previous cesarean delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Previous cesarean section complicating pregnancy or childbirth (654.2)\(654.21) Previous cesarean delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Previous cesarean section complicating pregnancy or childbirth (654.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Previous cesarean section complicating pregnancy or childbirth (654.2)\(654.21) Previous cesarean delivery, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.21''', NULL,
+ '(654.21) Previous cesarean delivery, delivered, with or without mention of antepartum condition', '(654.21) Previous cesarean delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Previous cesarean section complicating pregnancy or childbirth (654.2)\(654.23) Previous cesarean delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Previous cesarean section complicating pregnancy or childbirth (654.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Previous cesarean section complicating pregnancy or childbirth (654.2)\(654.23) Previous cesarean delivery, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.23''', NULL,
+ '(654.23) Previous cesarean delivery, antepartum condition or complication', '(654.23) Previous cesarean delivery, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.3''', NULL,
+ 'Retroverted and incarcerated gravid uterus (654.3)', 'Retroverted and incarcerated gravid uterus (654.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\(654.30) Retroverted and incarcerated gravid uterus, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\(654.30) Retroverted and incarcerated gravid uterus, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.30''', NULL,
+ '(654.30) Retroverted and incarcerated gravid uterus, unspecified as to episode of care or not applicable', '(654.30) Retroverted and incarcerated gravid uterus, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\(654.31) Retroverted and incarcerated gravid uterus, delivered, with mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\(654.31) Retroverted and incarcerated gravid uterus, delivered, with mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.31''', NULL,
+ '(654.31) Retroverted and incarcerated gravid uterus, delivered, with mention of antepartum condition', '(654.31) Retroverted and incarcerated gravid uterus, delivered, with mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\(654.32) Retroverted and incarcerated gravid uterus, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\(654.32) Retroverted and incarcerated gravid uterus, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.32''', NULL,
+ '(654.32) Retroverted and incarcerated gravid uterus, delivered, with mention of postpartum complication', '(654.32) Retroverted and incarcerated gravid uterus, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\(654.33) Retroverted and incarcerated gravid uterus, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\(654.33) Retroverted and incarcerated gravid uterus, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.33''', NULL,
+ '(654.33) Retroverted and incarcerated gravid uterus, antepartum condition or complication', '(654.33) Retroverted and incarcerated gravid uterus, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\(654.34) Retroverted and incarcerated gravid uterus, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Retroverted and incarcerated gravid uterus (654.3)\(654.34) Retroverted and incarcerated gravid uterus, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.34''', NULL,
+ '(654.34) Retroverted and incarcerated gravid uterus, postpartum condition or complication', '(654.34) Retroverted and incarcerated gravid uterus, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.1''', NULL,
+ 'Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)', 'Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\(654.10) Tumors of body of uterus, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\(654.10) Tumors of body of uterus, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.10''', NULL,
+ '(654.10) Tumors of body of uterus, unspecified as to episode of care or not applicable', '(654.10) Tumors of body of uterus, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\(654.11) Tumors of body of uterus, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\(654.11) Tumors of body of uterus, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.11''', NULL,
+ '(654.11) Tumors of body of uterus, delivered, with or without mention of antepartum condition', '(654.11) Tumors of body of uterus, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\(654.12) Tumors of body of uterus, delivered, with mention of postpartum complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\(654.12) Tumors of body of uterus, delivered, with mention of postpartum complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.12''', NULL,
+ '(654.12) Tumors of body of uterus, delivered, with mention of postpartum complication', '(654.12) Tumors of body of uterus, delivered, with mention of postpartum complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\(654.13) Tumors of body of uterus, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\(654.13) Tumors of body of uterus, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.13''', NULL,
+ '(654.13) Tumors of body of uterus, antepartum condition or complication', '(654.13) Tumors of body of uterus, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\(654.14) Tumors of body of uterus, postpartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Abnormality of organs and soft tissues of pelvis complicating pregnancy, childbirth, or the puerperium (654)\Tumors of body of uterus complicating pregnancy, childbirth, or the puerperium (654.1)\(654.14) Tumors of body of uterus, postpartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''654.14''', NULL,
+ '(654.14) Tumors of body of uterus, postpartum condition or complication', '(654.14) Tumors of body of uterus, postpartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653''', NULL,
+ 'Disproportion in pregnancy, labor, and delivery (653)', 'Disproportion in pregnancy, labor, and delivery (653)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Disproportion of other origin in pregnancy, labor, and delivery (653.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Disproportion of other origin in pregnancy, labor, and delivery (653.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.8''', NULL,
+ 'Disproportion of other origin in pregnancy, labor, and delivery (653.8)', 'Disproportion of other origin in pregnancy, labor, and delivery (653.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Disproportion of other origin in pregnancy, labor, and delivery (653.8)\(653.80) Disproportion of other origin, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Disproportion of other origin in pregnancy, labor, and delivery (653.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Disproportion of other origin in pregnancy, labor, and delivery (653.8)\(653.80) Disproportion of other origin, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.80''', NULL,
+ '(653.80) Disproportion of other origin, unspecified as to episode of care or not applicable', '(653.80) Disproportion of other origin, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Disproportion of other origin in pregnancy, labor, and delivery (653.8)\(653.81) Disproportion of other origin, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Disproportion of other origin in pregnancy, labor, and delivery (653.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Disproportion of other origin in pregnancy, labor, and delivery (653.8)\(653.81) Disproportion of other origin, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.81''', NULL,
+ '(653.81) Disproportion of other origin, delivered, with or without mention of antepartum condition', '(653.81) Disproportion of other origin, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Disproportion of other origin in pregnancy, labor, and delivery (653.8)\(653.83) Disproportion of other origin, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Disproportion of other origin in pregnancy, labor, and delivery (653.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Disproportion of other origin in pregnancy, labor, and delivery (653.8)\(653.83) Disproportion of other origin, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.83''', NULL,
+ '(653.83) Disproportion of other origin, antepartum condition or complication', '(653.83) Disproportion of other origin, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Fetopelvic disproportion (653.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Fetopelvic disproportion (653.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.4''', NULL,
+ 'Fetopelvic disproportion (653.4)', 'Fetopelvic disproportion (653.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Fetopelvic disproportion (653.4)\(653.40) Fetopelvic disproportion, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Fetopelvic disproportion (653.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Fetopelvic disproportion (653.4)\(653.40) Fetopelvic disproportion, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.40''', NULL,
+ '(653.40) Fetopelvic disproportion, unspecified as to episode of care or not applicable', '(653.40) Fetopelvic disproportion, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Fetopelvic disproportion (653.4)\(653.41) Fetopelvic disproportion, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Fetopelvic disproportion (653.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Fetopelvic disproportion (653.4)\(653.41) Fetopelvic disproportion, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.41''', NULL,
+ '(653.41) Fetopelvic disproportion, delivered, with or without mention of antepartum condition', '(653.41) Fetopelvic disproportion, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Fetopelvic disproportion (653.4)\(653.43) Fetopelvic disproportion, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Fetopelvic disproportion (653.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Fetopelvic disproportion (653.4)\(653.43) Fetopelvic disproportion, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.43''', NULL,
+ '(653.43) Fetopelvic disproportion, antepartum condition or complication', '(653.43) Fetopelvic disproportion, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Generally contracted pelvis in pregnancy, labor, and delivery (653.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Generally contracted pelvis in pregnancy, labor, and delivery (653.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.1''', NULL,
+ 'Generally contracted pelvis in pregnancy, labor, and delivery (653.1)', 'Generally contracted pelvis in pregnancy, labor, and delivery (653.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Generally contracted pelvis in pregnancy, labor, and delivery (653.1)\(653.10) Generally contracted pelvis, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Generally contracted pelvis in pregnancy, labor, and delivery (653.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Generally contracted pelvis in pregnancy, labor, and delivery (653.1)\(653.10) Generally contracted pelvis, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.10''', NULL,
+ '(653.10) Generally contracted pelvis, unspecified as to episode of care or not applicable', '(653.10) Generally contracted pelvis, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Generally contracted pelvis in pregnancy, labor, and delivery (653.1)\(653.11) Generally contracted pelvis, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Generally contracted pelvis in pregnancy, labor, and delivery (653.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Generally contracted pelvis in pregnancy, labor, and delivery (653.1)\(653.11) Generally contracted pelvis, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.11''', NULL,
+ '(653.11) Generally contracted pelvis, delivered, with or without mention of antepartum condition', '(653.11) Generally contracted pelvis, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Generally contracted pelvis in pregnancy, labor, and delivery (653.1)\(653.13) Generally contracted pelvis, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Generally contracted pelvis in pregnancy, labor, and delivery (653.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Generally contracted pelvis in pregnancy, labor, and delivery (653.1)\(653.13) Generally contracted pelvis, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.13''', NULL,
+ '(653.13) Generally contracted pelvis, antepartum condition or complication', '(653.13) Generally contracted pelvis, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Hydrocephalic fetus causing disproportion (653.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Hydrocephalic fetus causing disproportion (653.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.6''', NULL,
+ 'Hydrocephalic fetus causing disproportion (653.6)', 'Hydrocephalic fetus causing disproportion (653.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Hydrocephalic fetus causing disproportion (653.6)\(653.60) Hydrocephalic fetus causing disproportion, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Hydrocephalic fetus causing disproportion (653.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Hydrocephalic fetus causing disproportion (653.6)\(653.60) Hydrocephalic fetus causing disproportion, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.60''', NULL,
+ '(653.60) Hydrocephalic fetus causing disproportion, unspecified as to episode of care or not applicable', '(653.60) Hydrocephalic fetus causing disproportion, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Hydrocephalic fetus causing disproportion (653.6)\(653.61) Hydrocephalic fetus causing disproportion, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Hydrocephalic fetus causing disproportion (653.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Hydrocephalic fetus causing disproportion (653.6)\(653.61) Hydrocephalic fetus causing disproportion, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.61''', NULL,
+ '(653.61) Hydrocephalic fetus causing disproportion, delivered, with or without mention of antepartum condition', '(653.61) Hydrocephalic fetus causing disproportion, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Hydrocephalic fetus causing disproportion (653.6)\(653.63) Hydrocephalic fetus causing disproportion, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Hydrocephalic fetus causing disproportion (653.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Hydrocephalic fetus causing disproportion (653.6)\(653.63) Hydrocephalic fetus causing disproportion, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.63''', NULL,
+ '(653.63) Hydrocephalic fetus causing disproportion, antepartum condition or complication', '(653.63) Hydrocephalic fetus causing disproportion, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.2''', NULL,
+ 'Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)', 'Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\(653.20) Inlet contraction of pelvis, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\(653.20) Inlet contraction of pelvis, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.20''', NULL,
+ '(653.20) Inlet contraction of pelvis, unspecified as to episode of care or not applicable', '(653.20) Inlet contraction of pelvis, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\(653.21) Inlet contraction of pelvis, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\(653.21) Inlet contraction of pelvis, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.21''', NULL,
+ '(653.21) Inlet contraction of pelvis, delivered, with or without mention of antepartum condition', '(653.21) Inlet contraction of pelvis, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\(653.23) Inlet contraction of pelvis, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Inlet contraction of pelvis in pregnancy, labor, and delivery (653.2)\(653.23) Inlet contraction of pelvis, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.23''', NULL,
+ '(653.23) Inlet contraction of pelvis, antepartum condition or complication', '(653.23) Inlet contraction of pelvis, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.0''', NULL,
+ 'Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)', 'Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)\(653.00) Major abnormality of bony pelvis, not further specified, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)\(653.00) Major abnormality of bony pelvis, not further specified, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.00''', NULL,
+ '(653.00) Major abnormality of bony pelvis, not further specified, unspecified as to episode of care or not applicable', '(653.00) Major abnormality of bony pelvis, not further specified, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)\(653.01) Major abnormality of bony pelvis, not further specified, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)\(653.01) Major abnormality of bony pelvis, not further specified, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.01''', NULL,
+ '(653.01) Major abnormality of bony pelvis, not further specified, delivered, with or without mention of antepartum condition', '(653.01) Major abnormality of bony pelvis, not further specified, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)\(653.03) Major abnormality of bony pelvis, not further specified, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Major abnormality of bony pelvis, not further specified, in pregnancy, labor, and delivery (653.0)\(653.03) Major abnormality of bony pelvis, not further specified, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.03''', NULL,
+ '(653.03) Major abnormality of bony pelvis, not further specified, antepartum condition or complication', '(653.03) Major abnormality of bony pelvis, not further specified, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Other fetal abnormality causing disproportion (653.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Other fetal abnormality causing disproportion (653.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.7''', NULL,
+ 'Other fetal abnormality causing disproportion (653.7)', 'Other fetal abnormality causing disproportion (653.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Other fetal abnormality causing disproportion (653.7)\(653.70) Other fetal abnormality causing disproportion, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Other fetal abnormality causing disproportion (653.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Other fetal abnormality causing disproportion (653.7)\(653.70) Other fetal abnormality causing disproportion, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.70''', NULL,
+ '(653.70) Other fetal abnormality causing disproportion, unspecified as to episode of care or not applicable', '(653.70) Other fetal abnormality causing disproportion, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Other fetal abnormality causing disproportion (653.7)\(653.71) Other fetal abnormality causing disproportion, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Other fetal abnormality causing disproportion (653.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Other fetal abnormality causing disproportion (653.7)\(653.71) Other fetal abnormality causing disproportion, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.71''', NULL,
+ '(653.71) Other fetal abnormality causing disproportion, delivered, with or without mention of antepartum condition', '(653.71) Other fetal abnormality causing disproportion, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Other fetal abnormality causing disproportion (653.7)\(653.73) Other fetal abnormality causing disproportion, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Other fetal abnormality causing disproportion (653.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Other fetal abnormality causing disproportion (653.7)\(653.73) Other fetal abnormality causing disproportion, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.73''', NULL,
+ '(653.73) Other fetal abnormality causing disproportion, antepartum condition or complication', '(653.73) Other fetal abnormality causing disproportion, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.3''', NULL,
+ 'Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)', 'Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\(653.30) Outlet contraction of pelvis, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\(653.30) Outlet contraction of pelvis, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.30''', NULL,
+ '(653.30) Outlet contraction of pelvis, unspecified as to episode of care or not applicable', '(653.30) Outlet contraction of pelvis, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\(653.31) Outlet contraction of pelvis, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\(653.31) Outlet contraction of pelvis, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.31''', NULL,
+ '(653.31) Outlet contraction of pelvis, delivered, with or without mention of antepartum condition', '(653.31) Outlet contraction of pelvis, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\(653.33) Outlet contraction of pelvis, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Outlet contraction of pelvis in pregnancy, labor, and delivery (653.3)\(653.33) Outlet contraction of pelvis, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.33''', NULL,
+ '(653.33) Outlet contraction of pelvis, antepartum condition or complication', '(653.33) Outlet contraction of pelvis, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unspecified disproportion in pregnancy, labor, and delivery (653.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unspecified disproportion in pregnancy, labor, and delivery (653.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.9''', NULL,
+ 'Unspecified disproportion in pregnancy, labor, and delivery (653.9)', 'Unspecified disproportion in pregnancy, labor, and delivery (653.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unspecified disproportion in pregnancy, labor, and delivery (653.9)\(653.90) Unspecified disproportion, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unspecified disproportion in pregnancy, labor, and delivery (653.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unspecified disproportion in pregnancy, labor, and delivery (653.9)\(653.90) Unspecified disproportion, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.90''', NULL,
+ '(653.90) Unspecified disproportion, unspecified as to episode of care or not applicable', '(653.90) Unspecified disproportion, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unspecified disproportion in pregnancy, labor, and delivery (653.9)\(653.91) Unspecified disproportion, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unspecified disproportion in pregnancy, labor, and delivery (653.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unspecified disproportion in pregnancy, labor, and delivery (653.9)\(653.91) Unspecified disproportion, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.91''', NULL,
+ '(653.91) Unspecified disproportion, delivered, with or without mention of antepartum condition', '(653.91) Unspecified disproportion, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unspecified disproportion in pregnancy, labor, and delivery (653.9)\(653.93) Unspecified disproportion, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unspecified disproportion in pregnancy, labor, and delivery (653.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unspecified disproportion in pregnancy, labor, and delivery (653.9)\(653.93) Unspecified disproportion, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.93''', NULL,
+ '(653.93) Unspecified disproportion, antepartum condition or complication', '(653.93) Unspecified disproportion, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unusually large fetus causing disproportion (653.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unusually large fetus causing disproportion (653.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.5''', NULL,
+ 'Unusually large fetus causing disproportion (653.5)', 'Unusually large fetus causing disproportion (653.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unusually large fetus causing disproportion (653.5)\(653.50) Unusually large fetus causing disproportion, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unusually large fetus causing disproportion (653.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unusually large fetus causing disproportion (653.5)\(653.50) Unusually large fetus causing disproportion, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.50''', NULL,
+ '(653.50) Unusually large fetus causing disproportion, unspecified as to episode of care or not applicable', '(653.50) Unusually large fetus causing disproportion, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unusually large fetus causing disproportion (653.5)\(653.51) Unusually large fetus causing disproportion, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unusually large fetus causing disproportion (653.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unusually large fetus causing disproportion (653.5)\(653.51) Unusually large fetus causing disproportion, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.51''', NULL,
+ '(653.51) Unusually large fetus causing disproportion, delivered, with or without mention of antepartum condition', '(653.51) Unusually large fetus causing disproportion, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unusually large fetus causing disproportion (653.5)\(653.53) Unusually large fetus causing disproportion, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unusually large fetus causing disproportion (653.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Disproportion in pregnancy, labor, and delivery (653)\Unusually large fetus causing disproportion (653.5)\(653.53) Unusually large fetus causing disproportion, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''653.53''', NULL,
+ '(653.53) Unusually large fetus causing disproportion, antepartum condition or complication', '(653.53) Unusually large fetus causing disproportion, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655''', NULL,
+ 'Known or suspected fetal abnormality affecting management of mother (655)', 'Known or suspected fetal abnormality affecting management of mother (655)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Central nervous system malformation in fetus affecting management of mother (655.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Central nervous system malformation in fetus affecting management of mother (655.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.0''', NULL,
+ 'Central nervous system malformation in fetus affecting management of mother (655.0)', 'Central nervous system malformation in fetus affecting management of mother (655.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Central nervous system malformation in fetus affecting management of mother (655.0)\(655.00) Central nervous system malformation in fetus, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Central nervous system malformation in fetus affecting management of mother (655.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Central nervous system malformation in fetus affecting management of mother (655.0)\(655.00) Central nervous system malformation in fetus, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.00''', NULL,
+ '(655.00) Central nervous system malformation in fetus, unspecified as to episode of care or not applicable', '(655.00) Central nervous system malformation in fetus, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Central nervous system malformation in fetus affecting management of mother (655.0)\(655.01) Central nervous system malformation in fetus, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Central nervous system malformation in fetus affecting management of mother (655.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Central nervous system malformation in fetus affecting management of mother (655.0)\(655.01) Central nervous system malformation in fetus, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.01''', NULL,
+ '(655.01) Central nervous system malformation in fetus, delivered, with or without mention of antepartum condition', '(655.01) Central nervous system malformation in fetus, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Central nervous system malformation in fetus affecting management of mother (655.0)\(655.03) Central nervous system malformation in fetus, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Central nervous system malformation in fetus affecting management of mother (655.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Central nervous system malformation in fetus affecting management of mother (655.0)\(655.03) Central nervous system malformation in fetus, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.03''', NULL,
+ '(655.03) Central nervous system malformation in fetus, antepartum condition or complication', '(655.03) Central nervous system malformation in fetus, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Chromosomal abnormality in fetus affecting management of mother (655.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Chromosomal abnormality in fetus affecting management of mother (655.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.1''', NULL,
+ 'Chromosomal abnormality in fetus affecting management of mother (655.1)', 'Chromosomal abnormality in fetus affecting management of mother (655.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Chromosomal abnormality in fetus affecting management of mother (655.1)\(655.10) Chromosomal abnormality in fetus, affecting management of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Chromosomal abnormality in fetus affecting management of mother (655.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Chromosomal abnormality in fetus affecting management of mother (655.1)\(655.10) Chromosomal abnormality in fetus, affecting management of mother, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.10''', NULL,
+ '(655.10) Chromosomal abnormality in fetus, affecting management of mother, unspecified as to episode of care or not applicable', '(655.10) Chromosomal abnormality in fetus, affecting management of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Chromosomal abnormality in fetus affecting management of mother (655.1)\(655.11) Chromosomal abnormality in fetus, affecting management of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Chromosomal abnormality in fetus affecting management of mother (655.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Chromosomal abnormality in fetus affecting management of mother (655.1)\(655.11) Chromosomal abnormality in fetus, affecting management of mother, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.11''', NULL,
+ '(655.11) Chromosomal abnormality in fetus, affecting management of mother, delivered, with or without mention of antepartum condition', '(655.11) Chromosomal abnormality in fetus, affecting management of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Chromosomal abnormality in fetus affecting management of mother (655.1)\(655.13) Chromosomal abnormality in fetus, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Chromosomal abnormality in fetus affecting management of mother (655.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Chromosomal abnormality in fetus affecting management of mother (655.1)\(655.13) Chromosomal abnormality in fetus, affecting management of mother, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.13''', NULL,
+ '(655.13) Chromosomal abnormality in fetus, affecting management of mother, antepartum condition or complication', '(655.13) Chromosomal abnormality in fetus, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Decreased fetal movements, affecting management of mother (655.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Decreased fetal movements, affecting management of mother (655.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.7''', NULL,
+ 'Decreased fetal movements, affecting management of mother (655.7)', 'Decreased fetal movements, affecting management of mother (655.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Decreased fetal movements, affecting management of mother (655.7)\(655.70) Decreased fetal movements, affecting management of mother, unspecified as to episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Decreased fetal movements, affecting management of mother (655.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Decreased fetal movements, affecting management of mother (655.7)\(655.70) Decreased fetal movements, affecting management of mother, unspecified as to episode of care\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.70''', NULL,
+ '(655.70) Decreased fetal movements, affecting management of mother, unspecified as to episode of care', '(655.70) Decreased fetal movements, affecting management of mother, unspecified as to episode of care', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Decreased fetal movements, affecting management of mother (655.7)\(655.71) Decreased fetal movements, affecting management of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Decreased fetal movements, affecting management of mother (655.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Decreased fetal movements, affecting management of mother (655.7)\(655.71) Decreased fetal movements, affecting management of mother, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.71''', NULL,
+ '(655.71) Decreased fetal movements, affecting management of mother, delivered, with or without mention of antepartum condition', '(655.71) Decreased fetal movements, affecting management of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Decreased fetal movements, affecting management of mother (655.7)\(655.73) Decreased fetal movements, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Decreased fetal movements, affecting management of mother (655.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Decreased fetal movements, affecting management of mother (655.7)\(655.73) Decreased fetal movements, affecting management of mother, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.73''', NULL,
+ '(655.73) Decreased fetal movements, affecting management of mother, antepartum condition or complication', '(655.73) Decreased fetal movements, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.2''', NULL,
+ 'Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)', 'Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)\(655.20) Hereditary disease in family possibly affecting fetus, affecting management of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)\(655.20) Hereditary disease in family possibly affecting fetus, affecting management of mother, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.20''', NULL,
+ '(655.20) Hereditary disease in family possibly affecting fetus, affecting management of mother, unspecified as to episode of care or not applicable', '(655.20) Hereditary disease in family possibly affecting fetus, affecting management of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)\(655.21) Hereditary disease in family possibly affecting fetus, affecting management of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)\(655.21) Hereditary disease in family possibly affecting fetus, affecting management of mother, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.21''', NULL,
+ '(655.21) Hereditary disease in family possibly affecting fetus, affecting management of mother, delivered, with or without mention of antepartum condition', '(655.21) Hereditary disease in family possibly affecting fetus, affecting management of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)\(655.23) Hereditary disease in family possibly affecting fetus, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Hereditary disease in family possibly affecting fetus, affecting management of mother (655.2)\(655.23) Hereditary disease in family possibly affecting fetus, affecting management of mother, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.23''', NULL,
+ '(655.23) Hereditary disease in family possibly affecting fetus, affecting management of mother, antepartum condition or complication', '(655.23) Hereditary disease in family possibly affecting fetus, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.8''', NULL,
+ 'Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)', 'Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)\(655.80) Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)\(655.80) Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.80''', NULL,
+ '(655.80) Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, unspecified as to episode of care or not applicable', '(655.80) Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)\(655.81) Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)\(655.81) Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.81''', NULL,
+ '(655.81) Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, delivered, with or without mention of antepartum condition', '(655.81) Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)\(655.83) Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother (655.8)\(655.83) Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.83''', NULL,
+ '(655.83) Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, antepartum condition or complication', '(655.83) Other known or suspected fetal abnormality, not elsewhere classified, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from drugs, affecting management of mother (655.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from drugs, affecting management of mother (655.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.5''', NULL,
+ 'Suspected damage to fetus from drugs, affecting management of mother (655.5)', 'Suspected damage to fetus from drugs, affecting management of mother (655.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from drugs, affecting management of mother (655.5)\(655.50) Suspected damage to fetus from drugs, affecting management of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from drugs, affecting management of mother (655.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from drugs, affecting management of mother (655.5)\(655.50) Suspected damage to fetus from drugs, affecting management of mother, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.50''', NULL,
+ '(655.50) Suspected damage to fetus from drugs, affecting management of mother, unspecified as to episode of care or not applicable', '(655.50) Suspected damage to fetus from drugs, affecting management of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from drugs, affecting management of mother (655.5)\(655.51) Suspected damage to fetus from drugs, affecting management of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from drugs, affecting management of mother (655.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from drugs, affecting management of mother (655.5)\(655.51) Suspected damage to fetus from drugs, affecting management of mother, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.51''', NULL,
+ '(655.51) Suspected damage to fetus from drugs, affecting management of mother, delivered, with or without mention of antepartum condition', '(655.51) Suspected damage to fetus from drugs, affecting management of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from drugs, affecting management of mother (655.5)\(655.53) Suspected damage to fetus from drugs, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from drugs, affecting management of mother (655.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from drugs, affecting management of mother (655.5)\(655.53) Suspected damage to fetus from drugs, affecting management of mother, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.53''', NULL,
+ '(655.53) Suspected damage to fetus from drugs, affecting management of mother, antepartum condition or complication', '(655.53) Suspected damage to fetus from drugs, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.4''', NULL,
+ 'Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)', 'Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)\(655.40) Suspected damage to fetus from other disease in the mother, affecting management of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)\(655.40) Suspected damage to fetus from other disease in the mother, affecting management of mother, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.40''', NULL,
+ '(655.40) Suspected damage to fetus from other disease in the mother, affecting management of mother, unspecified as to episode of care or not applicable', '(655.40) Suspected damage to fetus from other disease in the mother, affecting management of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)\(655.41) Suspected damage to fetus from other disease in the mother, affecting management of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)\(655.41) Suspected damage to fetus from other disease in the mother, affecting management of mother, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.41''', NULL,
+ '(655.41) Suspected damage to fetus from other disease in the mother, affecting management of mother, delivered, with or without mention of antepartum condition', '(655.41) Suspected damage to fetus from other disease in the mother, affecting management of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)\(655.43) Suspected damage to fetus from other disease in the mother, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from other disease in the mother, affecting management of mother (655.4)\(655.43) Suspected damage to fetus from other disease in the mother, affecting management of mother, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.43''', NULL,
+ '(655.43) Suspected damage to fetus from other disease in the mother, affecting management of mother, antepartum condition or complication', '(655.43) Suspected damage to fetus from other disease in the mother, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from radiation, affecting management of mother (655.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from radiation, affecting management of mother (655.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.6''', NULL,
+ 'Suspected damage to fetus from radiation, affecting management of mother (655.6)', 'Suspected damage to fetus from radiation, affecting management of mother (655.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from radiation, affecting management of mother (655.6)\(655.60) Suspected damage to fetus from radiation, affecting management of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from radiation, affecting management of mother (655.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from radiation, affecting management of mother (655.6)\(655.60) Suspected damage to fetus from radiation, affecting management of mother, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.60''', NULL,
+ '(655.60) Suspected damage to fetus from radiation, affecting management of mother, unspecified as to episode of care or not applicable', '(655.60) Suspected damage to fetus from radiation, affecting management of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from radiation, affecting management of mother (655.6)\(655.61) Suspected damage to fetus from radiation, affecting management of mother, delivered,\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from radiation, affecting management of mother (655.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from radiation, affecting management of mother (655.6)\(655.61) Suspected damage to fetus from radiation, affecting management of mother, delivered,\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.61''', NULL,
+ '(655.61) Suspected damage to fetus from radiation, affecting management of mother, delivered,', '(655.61) Suspected damage to fetus from radiation, affecting management of mother, delivered,', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from radiation, affecting management of mother (655.6)\(655.63) Suspected damage to fetus from radiation, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from radiation, affecting management of mother (655.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from radiation, affecting management of mother (655.6)\(655.63) Suspected damage to fetus from radiation, affecting management of mother, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.63''', NULL,
+ '(655.63) Suspected damage to fetus from radiation, affecting management of mother, antepartum condition or complication', '(655.63) Suspected damage to fetus from radiation, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.3''', NULL,
+ 'Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)', 'Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)\(655.30) Suspected damage to fetus from viral disease in the mother, affecting management of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)\(655.30) Suspected damage to fetus from viral disease in the mother, affecting management of mother, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.30''', NULL,
+ '(655.30) Suspected damage to fetus from viral disease in the mother, affecting management of mother, unspecified as to episode of care or not applicable', '(655.30) Suspected damage to fetus from viral disease in the mother, affecting management of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)\(655.31) Suspected damage to fetus from viral disease in the mother, affecting management of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)\(655.31) Suspected damage to fetus from viral disease in the mother, affecting management of mother, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.31''', NULL,
+ '(655.31) Suspected damage to fetus from viral disease in the mother, affecting management of mother, delivered, with or without mention of antepartum condition', '(655.31) Suspected damage to fetus from viral disease in the mother, affecting management of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)\(655.33) Suspected damage to fetus from viral disease in the mother, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Suspected damage to fetus from viral disease in the mother, affecting management of mother (655.3)\(655.33) Suspected damage to fetus from viral disease in the mother, affecting management of mother, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.33''', NULL,
+ '(655.33) Suspected damage to fetus from viral disease in the mother, affecting management of mother, antepartum condition or complication', '(655.33) Suspected damage to fetus from viral disease in the mother, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.9''', NULL,
+ 'Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)', 'Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)\(655.90) Unspecified suspected fetal abnormality, affecting management of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)\(655.90) Unspecified suspected fetal abnormality, affecting management of mother, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.90''', NULL,
+ '(655.90) Unspecified suspected fetal abnormality, affecting management of mother, unspecified as to episode of care or not applicable', '(655.90) Unspecified suspected fetal abnormality, affecting management of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)\(655.91) Unspecified suspected fetal abnormality, affecting management of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)\(655.91) Unspecified suspected fetal abnormality, affecting management of mother, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.91''', NULL,
+ '(655.91) Unspecified suspected fetal abnormality, affecting management of mother, delivered, with or without mention of antepartum condition', '(655.91) Unspecified suspected fetal abnormality, affecting management of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)\(655.93) Unspecified suspected fetal abnormality, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Known or suspected fetal abnormality affecting management of mother (655)\Unspecified, known or suspected fetal abnormality affecting management of mother (655.9)\(655.93) Unspecified suspected fetal abnormality, affecting management of mother, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''655.93''', NULL,
+ '(655.93) Unspecified suspected fetal abnormality, affecting management of mother, antepartum condition or complication', '(655.93) Unspecified suspected fetal abnormality, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652''', NULL,
+ 'Malposition and malpresentation of fetus (652)', 'Malposition and malpresentation of fetus (652)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech or other malpresentation successfully converted to cephalic presentation (652.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech or other malpresentation successfully converted to cephalic presentation (652.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.1''', NULL,
+ 'Breech or other malpresentation successfully converted to cephalic presentation (652.1)', 'Breech or other malpresentation successfully converted to cephalic presentation (652.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech or other malpresentation successfully converted to cephalic presentation (652.1)\(652.10) Breech or other malpresentation successfully converted to cephalic presentation, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech or other malpresentation successfully converted to cephalic presentation (652.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech or other malpresentation successfully converted to cephalic presentation (652.1)\(652.10) Breech or other malpresentation successfully converted to cephalic presentation, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.10''', NULL,
+ '(652.10) Breech or other malpresentation successfully converted to cephalic presentation, unspecified as to episode of care or not applicable', '(652.10) Breech or other malpresentation successfully converted to cephalic presentation, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech or other malpresentation successfully converted to cephalic presentation (652.1)\(652.11) Breech or other malpresentation successfully converted to cephalic presentation, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech or other malpresentation successfully converted to cephalic presentation (652.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech or other malpresentation successfully converted to cephalic presentation (652.1)\(652.11) Breech or other malpresentation successfully converted to cephalic presentation, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.11''', NULL,
+ '(652.11) Breech or other malpresentation successfully converted to cephalic presentation, delivered, with or without mention of antepartum condition', '(652.11) Breech or other malpresentation successfully converted to cephalic presentation, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech or other malpresentation successfully converted to cephalic presentation (652.1)\(652.13) Breech or other malpresentation successfully converted to cephalic presentation, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech or other malpresentation successfully converted to cephalic presentation (652.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech or other malpresentation successfully converted to cephalic presentation (652.1)\(652.13) Breech or other malpresentation successfully converted to cephalic presentation, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.13''', NULL,
+ '(652.13) Breech or other malpresentation successfully converted to cephalic presentation, antepartum condition or complication', '(652.13) Breech or other malpresentation successfully converted to cephalic presentation, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech presentation without mention of version (652.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech presentation without mention of version (652.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.2''', NULL,
+ 'Breech presentation without mention of version (652.2)', 'Breech presentation without mention of version (652.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech presentation without mention of version (652.2)\(652.20) Breech presentation without mention of version, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech presentation without mention of version (652.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech presentation without mention of version (652.2)\(652.20) Breech presentation without mention of version, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.20''', NULL,
+ '(652.20) Breech presentation without mention of version, unspecified as to episode of care or not applicable', '(652.20) Breech presentation without mention of version, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech presentation without mention of version (652.2)\(652.21) Breech presentation without mention of version, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech presentation without mention of version (652.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech presentation without mention of version (652.2)\(652.21) Breech presentation without mention of version, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.21''', NULL,
+ '(652.21) Breech presentation without mention of version, delivered, with or without mention of antepartum condition', '(652.21) Breech presentation without mention of version, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech presentation without mention of version (652.2)\(652.23) Breech presentation without mention of version, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech presentation without mention of version (652.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Breech presentation without mention of version (652.2)\(652.23) Breech presentation without mention of version, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.23''', NULL,
+ '(652.23) Breech presentation without mention of version, antepartum condition or complication', '(652.23) Breech presentation without mention of version, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Face or brow presentation of fetus (652.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Face or brow presentation of fetus (652.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.4''', NULL,
+ 'Face or brow presentation of fetus (652.4)', 'Face or brow presentation of fetus (652.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Face or brow presentation of fetus (652.4)\(652.40) Face or brow presentation, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Face or brow presentation of fetus (652.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Face or brow presentation of fetus (652.4)\(652.40) Face or brow presentation, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.40''', NULL,
+ '(652.40) Face or brow presentation, unspecified as to episode of care or not applicable', '(652.40) Face or brow presentation, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Face or brow presentation of fetus (652.4)\(652.41) Face or brow presentation, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Face or brow presentation of fetus (652.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Face or brow presentation of fetus (652.4)\(652.41) Face or brow presentation, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.41''', NULL,
+ '(652.41) Face or brow presentation, delivered, with or without mention of antepartum condition', '(652.41) Face or brow presentation, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Face or brow presentation of fetus (652.4)\(652.43) Face or brow presentation, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Face or brow presentation of fetus (652.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Face or brow presentation of fetus (652.4)\(652.43) Face or brow presentation, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.43''', NULL,
+ '(652.43) Face or brow presentation, antepartum condition or complication', '(652.43) Face or brow presentation, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\High fetal head at term (652.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\High fetal head at term (652.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.5''', NULL,
+ 'High fetal head at term (652.5)', 'High fetal head at term (652.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\High fetal head at term (652.5)\(652.50) High head at term, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\High fetal head at term (652.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\High fetal head at term (652.5)\(652.50) High head at term, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.50''', NULL,
+ '(652.50) High head at term, unspecified as to episode of care or not applicable', '(652.50) High head at term, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\High fetal head at term (652.5)\(652.51) High head at term, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\High fetal head at term (652.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\High fetal head at term (652.5)\(652.51) High head at term, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.51''', NULL,
+ '(652.51) High head at term, delivered, with or without mention of antepartum condition', '(652.51) High head at term, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\High fetal head at term (652.5)\(652.53) High head at term, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\High fetal head at term (652.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\High fetal head at term (652.5)\(652.53) High head at term, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.53''', NULL,
+ '(652.53) High head at term, antepartum condition or complication', '(652.53) High head at term, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Multiple gestation with malpresentation of one fetus or more (652.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Multiple gestation with malpresentation of one fetus or more (652.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.6''', NULL,
+ 'Multiple gestation with malpresentation of one fetus or more (652.6)', 'Multiple gestation with malpresentation of one fetus or more (652.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Multiple gestation with malpresentation of one fetus or more (652.6)\(652.60) Multiple gestation with malpresentation of one fetus or more, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Multiple gestation with malpresentation of one fetus or more (652.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Multiple gestation with malpresentation of one fetus or more (652.6)\(652.60) Multiple gestation with malpresentation of one fetus or more, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.60''', NULL,
+ '(652.60) Multiple gestation with malpresentation of one fetus or more, unspecified as to episode of care or not applicable', '(652.60) Multiple gestation with malpresentation of one fetus or more, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Multiple gestation with malpresentation of one fetus or more (652.6)\(652.61) Multiple gestation with malpresentation of one fetus or more, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Multiple gestation with malpresentation of one fetus or more (652.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Multiple gestation with malpresentation of one fetus or more (652.6)\(652.61) Multiple gestation with malpresentation of one fetus or more, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.61''', NULL,
+ '(652.61) Multiple gestation with malpresentation of one fetus or more, delivered, with or without mention of antepartum condition', '(652.61) Multiple gestation with malpresentation of one fetus or more, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Multiple gestation with malpresentation of one fetus or more (652.6)\(652.63) Multiple gestation with malpresentation of one fetus or more, antepartum condtion or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Multiple gestation with malpresentation of one fetus or more (652.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Multiple gestation with malpresentation of one fetus or more (652.6)\(652.63) Multiple gestation with malpresentation of one fetus or more, antepartum condtion or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.63''', NULL,
+ '(652.63) Multiple gestation with malpresentation of one fetus or more, antepartum condtion or complication', '(652.63) Multiple gestation with malpresentation of one fetus or more, antepartum condtion or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Other specified malposition or malpresentation of fetus (652.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Other specified malposition or malpresentation of fetus (652.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.8''', NULL,
+ 'Other specified malposition or malpresentation of fetus (652.8)', 'Other specified malposition or malpresentation of fetus (652.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Other specified malposition or malpresentation of fetus (652.8)\(652.80) Other specified malposition or malpresentation, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Other specified malposition or malpresentation of fetus (652.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Other specified malposition or malpresentation of fetus (652.8)\(652.80) Other specified malposition or malpresentation, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.80''', NULL,
+ '(652.80) Other specified malposition or malpresentation, unspecified as to episode of care or not applicable', '(652.80) Other specified malposition or malpresentation, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Other specified malposition or malpresentation of fetus (652.8)\(652.81) Other specified malposition or malpresentation, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Other specified malposition or malpresentation of fetus (652.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Other specified malposition or malpresentation of fetus (652.8)\(652.81) Other specified malposition or malpresentation, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.81''', NULL,
+ '(652.81) Other specified malposition or malpresentation, delivered, with or without mention of antepartum condition', '(652.81) Other specified malposition or malpresentation, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Other specified malposition or malpresentation of fetus (652.8)\(652.83) Other specified malposition or malpresentation, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Other specified malposition or malpresentation of fetus (652.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Other specified malposition or malpresentation of fetus (652.8)\(652.83) Other specified malposition or malpresentation, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.83''', NULL,
+ '(652.83) Other specified malposition or malpresentation, antepartum condition or complication', '(652.83) Other specified malposition or malpresentation, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Prolapsed arm of fetus (652.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Prolapsed arm of fetus (652.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.7''', NULL,
+ 'Prolapsed arm of fetus (652.7)', 'Prolapsed arm of fetus (652.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Prolapsed arm of fetus (652.7)\(652.70) Prolapsed arm of fetus, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Prolapsed arm of fetus (652.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Prolapsed arm of fetus (652.7)\(652.70) Prolapsed arm of fetus, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.70''', NULL,
+ '(652.70) Prolapsed arm of fetus, unspecified as to episode of care or not applicable', '(652.70) Prolapsed arm of fetus, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Prolapsed arm of fetus (652.7)\(652.71) Prolapsed arm of fetus, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Prolapsed arm of fetus (652.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Prolapsed arm of fetus (652.7)\(652.71) Prolapsed arm of fetus, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.71''', NULL,
+ '(652.71) Prolapsed arm of fetus, delivered, with or without mention of antepartum condition', '(652.71) Prolapsed arm of fetus, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Prolapsed arm of fetus (652.7)\(652.73) Prolapsed arm of fetus, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Prolapsed arm of fetus (652.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Prolapsed arm of fetus (652.7)\(652.73) Prolapsed arm of fetus, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.73''', NULL,
+ '(652.73) Prolapsed arm of fetus, antepartum condition or complication', '(652.73) Prolapsed arm of fetus, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Transverse or oblique presentation of fetus (652.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Transverse or oblique presentation of fetus (652.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.3''', NULL,
+ 'Transverse or oblique presentation of fetus (652.3)', 'Transverse or oblique presentation of fetus (652.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Transverse or oblique presentation of fetus (652.3)\(652.30) Transverse or oblique presentation, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Transverse or oblique presentation of fetus (652.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Transverse or oblique presentation of fetus (652.3)\(652.30) Transverse or oblique presentation, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.30''', NULL,
+ '(652.30) Transverse or oblique presentation, unspecified as to episode of care or not applicable', '(652.30) Transverse or oblique presentation, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Transverse or oblique presentation of fetus (652.3)\(652.31) Transverse or oblique presentation, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Transverse or oblique presentation of fetus (652.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Transverse or oblique presentation of fetus (652.3)\(652.31) Transverse or oblique presentation, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.31''', NULL,
+ '(652.31) Transverse or oblique presentation, delivered, with or without mention of antepartum condition', '(652.31) Transverse or oblique presentation, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Transverse or oblique presentation of fetus (652.3)\(652.33) Transverse or oblique presentation, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Transverse or oblique presentation of fetus (652.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Transverse or oblique presentation of fetus (652.3)\(652.33) Transverse or oblique presentation, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.33''', NULL,
+ '(652.33) Transverse or oblique presentation, antepartum condition or complication', '(652.33) Transverse or oblique presentation, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unspecified malposition or malpresentation of fetus (652.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unspecified malposition or malpresentation of fetus (652.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.9''', NULL,
+ 'Unspecified malposition or malpresentation of fetus (652.9)', 'Unspecified malposition or malpresentation of fetus (652.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unspecified malposition or malpresentation of fetus (652.9)\(652.90) Unspecified malposition or malpresentation, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unspecified malposition or malpresentation of fetus (652.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unspecified malposition or malpresentation of fetus (652.9)\(652.90) Unspecified malposition or malpresentation, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.90''', NULL,
+ '(652.90) Unspecified malposition or malpresentation, unspecified as to episode of care or not applicable', '(652.90) Unspecified malposition or malpresentation, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unspecified malposition or malpresentation of fetus (652.9)\(652.91) Unspecified malposition or malpresentation, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unspecified malposition or malpresentation of fetus (652.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unspecified malposition or malpresentation of fetus (652.9)\(652.91) Unspecified malposition or malpresentation, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.91''', NULL,
+ '(652.91) Unspecified malposition or malpresentation, delivered, with or without mention of antepartum condition', '(652.91) Unspecified malposition or malpresentation, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unspecified malposition or malpresentation of fetus (652.9)\(652.93) Unspecified malposition or malpresentation, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unspecified malposition or malpresentation of fetus (652.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unspecified malposition or malpresentation of fetus (652.9)\(652.93) Unspecified malposition or malpresentation, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.93''', NULL,
+ '(652.93) Unspecified malposition or malpresentation, antepartum condition or complication', '(652.93) Unspecified malposition or malpresentation, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unstable lie of fetus (652.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unstable lie of fetus (652.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.0''', NULL,
+ 'Unstable lie of fetus (652.0)', 'Unstable lie of fetus (652.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unstable lie of fetus (652.0)\(652.00) Unstable lie, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unstable lie of fetus (652.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unstable lie of fetus (652.0)\(652.00) Unstable lie, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.00''', NULL,
+ '(652.00) Unstable lie, unspecified as to episode of care or not applicable', '(652.00) Unstable lie, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unstable lie of fetus (652.0)\(652.01) Unstable lie, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unstable lie of fetus (652.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unstable lie of fetus (652.0)\(652.01) Unstable lie, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.01''', NULL,
+ '(652.01) Unstable lie, delivered, with or without mention of antepartum condition', '(652.01) Unstable lie, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unstable lie of fetus (652.0)\(652.03) Unstable lie, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unstable lie of fetus (652.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Malposition and malpresentation of fetus (652)\Unstable lie of fetus (652.0)\(652.03) Unstable lie, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''652.03''', NULL,
+ '(652.03) Unstable lie, antepartum condition or complication', '(652.03) Unstable lie, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651''', NULL,
+ 'Multiple gestation (651)', 'Multiple gestation (651)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Multiple gestation following (elective) fetal reduction (651.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Multiple gestation following (elective) fetal reduction (651.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''elective) fetal reduction (651.7''', NULL,
+ 'Multiple gestation following (elective) fetal reduction (651.7)', 'Multiple gestation following (elective) fetal reduction (651.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Multiple gestation following (elective) fetal reduction (651.7)\(651.70) Multiple gestation following (elective) fetal reduction, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Multiple gestation following (elective) fetal reduction (651.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Multiple gestation following (elective) fetal reduction (651.7)\(651.70) Multiple gestation following (elective) fetal reduction, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.70) Multiple gestation following (elective''', NULL,
+ '(651.70) Multiple gestation following (elective) fetal reduction, unspecified as to episode of care or not applicable', '(651.70) Multiple gestation following (elective) fetal reduction, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Multiple gestation following (elective) fetal reduction (651.7)\(651.71) Multiple gestation following (elective) fetal reduction,delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Multiple gestation following (elective) fetal reduction (651.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Multiple gestation following (elective) fetal reduction (651.7)\(651.71) Multiple gestation following (elective) fetal reduction,delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.71) Multiple gestation following (elective''', NULL,
+ '(651.71) Multiple gestation following (elective) fetal reduction,delivered, with or without mention of antepartum condition', '(651.71) Multiple gestation following (elective) fetal reduction,delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Multiple gestation following (elective) fetal reduction (651.7)\(651.73) Multiple gestation following (elective) fetal reduction, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Multiple gestation following (elective) fetal reduction (651.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Multiple gestation following (elective) fetal reduction (651.7)\(651.73) Multiple gestation following (elective) fetal reduction, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.73) Multiple gestation following (elective''', NULL,
+ '(651.73) Multiple gestation following (elective) fetal reduction, antepartum condition or complication', '(651.73) Multiple gestation following (elective) fetal reduction, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''es) (651.6''', NULL,
+ 'Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)', 'Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)\(651.60) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)\(651.60) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.60) Other multiple pregnancy with fetal loss and retention of one or more fetus(es''', NULL,
+ '(651.60) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable', '(651.60) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)\(651.61) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)\(651.61) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.61) Other multiple pregnancy with fetal loss and retention of one or more fetus(es''', NULL,
+ '(651.61) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition', '(651.61) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)\(651.63) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other multiple pregnancy with fetal loss and retention of one or more fetus(es) (651.6)\(651.63) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.63) Other multiple pregnancy with fetal loss and retention of one or more fetus(es''', NULL,
+ '(651.63) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication', '(651.63) Other multiple pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other specified multiple gestation (651.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other specified multiple gestation (651.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.8''', NULL,
+ 'Other specified multiple gestation (651.8)', 'Other specified multiple gestation (651.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other specified multiple gestation (651.8)\(651.80) Other specified multiple gestation, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other specified multiple gestation (651.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other specified multiple gestation (651.8)\(651.80) Other specified multiple gestation, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.80''', NULL,
+ '(651.80) Other specified multiple gestation, unspecified as to episode of care or not applicable', '(651.80) Other specified multiple gestation, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other specified multiple gestation (651.8)\(651.81) Other specified multiple gestation, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other specified multiple gestation (651.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other specified multiple gestation (651.8)\(651.81) Other specified multiple gestation, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.81''', NULL,
+ '(651.81) Other specified multiple gestation, delivered, with or without mention of antepartum condition', '(651.81) Other specified multiple gestation, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other specified multiple gestation (651.8)\(651.83) Other specified multiple gestation, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other specified multiple gestation (651.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Other specified multiple gestation (651.8)\(651.83) Other specified multiple gestation, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.83''', NULL,
+ '(651.83) Other specified multiple gestation, antepartum condition or complication', '(651.83) Other specified multiple gestation, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy (651.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy (651.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.2''', NULL,
+ 'Quadruplet pregnancy (651.2)', 'Quadruplet pregnancy (651.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy (651.2)\(651.20) Quadruplet pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy (651.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy (651.2)\(651.20) Quadruplet pregnancy, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.20''', NULL,
+ '(651.20) Quadruplet pregnancy, unspecified as to episode of care or not applicable', '(651.20) Quadruplet pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy (651.2)\(651.21) Quadruplet pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy (651.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy (651.2)\(651.21) Quadruplet pregnancy, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.21''', NULL,
+ '(651.21) Quadruplet pregnancy, delivered, with or without mention of antepartum condition', '(651.21) Quadruplet pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy (651.2)\(651.23) Quadruplet pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy (651.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy (651.2)\(651.23) Quadruplet pregnancy, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.23''', NULL,
+ '(651.23) Quadruplet pregnancy, antepartum condition or complication', '(651.23) Quadruplet pregnancy, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''es) (651.5''', NULL,
+ 'Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)', 'Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\(651.50) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\(651.50) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.50) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es''', NULL,
+ '(651.50) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable', '(651.50) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\(651.51) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\(651.51) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.51) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es''', NULL,
+ '(651.51) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition', '(651.51) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\(651.53) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Quadruplet pregnancy with fetal loss and retention of one or more fetus(es) (651.5)\(651.53) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.53) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es''', NULL,
+ '(651.53) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication', '(651.53) Quadruplet pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy (651.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy (651.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.1''', NULL,
+ 'Triplet pregnancy (651.1)', 'Triplet pregnancy (651.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy (651.1)\(651.10) Triplet pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy (651.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy (651.1)\(651.10) Triplet pregnancy, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.10''', NULL,
+ '(651.10) Triplet pregnancy, unspecified as to episode of care or not applicable', '(651.10) Triplet pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy (651.1)\(651.11) Triplet pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy (651.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy (651.1)\(651.11) Triplet pregnancy, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.11''', NULL,
+ '(651.11) Triplet pregnancy, delivered, with or without mention of antepartum condition', '(651.11) Triplet pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy (651.1)\(651.13) Triplet pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy (651.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy (651.1)\(651.13) Triplet pregnancy, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.13''', NULL,
+ '(651.13) Triplet pregnancy, antepartum condition or complication', '(651.13) Triplet pregnancy, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''es) (651.4''', NULL,
+ 'Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)', 'Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)\(651.40) Triplet pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)\(651.40) Triplet pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.40) Triplet pregnancy with fetal loss and retention of one or more fetus(es''', NULL,
+ '(651.40) Triplet pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable', '(651.40) Triplet pregnancy with fetal loss and retention of one or more fetus(es), unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)\(651.41) Triplet pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)\(651.41) Triplet pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.41) Triplet pregnancy with fetal loss and retention of one or more fetus(es''', NULL,
+ '(651.41) Triplet pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition', '(651.41) Triplet pregnancy with fetal loss and retention of one or more fetus(es), delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)\(651.43) Triplet pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Triplet pregnancy with fetal loss and retention of one or more fetus (es) (651.4)\(651.43) Triplet pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.43) Triplet pregnancy with fetal loss and retention of one or more fetus(es''', NULL,
+ '(651.43) Triplet pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication', '(651.43) Triplet pregnancy with fetal loss and retention of one or more fetus(es), antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy (651.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy (651.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.0''', NULL,
+ 'Twin pregnancy (651.0)', 'Twin pregnancy (651.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy (651.0)\(651.00) Twin pregnancy, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy (651.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy (651.0)\(651.00) Twin pregnancy, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.00''', NULL,
+ '(651.00) Twin pregnancy, unspecified as to episode of care or not applicable', '(651.00) Twin pregnancy, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy (651.0)\(651.01) Twin pregnancy, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy (651.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy (651.0)\(651.01) Twin pregnancy, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.01''', NULL,
+ '(651.01) Twin pregnancy, delivered, with or without mention of antepartum condition', '(651.01) Twin pregnancy, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy (651.0)\(651.03) Twin pregnancy, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy (651.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy (651.0)\(651.03) Twin pregnancy, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.03''', NULL,
+ '(651.03) Twin pregnancy, antepartum condition or complication', '(651.03) Twin pregnancy, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy with fetal loss and retention of one fetus (651.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy with fetal loss and retention of one fetus (651.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.3''', NULL,
+ 'Twin pregnancy with fetal loss and retention of one fetus (651.3)', 'Twin pregnancy with fetal loss and retention of one fetus (651.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy with fetal loss and retention of one fetus (651.3)\(651.30) Twin pregnancy with fetal loss and retention of one fetus, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy with fetal loss and retention of one fetus (651.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy with fetal loss and retention of one fetus (651.3)\(651.30) Twin pregnancy with fetal loss and retention of one fetus, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.30''', NULL,
+ '(651.30) Twin pregnancy with fetal loss and retention of one fetus, unspecified as to episode of care or not applicable', '(651.30) Twin pregnancy with fetal loss and retention of one fetus, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy with fetal loss and retention of one fetus (651.3)\(651.31) Twin pregnancy with fetal loss and retention of one fetus, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy with fetal loss and retention of one fetus (651.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy with fetal loss and retention of one fetus (651.3)\(651.31) Twin pregnancy with fetal loss and retention of one fetus, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.31''', NULL,
+ '(651.31) Twin pregnancy with fetal loss and retention of one fetus, delivered, with or without mention of antepartum condition', '(651.31) Twin pregnancy with fetal loss and retention of one fetus, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy with fetal loss and retention of one fetus (651.3)\(651.33) Twin pregnancy with fetal loss and retention of one fetus, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy with fetal loss and retention of one fetus (651.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Twin pregnancy with fetal loss and retention of one fetus (651.3)\(651.33) Twin pregnancy with fetal loss and retention of one fetus, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.33''', NULL,
+ '(651.33) Twin pregnancy with fetal loss and retention of one fetus, antepartum condition or complication', '(651.33) Twin pregnancy with fetal loss and retention of one fetus, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Unspecified multiple gestation (651.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Unspecified multiple gestation (651.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.9''', NULL,
+ 'Unspecified multiple gestation (651.9)', 'Unspecified multiple gestation (651.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Unspecified multiple gestation (651.9)\(651.90) Unspecified multiple gestation, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Unspecified multiple gestation (651.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Unspecified multiple gestation (651.9)\(651.90) Unspecified multiple gestation, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.90''', NULL,
+ '(651.90) Unspecified multiple gestation, unspecified as to episode of care or not applicable', '(651.90) Unspecified multiple gestation, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Unspecified multiple gestation (651.9)\(651.91) Unspecified multiple gestation, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Unspecified multiple gestation (651.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Unspecified multiple gestation (651.9)\(651.91) Unspecified multiple gestation, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.91''', NULL,
+ '(651.91) Unspecified multiple gestation, delivered, with or without mention of antepartum condition', '(651.91) Unspecified multiple gestation, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Unspecified multiple gestation (651.9)\(651.93) Unspecified multiple gestation, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Unspecified multiple gestation (651.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Multiple gestation (651)\Unspecified multiple gestation (651.9)\(651.93) Unspecified multiple gestation, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''651.93''', NULL,
+ '(651.93) Unspecified multiple gestation, antepartum condition or complication', '(651.93) Unspecified multiple gestation, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659''', NULL,
+ 'Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)', 'Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Abnormality in fetal heart rate or rhythm (659.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Abnormality in fetal heart rate or rhythm (659.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.7''', NULL,
+ 'Abnormality in fetal heart rate or rhythm (659.7)', 'Abnormality in fetal heart rate or rhythm (659.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Abnormality in fetal heart rate or rhythm (659.7)\(659.70) Abnormality in fetal heart rate or rhythm, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Abnormality in fetal heart rate or rhythm (659.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Abnormality in fetal heart rate or rhythm (659.7)\(659.70) Abnormality in fetal heart rate or rhythm, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.70''', NULL,
+ '(659.70) Abnormality in fetal heart rate or rhythm, unspecified as to episode of care or not applicable', '(659.70) Abnormality in fetal heart rate or rhythm, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Abnormality in fetal heart rate or rhythm (659.7)\(659.71) Abnormality in fetal heart rate or rhythm, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Abnormality in fetal heart rate or rhythm (659.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Abnormality in fetal heart rate or rhythm (659.7)\(659.71) Abnormality in fetal heart rate or rhythm, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.71''', NULL,
+ '(659.71) Abnormality in fetal heart rate or rhythm, delivered, with or without mention of antepartum condition', '(659.71) Abnormality in fetal heart rate or rhythm, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Abnormality in fetal heart rate or rhythm (659.7)\(659.73) Abnormality in fetal heart rate or rhythm, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Abnormality in fetal heart rate or rhythm (659.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Abnormality in fetal heart rate or rhythm (659.7)\(659.73) Abnormality in fetal heart rate or rhythm, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.73''', NULL,
+ '(659.73) Abnormality in fetal heart rate or rhythm, antepartum condition or complication', '(659.73) Abnormality in fetal heart rate or rhythm, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly multigravida (659.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly multigravida (659.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.6''', NULL,
+ 'Elderly multigravida (659.6)', 'Elderly multigravida (659.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly multigravida (659.6)\(659.60) Elderly multigravida, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly multigravida (659.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly multigravida (659.6)\(659.60) Elderly multigravida, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.60''', NULL,
+ '(659.60) Elderly multigravida, unspecified as to episode of care or not applicable', '(659.60) Elderly multigravida, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly multigravida (659.6)\(659.61) Elderly multigravida, delivered with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly multigravida (659.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly multigravida (659.6)\(659.61) Elderly multigravida, delivered with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.61''', NULL,
+ '(659.61) Elderly multigravida, delivered with or without mention of antepartum condition', '(659.61) Elderly multigravida, delivered with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly multigravida (659.6)\(659.63) Elderly multigravida, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly multigravida (659.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly multigravida (659.6)\(659.63) Elderly multigravida, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.63''', NULL,
+ '(659.63) Elderly multigravida, antepartum condition or complication', '(659.63) Elderly multigravida, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly primigravida (659.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly primigravida (659.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.5''', NULL,
+ 'Elderly primigravida (659.5)', 'Elderly primigravida (659.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly primigravida (659.5)\(659.50) Elderly primigravida, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly primigravida (659.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly primigravida (659.5)\(659.50) Elderly primigravida, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.50''', NULL,
+ '(659.50) Elderly primigravida, unspecified as to episode of care or not applicable', '(659.50) Elderly primigravida, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly primigravida (659.5)\(659.51) Elderly primigravida, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly primigravida (659.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly primigravida (659.5)\(659.51) Elderly primigravida, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.51''', NULL,
+ '(659.51) Elderly primigravida, delivered, with or without mention of antepartum condition', '(659.51) Elderly primigravida, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly primigravida (659.5)\(659.53) Elderly primigravida, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly primigravida (659.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Elderly primigravida (659.5)\(659.53) Elderly primigravida, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.53''', NULL,
+ '(659.53) Elderly primigravida, antepartum condition or complication', '(659.53) Elderly primigravida, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed mechanical induction of labor (659.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed mechanical induction of labor (659.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.0''', NULL,
+ 'Failed mechanical induction of labor (659.0)', 'Failed mechanical induction of labor (659.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed mechanical induction of labor (659.0)\(659.00) Failed mechanical induction of labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed mechanical induction of labor (659.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed mechanical induction of labor (659.0)\(659.00) Failed mechanical induction of labor, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.00''', NULL,
+ '(659.00) Failed mechanical induction of labor, unspecified as to episode of care or not applicable', '(659.00) Failed mechanical induction of labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed mechanical induction of labor (659.0)\(659.01) Failed mechanical induction of labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed mechanical induction of labor (659.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed mechanical induction of labor (659.0)\(659.01) Failed mechanical induction of labor, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.01''', NULL,
+ '(659.01) Failed mechanical induction of labor, delivered, with or without mention of antepartum condition', '(659.01) Failed mechanical induction of labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed mechanical induction of labor (659.0)\(659.03) Failed mechanical induction of labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed mechanical induction of labor (659.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed mechanical induction of labor (659.0)\(659.03) Failed mechanical induction of labor, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.03''', NULL,
+ '(659.03) Failed mechanical induction of labor, antepartum condition or complication', '(659.03) Failed mechanical induction of labor, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed medical or unspecified induction of labor (659.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed medical or unspecified induction of labor (659.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.1''', NULL,
+ 'Failed medical or unspecified induction of labor (659.1)', 'Failed medical or unspecified induction of labor (659.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed medical or unspecified induction of labor (659.1)\(659.10) Failed medical or unspecified induction of labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed medical or unspecified induction of labor (659.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed medical or unspecified induction of labor (659.1)\(659.10) Failed medical or unspecified induction of labor, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.10''', NULL,
+ '(659.10) Failed medical or unspecified induction of labor, unspecified as to episode of care or not applicable', '(659.10) Failed medical or unspecified induction of labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed medical or unspecified induction of labor (659.1)\(659.11) Failed medical or unspecified induction of labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed medical or unspecified induction of labor (659.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed medical or unspecified induction of labor (659.1)\(659.11) Failed medical or unspecified induction of labor, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.11''', NULL,
+ '(659.11) Failed medical or unspecified induction of labor, delivered, with or without mention of antepartum condition', '(659.11) Failed medical or unspecified induction of labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed medical or unspecified induction of labor (659.1)\(659.13) Failed medical or unspecified induction of labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed medical or unspecified induction of labor (659.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Failed medical or unspecified induction of labor (659.1)\(659.13) Failed medical or unspecified induction of labor, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.13''', NULL,
+ '(659.13) Failed medical or unspecified induction of labor, antepartum condition or complication', '(659.13) Failed medical or unspecified induction of labor, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Generalized infection during labor (659.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Generalized infection during labor (659.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.3''', NULL,
+ 'Generalized infection during labor (659.3)', 'Generalized infection during labor (659.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Generalized infection during labor (659.3)\(659.30) Generalized infection during labor, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Generalized infection during labor (659.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Generalized infection during labor (659.3)\(659.30) Generalized infection during labor, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.30''', NULL,
+ '(659.30) Generalized infection during labor, unspecified as to episode of care or not applicable', '(659.30) Generalized infection during labor, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Generalized infection during labor (659.3)\(659.31) Generalized infection during labor, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Generalized infection during labor (659.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Generalized infection during labor (659.3)\(659.31) Generalized infection during labor, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.31''', NULL,
+ '(659.31) Generalized infection during labor, delivered, with or without mention of antepartum condition', '(659.31) Generalized infection during labor, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Generalized infection during labor (659.3)\(659.33) Generalized infection during labor, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Generalized infection during labor (659.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Generalized infection during labor (659.3)\(659.33) Generalized infection during labor, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.33''', NULL,
+ '(659.33) Generalized infection during labor, antepartum condition or complication', '(659.33) Generalized infection during labor, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Grand multiparity, with current pregnancy (659.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Grand multiparity, with current pregnancy (659.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.4''', NULL,
+ 'Grand multiparity, with current pregnancy (659.4)', 'Grand multiparity, with current pregnancy (659.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Grand multiparity, with current pregnancy (659.4)\(659.40) Grand multiparity, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Grand multiparity, with current pregnancy (659.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Grand multiparity, with current pregnancy (659.4)\(659.40) Grand multiparity, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.40''', NULL,
+ '(659.40) Grand multiparity, unspecified as to episode of care or not applicable', '(659.40) Grand multiparity, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Grand multiparity, with current pregnancy (659.4)\(659.41) Grand multiparity, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Grand multiparity, with current pregnancy (659.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Grand multiparity, with current pregnancy (659.4)\(659.41) Grand multiparity, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.41''', NULL,
+ '(659.41) Grand multiparity, delivered, with or without mention of antepartum condition', '(659.41) Grand multiparity, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Grand multiparity, with current pregnancy (659.4)\(659.43) Grand multiparity, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Grand multiparity, with current pregnancy (659.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Grand multiparity, with current pregnancy (659.4)\(659.43) Grand multiparity, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.43''', NULL,
+ '(659.43) Grand multiparity, antepartum condition or complication', '(659.43) Grand multiparity, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Maternal pyrexia during labor, unspecified (659.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Maternal pyrexia during labor, unspecified (659.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.2''', NULL,
+ 'Maternal pyrexia during labor, unspecified (659.2)', 'Maternal pyrexia during labor, unspecified (659.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Maternal pyrexia during labor, unspecified (659.2)\(659.20) Maternal pyrexia during labor, unspecified, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Maternal pyrexia during labor, unspecified (659.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Maternal pyrexia during labor, unspecified (659.2)\(659.20) Maternal pyrexia during labor, unspecified, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.20''', NULL,
+ '(659.20) Maternal pyrexia during labor, unspecified, unspecified as to episode of care or not applicable', '(659.20) Maternal pyrexia during labor, unspecified, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Maternal pyrexia during labor, unspecified (659.2)\(659.21) Maternal pyrexia during labor, unspecified, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Maternal pyrexia during labor, unspecified (659.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Maternal pyrexia during labor, unspecified (659.2)\(659.21) Maternal pyrexia during labor, unspecified, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.21''', NULL,
+ '(659.21) Maternal pyrexia during labor, unspecified, delivered, with or without mention of antepartum condition', '(659.21) Maternal pyrexia during labor, unspecified, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Maternal pyrexia during labor, unspecified (659.2)\(659.23) Maternal pyrexia during labor, unspecified, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Maternal pyrexia during labor, unspecified (659.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Maternal pyrexia during labor, unspecified (659.2)\(659.23) Maternal pyrexia during labor, unspecified, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.23''', NULL,
+ '(659.23) Maternal pyrexia during labor, unspecified, antepartum condition or complication', '(659.23) Maternal pyrexia during labor, unspecified, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Other specified indications for care or intervention related to labor and delivery (659.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Other specified indications for care or intervention related to labor and delivery (659.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.8''', NULL,
+ 'Other specified indications for care or intervention related to labor and delivery (659.8)', 'Other specified indications for care or intervention related to labor and delivery (659.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Other specified indications for care or intervention related to labor and delivery (659.8)\(659.80) Other specified indications for care or intervention related to labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Other specified indications for care or intervention related to labor and delivery (659.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Other specified indications for care or intervention related to labor and delivery (659.8)\(659.80) Other specified indications for care or intervention related to labor and delivery, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.80''', NULL,
+ '(659.80) Other specified indications for care or intervention related to labor and delivery, unspecified as to episode of care or not applicable', '(659.80) Other specified indications for care or intervention related to labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Other specified indications for care or intervention related to labor and delivery (659.8)\(659.81) Other specified indications for care or intervention related to labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Other specified indications for care or intervention related to labor and delivery (659.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Other specified indications for care or intervention related to labor and delivery (659.8)\(659.81) Other specified indications for care or intervention related to labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.81''', NULL,
+ '(659.81) Other specified indications for care or intervention related to labor and delivery, delivered, with or without mention of antepartum condition', '(659.81) Other specified indications for care or intervention related to labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Other specified indications for care or intervention related to labor and delivery (659.8)\(659.83) Other specified indications for care or intervention related to labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Other specified indications for care or intervention related to labor and delivery (659.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Other specified indications for care or intervention related to labor and delivery (659.8)\(659.83) Other specified indications for care or intervention related to labor and delivery, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.83''', NULL,
+ '(659.83) Other specified indications for care or intervention related to labor and delivery, antepartum condition or complication', '(659.83) Other specified indications for care or intervention related to labor and delivery, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Unspecified indication for care or intervention related to labor and delivery (659.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Unspecified indication for care or intervention related to labor and delivery (659.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.9''', NULL,
+ 'Unspecified indication for care or intervention related to labor and delivery (659.9)', 'Unspecified indication for care or intervention related to labor and delivery (659.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Unspecified indication for care or intervention related to labor and delivery (659.9)\(659.90) Unspecified indication for care or intervention related to labor and delivery, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Unspecified indication for care or intervention related to labor and delivery (659.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Unspecified indication for care or intervention related to labor and delivery (659.9)\(659.90) Unspecified indication for care or intervention related to labor and delivery, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.90''', NULL,
+ '(659.90) Unspecified indication for care or intervention related to labor and delivery, unspecified as to episode of care or not applicable', '(659.90) Unspecified indication for care or intervention related to labor and delivery, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Unspecified indication for care or intervention related to labor and delivery (659.9)\(659.91) Unspecified indication for care or intervention related to labor and delivery, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Unspecified indication for care or intervention related to labor and delivery (659.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Unspecified indication for care or intervention related to labor and delivery (659.9)\(659.91) Unspecified indication for care or intervention related to labor and delivery, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.91''', NULL,
+ '(659.91) Unspecified indication for care or intervention related to labor and delivery, delivered, with or without mention of antepartum condition', '(659.91) Unspecified indication for care or intervention related to labor and delivery, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Unspecified indication for care or intervention related to labor and delivery (659.9)\(659.93) Unspecified indication for care or intervention related to labor and delivery, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Unspecified indication for care or intervention related to labor and delivery (659.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other indications for care or intervention related to labor and delivery, not elsewhere classified (659)\Unspecified indication for care or intervention related to labor and delivery (659.9)\(659.93) Unspecified indication for care or intervention related to labor and delivery, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''659.93''', NULL,
+ '(659.93) Unspecified indication for care or intervention related to labor and delivery, antepartum condition or complication', '(659.93) Unspecified indication for care or intervention related to labor and delivery, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656''', NULL,
+ 'Other known or suspected fetal and placental problems affecting management of mother (656)', 'Other known or suspected fetal and placental problems affecting management of mother (656)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Excessive fetal growth affecting management of mother (656.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Excessive fetal growth affecting management of mother (656.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.6''', NULL,
+ 'Excessive fetal growth affecting management of mother (656.6)', 'Excessive fetal growth affecting management of mother (656.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Excessive fetal growth affecting management of mother (656.6)\(656.60) Excessive fetal growth, affecting management of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Excessive fetal growth affecting management of mother (656.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Excessive fetal growth affecting management of mother (656.6)\(656.60) Excessive fetal growth, affecting management of mother, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.60''', NULL,
+ '(656.60) Excessive fetal growth, affecting management of mother, unspecified as to episode of care or not applicable', '(656.60) Excessive fetal growth, affecting management of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Excessive fetal growth affecting management of mother (656.6)\(656.61) Excessive fetal growth, affecting management of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Excessive fetal growth affecting management of mother (656.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Excessive fetal growth affecting management of mother (656.6)\(656.61) Excessive fetal growth, affecting management of mother, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.61''', NULL,
+ '(656.61) Excessive fetal growth, affecting management of mother, delivered, with or without mention of antepartum condition', '(656.61) Excessive fetal growth, affecting management of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Excessive fetal growth affecting management of mother (656.6)\(656.63) Excessive fetal growth, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Excessive fetal growth affecting management of mother (656.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Excessive fetal growth affecting management of mother (656.6)\(656.63) Excessive fetal growth, affecting management of mother, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.63''', NULL,
+ '(656.63) Excessive fetal growth, affecting management of mother, antepartum condition or complication', '(656.63) Excessive fetal growth, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal distress affecting management of mother (656.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal distress affecting management of mother (656.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.3''', NULL,
+ 'Fetal distress affecting management of mother (656.3)', 'Fetal distress affecting management of mother (656.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal distress affecting management of mother (656.3)\(656.30) Fetal distress, affecting management of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal distress affecting management of mother (656.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal distress affecting management of mother (656.3)\(656.30) Fetal distress, affecting management of mother, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.30''', NULL,
+ '(656.30) Fetal distress, affecting management of mother, unspecified as to episode of care or not applicable', '(656.30) Fetal distress, affecting management of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal distress affecting management of mother (656.3)\(656.31) Fetal distress, affecting management of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal distress affecting management of mother (656.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal distress affecting management of mother (656.3)\(656.31) Fetal distress, affecting management of mother, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.31''', NULL,
+ '(656.31) Fetal distress, affecting management of mother, delivered, with or without mention of antepartum condition', '(656.31) Fetal distress, affecting management of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal distress affecting management of mother (656.3)\(656.33) Fetal distress, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal distress affecting management of mother (656.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal distress affecting management of mother (656.3)\(656.33) Fetal distress, affecting management of mother, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.33''', NULL,
+ '(656.33) Fetal distress, affecting management of mother, antepartum condition or complication', '(656.33) Fetal distress, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal-maternal hemorrhage affecting management of mother (656.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal-maternal hemorrhage affecting management of mother (656.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.0''', NULL,
+ 'Fetal-maternal hemorrhage affecting management of mother (656.0)', 'Fetal-maternal hemorrhage affecting management of mother (656.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal-maternal hemorrhage affecting management of mother (656.0)\(656.00) Fetal-maternal hemorrhage, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal-maternal hemorrhage affecting management of mother (656.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal-maternal hemorrhage affecting management of mother (656.0)\(656.00) Fetal-maternal hemorrhage, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.00''', NULL,
+ '(656.00) Fetal-maternal hemorrhage, unspecified as to episode of care or not applicable', '(656.00) Fetal-maternal hemorrhage, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal-maternal hemorrhage affecting management of mother (656.0)\(656.01) Fetal-maternal hemorrhage, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal-maternal hemorrhage affecting management of mother (656.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal-maternal hemorrhage affecting management of mother (656.0)\(656.01) Fetal-maternal hemorrhage, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.01''', NULL,
+ '(656.01) Fetal-maternal hemorrhage, delivered, with or without mention of antepartum condition', '(656.01) Fetal-maternal hemorrhage, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal-maternal hemorrhage affecting management of mother (656.0)\(656.03) Fetal-maternal hemorrhage, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal-maternal hemorrhage affecting management of mother (656.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Fetal-maternal hemorrhage affecting management of mother (656.0)\(656.03) Fetal-maternal hemorrhage, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.03''', NULL,
+ '(656.03) Fetal-maternal hemorrhage, antepartum condition or complication', '(656.03) Fetal-maternal hemorrhage, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Intrauterine death affecting management of mother (656.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Intrauterine death affecting management of mother (656.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.4''', NULL,
+ 'Intrauterine death affecting management of mother (656.4)', 'Intrauterine death affecting management of mother (656.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Intrauterine death affecting management of mother (656.4)\(656.40) Intrauterine death, affecting management of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Intrauterine death affecting management of mother (656.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Intrauterine death affecting management of mother (656.4)\(656.40) Intrauterine death, affecting management of mother, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.40''', NULL,
+ '(656.40) Intrauterine death, affecting management of mother, unspecified as to episode of care or not applicable', '(656.40) Intrauterine death, affecting management of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Intrauterine death affecting management of mother (656.4)\(656.41) Intrauterine death, affecting management of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Intrauterine death affecting management of mother (656.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Intrauterine death affecting management of mother (656.4)\(656.41) Intrauterine death, affecting management of mother, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.41''', NULL,
+ '(656.41) Intrauterine death, affecting management of mother, delivered, with or without mention of antepartum condition', '(656.41) Intrauterine death, affecting management of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Intrauterine death affecting management of mother (656.4)\(656.43) Intrauterine death, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Intrauterine death affecting management of mother (656.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Intrauterine death affecting management of mother (656.4)\(656.43) Intrauterine death, affecting management of mother, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.43''', NULL,
+ '(656.43) Intrauterine death, affecting management of mother, antepartum condition or complication', '(656.43) Intrauterine death, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.2''', NULL,
+ 'Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)', 'Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\(656.20) Isoimmunization from other and unspecified blood-group incompatibility, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\(656.20) Isoimmunization from other and unspecified blood-group incompatibility, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.20''', NULL,
+ '(656.20) Isoimmunization from other and unspecified blood-group incompatibility, unspecified as to episode of care or not applicable', '(656.20) Isoimmunization from other and unspecified blood-group incompatibility, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\(656.21) Isoimmunization from other and unspecified blood-group incompatibility, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\(656.21) Isoimmunization from other and unspecified blood-group incompatibility, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.21''', NULL,
+ '(656.21) Isoimmunization from other and unspecified blood-group incompatibility, delivered, with or without mention of antepartum condition', '(656.21) Isoimmunization from other and unspecified blood-group incompatibility, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\(656.23) Isoimmunization from other and unspecified blood-group incompatibility, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Isoimmunization from other and unspecified blood-group incompatibility affecting management of mother (656.2)\(656.23) Isoimmunization from other and unspecified blood-group incompatibility, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.23''', NULL,
+ '(656.23) Isoimmunization from other and unspecified blood-group incompatibility, antepartum condition or complication', '(656.23) Isoimmunization from other and unspecified blood-group incompatibility, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other placental conditions affecting management of mother (656.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other placental conditions affecting management of mother (656.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.7''', NULL,
+ 'Other placental conditions affecting management of mother (656.7)', 'Other placental conditions affecting management of mother (656.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other placental conditions affecting management of mother (656.7)\(656.70) Other placental conditions, affecting management of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other placental conditions affecting management of mother (656.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other placental conditions affecting management of mother (656.7)\(656.70) Other placental conditions, affecting management of mother, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.70''', NULL,
+ '(656.70) Other placental conditions, affecting management of mother, unspecified as to episode of care or not applicable', '(656.70) Other placental conditions, affecting management of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other placental conditions affecting management of mother (656.7)\(656.71) Other placental conditions, affecting management of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other placental conditions affecting management of mother (656.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other placental conditions affecting management of mother (656.7)\(656.71) Other placental conditions, affecting management of mother, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.71''', NULL,
+ '(656.71) Other placental conditions, affecting management of mother, delivered, with or without mention of antepartum condition', '(656.71) Other placental conditions, affecting management of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other placental conditions affecting management of mother (656.7)\(656.73) Other placental conditions, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other placental conditions affecting management of mother (656.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other placental conditions affecting management of mother (656.7)\(656.73) Other placental conditions, affecting management of mother, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.73''', NULL,
+ '(656.73) Other placental conditions, affecting management of mother, antepartum condition or complication', '(656.73) Other placental conditions, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other specified fetal and placental problems affecting management of mother (656.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other specified fetal and placental problems affecting management of mother (656.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.8''', NULL,
+ 'Other specified fetal and placental problems affecting management of mother (656.8)', 'Other specified fetal and placental problems affecting management of mother (656.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other specified fetal and placental problems affecting management of mother (656.8)\(656.80) Other specified fetal and placental problems, affecting management of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other specified fetal and placental problems affecting management of mother (656.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other specified fetal and placental problems affecting management of mother (656.8)\(656.80) Other specified fetal and placental problems, affecting management of mother, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.80''', NULL,
+ '(656.80) Other specified fetal and placental problems, affecting management of mother, unspecified as to episode of care or not applicable', '(656.80) Other specified fetal and placental problems, affecting management of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other specified fetal and placental problems affecting management of mother (656.8)\(656.81) Other specified fetal and placental problems, affecting management of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other specified fetal and placental problems affecting management of mother (656.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other specified fetal and placental problems affecting management of mother (656.8)\(656.81) Other specified fetal and placental problems, affecting management of mother, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.81''', NULL,
+ '(656.81) Other specified fetal and placental problems, affecting management of mother, delivered, with or without mention of antepartum condition', '(656.81) Other specified fetal and placental problems, affecting management of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other specified fetal and placental problems affecting management of mother (656.8)\(656.83) Other specified fetal and placental problems, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other specified fetal and placental problems affecting management of mother (656.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Other specified fetal and placental problems affecting management of mother (656.8)\(656.83) Other specified fetal and placental problems, affecting management of mother, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.83''', NULL,
+ '(656.83) Other specified fetal and placental problems, affecting management of mother, antepartum condition or complication', '(656.83) Other specified fetal and placental problems, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Poor fetal growth affecting management of mother (656.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Poor fetal growth affecting management of mother (656.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.5''', NULL,
+ 'Poor fetal growth affecting management of mother (656.5)', 'Poor fetal growth affecting management of mother (656.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Poor fetal growth affecting management of mother (656.5)\(656.50) Poor fetal growth, affecting management of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Poor fetal growth affecting management of mother (656.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Poor fetal growth affecting management of mother (656.5)\(656.50) Poor fetal growth, affecting management of mother, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.50''', NULL,
+ '(656.50) Poor fetal growth, affecting management of mother, unspecified as to episode of care or not applicable', '(656.50) Poor fetal growth, affecting management of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Poor fetal growth affecting management of mother (656.5)\(656.51) Poor fetal growth, affecting management of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Poor fetal growth affecting management of mother (656.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Poor fetal growth affecting management of mother (656.5)\(656.51) Poor fetal growth, affecting management of mother, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.51''', NULL,
+ '(656.51) Poor fetal growth, affecting management of mother, delivered, with or without mention of antepartum condition', '(656.51) Poor fetal growth, affecting management of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Poor fetal growth affecting management of mother (656.5)\(656.53) Poor fetal growth, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Poor fetal growth affecting management of mother (656.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Poor fetal growth affecting management of mother (656.5)\(656.53) Poor fetal growth, affecting management of mother, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.53''', NULL,
+ '(656.53) Poor fetal growth, affecting management of mother, antepartum condition or complication', '(656.53) Poor fetal growth, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Rhesus isoimmunization affecting management of mother (656.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Rhesus isoimmunization affecting management of mother (656.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.1''', NULL,
+ 'Rhesus isoimmunization affecting management of mother (656.1)', 'Rhesus isoimmunization affecting management of mother (656.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Rhesus isoimmunization affecting management of mother (656.1)\(656.10) Rhesus isoimmunization, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Rhesus isoimmunization affecting management of mother (656.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Rhesus isoimmunization affecting management of mother (656.1)\(656.10) Rhesus isoimmunization, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.10''', NULL,
+ '(656.10) Rhesus isoimmunization, unspecified as to episode of care or not applicable', '(656.10) Rhesus isoimmunization, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Rhesus isoimmunization affecting management of mother (656.1)\(656.11) Rhesus isoimmunization, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Rhesus isoimmunization affecting management of mother (656.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Rhesus isoimmunization affecting management of mother (656.1)\(656.11) Rhesus isoimmunization, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.11''', NULL,
+ '(656.11) Rhesus isoimmunization, delivered, with or without mention of antepartum condition', '(656.11) Rhesus isoimmunization, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Rhesus isoimmunization affecting management of mother (656.1)\(656.13) Rhesus isoimmunization, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Rhesus isoimmunization affecting management of mother (656.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Rhesus isoimmunization affecting management of mother (656.1)\(656.13) Rhesus isoimmunization, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.13''', NULL,
+ '(656.13) Rhesus isoimmunization, antepartum condition or complication', '(656.13) Rhesus isoimmunization, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Unspecified fetal and placental problem affecting management of mother (656.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Unspecified fetal and placental problem affecting management of mother (656.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.9''', NULL,
+ 'Unspecified fetal and placental problem affecting management of mother (656.9)', 'Unspecified fetal and placental problem affecting management of mother (656.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Unspecified fetal and placental problem affecting management of mother (656.9)\(656.90) Unspecified fetal and placental problem, affecting management of mother, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Unspecified fetal and placental problem affecting management of mother (656.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Unspecified fetal and placental problem affecting management of mother (656.9)\(656.90) Unspecified fetal and placental problem, affecting management of mother, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.90''', NULL,
+ '(656.90) Unspecified fetal and placental problem, affecting management of mother, unspecified as to episode of care or not applicable', '(656.90) Unspecified fetal and placental problem, affecting management of mother, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Unspecified fetal and placental problem affecting management of mother (656.9)\(656.91) Unspecified fetal and placental problem, affecting management of mother, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Unspecified fetal and placental problem affecting management of mother (656.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Unspecified fetal and placental problem affecting management of mother (656.9)\(656.91) Unspecified fetal and placental problem, affecting management of mother, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.91''', NULL,
+ '(656.91) Unspecified fetal and placental problem, affecting management of mother, delivered, with or without mention of antepartum condition', '(656.91) Unspecified fetal and placental problem, affecting management of mother, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Unspecified fetal and placental problem affecting management of mother (656.9)\(656.93) Unspecified fetal and placental problem, affecting management of mother, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Unspecified fetal and placental problem affecting management of mother (656.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other known or suspected fetal and placental problems affecting management of mother (656)\Unspecified fetal and placental problem affecting management of mother (656.9)\(656.93) Unspecified fetal and placental problem, affecting management of mother, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''656.93''', NULL,
+ '(656.93) Unspecified fetal and placental problem, affecting management of mother, antepartum condition or complication', '(656.93) Unspecified fetal and placental problem, affecting management of mother, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658''', NULL,
+ 'Other problems associated with amniotic cavity and membranes (658)', 'Other problems associated with amniotic cavity and membranes (658)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after artificial rupture of membranes (658.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after artificial rupture of membranes (658.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.3''', NULL,
+ 'Delayed delivery after artificial rupture of membranes (658.3)', 'Delayed delivery after artificial rupture of membranes (658.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after artificial rupture of membranes (658.3)\(658.30) Delayed delivery after artificial rupture of membranes, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after artificial rupture of membranes (658.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after artificial rupture of membranes (658.3)\(658.30) Delayed delivery after artificial rupture of membranes, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.30''', NULL,
+ '(658.30) Delayed delivery after artificial rupture of membranes, unspecified as to episode of care or not applicable', '(658.30) Delayed delivery after artificial rupture of membranes, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after artificial rupture of membranes (658.3)\(658.31) Delayed delivery after artificial rupture of membranes, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after artificial rupture of membranes (658.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after artificial rupture of membranes (658.3)\(658.31) Delayed delivery after artificial rupture of membranes, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.31''', NULL,
+ '(658.31) Delayed delivery after artificial rupture of membranes, delivered, with or without mention of antepartum condition', '(658.31) Delayed delivery after artificial rupture of membranes, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after artificial rupture of membranes (658.3)\(658.33) Delayed delivery after artificial rupture of membranes, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after artificial rupture of membranes (658.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after artificial rupture of membranes (658.3)\(658.33) Delayed delivery after artificial rupture of membranes, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.33''', NULL,
+ '(658.33) Delayed delivery after artificial rupture of membranes, antepartum condition or complication', '(658.33) Delayed delivery after artificial rupture of membranes, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.2''', NULL,
+ 'Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)', 'Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)\(658.20) Delayed delivery after spontaneous or unspecified rupture of membranes, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)\(658.20) Delayed delivery after spontaneous or unspecified rupture of membranes, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.20''', NULL,
+ '(658.20) Delayed delivery after spontaneous or unspecified rupture of membranes, unspecified as to episode of care or not applicable', '(658.20) Delayed delivery after spontaneous or unspecified rupture of membranes, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)\(658.21) Delayed delivery after spontaneous or unspecified rupture of membranes, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)\(658.21) Delayed delivery after spontaneous or unspecified rupture of membranes, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.21''', NULL,
+ '(658.21) Delayed delivery after spontaneous or unspecified rupture of membranes, delivered, with or without mention of antepartum condition', '(658.21) Delayed delivery after spontaneous or unspecified rupture of membranes, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)\(658.23) Delayed delivery after spontaneous or unspecified rupture of membranes, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Delayed delivery after spontaneous or unspecified rupture of membranes (658.2)\(658.23) Delayed delivery after spontaneous or unspecified rupture of membranes, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.23''', NULL,
+ '(658.23) Delayed delivery after spontaneous or unspecified rupture of membranes, antepartum condition or complication', '(658.23) Delayed delivery after spontaneous or unspecified rupture of membranes, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Infection of amniotic cavity (658.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Infection of amniotic cavity (658.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.4''', NULL,
+ 'Infection of amniotic cavity (658.4)', 'Infection of amniotic cavity (658.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Infection of amniotic cavity (658.4)\(658.40) Infection of amniotic cavity, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Infection of amniotic cavity (658.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Infection of amniotic cavity (658.4)\(658.40) Infection of amniotic cavity, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.40''', NULL,
+ '(658.40) Infection of amniotic cavity, unspecified as to episode of care or not applicable', '(658.40) Infection of amniotic cavity, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Infection of amniotic cavity (658.4)\(658.41) Infection of amniotic cavity, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Infection of amniotic cavity (658.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Infection of amniotic cavity (658.4)\(658.41) Infection of amniotic cavity, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.41''', NULL,
+ '(658.41) Infection of amniotic cavity, delivered, with or without mention of antepartum condition', '(658.41) Infection of amniotic cavity, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Infection of amniotic cavity (658.4)\(658.43) Infection of amniotic cavity, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Infection of amniotic cavity (658.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Infection of amniotic cavity (658.4)\(658.43) Infection of amniotic cavity, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.43''', NULL,
+ '(658.43) Infection of amniotic cavity, antepartum condition or complication', '(658.43) Infection of amniotic cavity, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Oligohydramnios (658.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Oligohydramnios (658.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.0''', NULL,
+ 'Oligohydramnios (658.0)', 'Oligohydramnios (658.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Oligohydramnios (658.0)\(658.00) Oligohydramnios, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Oligohydramnios (658.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Oligohydramnios (658.0)\(658.00) Oligohydramnios, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.00''', NULL,
+ '(658.00) Oligohydramnios, unspecified as to episode of care or not applicable', '(658.00) Oligohydramnios, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Oligohydramnios (658.0)\(658.01) Oligohydramnios, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Oligohydramnios (658.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Oligohydramnios (658.0)\(658.01) Oligohydramnios, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.01''', NULL,
+ '(658.01) Oligohydramnios, delivered, with or without mention of antepartum condition', '(658.01) Oligohydramnios, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Oligohydramnios (658.0)\(658.03) Oligohydramnios, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Oligohydramnios (658.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Oligohydramnios (658.0)\(658.03) Oligohydramnios, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.03''', NULL,
+ '(658.03) Oligohydramnios, antepartum condition or complication', '(658.03) Oligohydramnios, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Other problems associated with amniotic cavity and membranes (658.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Other problems associated with amniotic cavity and membranes (658.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.8''', NULL,
+ 'Other problems associated with amniotic cavity and membranes (658.8)', 'Other problems associated with amniotic cavity and membranes (658.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Other problems associated with amniotic cavity and membranes (658.8)\(658.80) Other problems associated with amniotic cavity and membranes, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Other problems associated with amniotic cavity and membranes (658.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Other problems associated with amniotic cavity and membranes (658.8)\(658.80) Other problems associated with amniotic cavity and membranes, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.80''', NULL,
+ '(658.80) Other problems associated with amniotic cavity and membranes, unspecified as to episode of care or not applicable', '(658.80) Other problems associated with amniotic cavity and membranes, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Other problems associated with amniotic cavity and membranes (658.8)\(658.81) Other problems associated with amniotic cavity and membranes, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Other problems associated with amniotic cavity and membranes (658.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Other problems associated with amniotic cavity and membranes (658.8)\(658.81) Other problems associated with amniotic cavity and membranes, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.81''', NULL,
+ '(658.81) Other problems associated with amniotic cavity and membranes, delivered, with or without mention of antepartum condition', '(658.81) Other problems associated with amniotic cavity and membranes, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Other problems associated with amniotic cavity and membranes (658.8)\(658.83) Other problems associated with amniotic cavity and membranes, antepartum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Other problems associated with amniotic cavity and membranes (658.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Other problems associated with amniotic cavity and membranes (658.8)\(658.83) Other problems associated with amniotic cavity and membranes, antepartum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.83''', NULL,
+ '(658.83) Other problems associated with amniotic cavity and membranes, antepartum', '(658.83) Other problems associated with amniotic cavity and membranes, antepartum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Premature rupture of membranes (658.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Premature rupture of membranes (658.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.1''', NULL,
+ 'Premature rupture of membranes (658.1)', 'Premature rupture of membranes (658.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Premature rupture of membranes (658.1)\(658.10) Premature rupture of membranes, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Premature rupture of membranes (658.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Premature rupture of membranes (658.1)\(658.10) Premature rupture of membranes, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.10''', NULL,
+ '(658.10) Premature rupture of membranes, unspecified as to episode of care or not applicable', '(658.10) Premature rupture of membranes, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Premature rupture of membranes (658.1)\(658.11) Premature rupture of membranes, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Premature rupture of membranes (658.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Premature rupture of membranes (658.1)\(658.11) Premature rupture of membranes, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.11''', NULL,
+ '(658.11) Premature rupture of membranes, delivered, with or without mention of antepartum condition', '(658.11) Premature rupture of membranes, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Premature rupture of membranes (658.1)\(658.13) Premature rupture of membranes, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Premature rupture of membranes (658.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Premature rupture of membranes (658.1)\(658.13) Premature rupture of membranes, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.13''', NULL,
+ '(658.13) Premature rupture of membranes, antepartum condition or complication', '(658.13) Premature rupture of membranes, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Unspecified problem associated with amniotic cavity and membranes (658.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Unspecified problem associated with amniotic cavity and membranes (658.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.9''', NULL,
+ 'Unspecified problem associated with amniotic cavity and membranes (658.9)', 'Unspecified problem associated with amniotic cavity and membranes (658.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Unspecified problem associated with amniotic cavity and membranes (658.9)\(658.90) Unspecified problem associated with amniotic cavity and membranes, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Unspecified problem associated with amniotic cavity and membranes (658.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Unspecified problem associated with amniotic cavity and membranes (658.9)\(658.90) Unspecified problem associated with amniotic cavity and membranes, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.90''', NULL,
+ '(658.90) Unspecified problem associated with amniotic cavity and membranes, unspecified as to episode of care or not applicable', '(658.90) Unspecified problem associated with amniotic cavity and membranes, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Unspecified problem associated with amniotic cavity and membranes (658.9)\(658.91) Unspecified problem associated with amniotic cavity and membranes, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Unspecified problem associated with amniotic cavity and membranes (658.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Unspecified problem associated with amniotic cavity and membranes (658.9)\(658.91) Unspecified problem associated with amniotic cavity and membranes, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.91''', NULL,
+ '(658.91) Unspecified problem associated with amniotic cavity and membranes, delivered, with or without mention of antepartum condition', '(658.91) Unspecified problem associated with amniotic cavity and membranes, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Unspecified problem associated with amniotic cavity and membranes (658.9)\(658.93) Unspecified problem associated with amniotic cavity and membranes, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Unspecified problem associated with amniotic cavity and membranes (658.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Other problems associated with amniotic cavity and membranes (658)\Unspecified problem associated with amniotic cavity and membranes (658.9)\(658.93) Unspecified problem associated with amniotic cavity and membranes, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''658.93''', NULL,
+ '(658.93) Unspecified problem associated with amniotic cavity and membranes, antepartum condition or complication', '(658.93) Unspecified problem associated with amniotic cavity and membranes, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Polyhydramnios (657)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Polyhydramnios (657)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''657''', NULL,
+ 'Polyhydramnios (657)', 'Polyhydramnios (657)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Polyhydramnios (657)\Polyhydramnios (657.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Polyhydramnios (657)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Polyhydramnios (657)\Polyhydramnios (657.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''657.0''', NULL,
+ 'Polyhydramnios (657.0)', 'Polyhydramnios (657.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Polyhydramnios (657)\Polyhydramnios (657.0)\(657.00) Polyhydramnios, unspecified as to episode of care or not applicable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Polyhydramnios (657)\Polyhydramnios (657.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Polyhydramnios (657)\Polyhydramnios (657.0)\(657.00) Polyhydramnios, unspecified as to episode of care or not applicable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''657.00''', NULL,
+ '(657.00) Polyhydramnios, unspecified as to episode of care or not applicable', '(657.00) Polyhydramnios, unspecified as to episode of care or not applicable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Polyhydramnios (657)\Polyhydramnios (657.0)\(657.01) Polyhydramnios, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Polyhydramnios (657)\Polyhydramnios (657.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Polyhydramnios (657)\Polyhydramnios (657.0)\(657.01) Polyhydramnios, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''657.01''', NULL,
+ '(657.01) Polyhydramnios, delivered, with or without mention of antepartum condition', '(657.01) Polyhydramnios, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Polyhydramnios (657)\Polyhydramnios (657.0)\(657.03) Polyhydramnios, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Polyhydramnios (657)\Polyhydramnios (657.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Normal delivery, and other indications for care in pregnancy, labor, and delivery (650-659.99)\Polyhydramnios (657)\Polyhydramnios (657.0)\(657.03) Polyhydramnios, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''657.03''', NULL,
+ '(657.03) Polyhydramnios, antepartum condition or complication', '(657.03) Polyhydramnios, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''678'' AND ''679.99''', NULL,
+ 'Other maternal and fetal complications (678-679.99)', 'Other maternal and fetal complications (678-679.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''678''', NULL,
+ 'Other fetal conditions (678)', 'Other fetal conditions (678)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\Fetal conjoined twins (678.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\Fetal conjoined twins (678.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''678.1''', NULL,
+ 'Fetal conjoined twins (678.1)', 'Fetal conjoined twins (678.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\Fetal conjoined twins (678.1)\(678.13) Fetal conjoined twins, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\Fetal conjoined twins (678.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\Fetal conjoined twins (678.1)\(678.13) Fetal conjoined twins, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''678.13''', NULL,
+ '(678.13) Fetal conjoined twins, antepartum condition or complication', '(678.13) Fetal conjoined twins, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\Fetal hematologic conditions (678.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\Fetal hematologic conditions (678.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''678.0''', NULL,
+ 'Fetal hematologic conditions (678.0)', 'Fetal hematologic conditions (678.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\Fetal hematologic conditions (678.0)\(678.01) Fetal hematologic conditions, delivered, with or without mention of antepartum condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\Fetal hematologic conditions (678.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\Fetal hematologic conditions (678.0)\(678.01) Fetal hematologic conditions, delivered, with or without mention of antepartum condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''678.01''', NULL,
+ '(678.01) Fetal hematologic conditions, delivered, with or without mention of antepartum condition', '(678.01) Fetal hematologic conditions, delivered, with or without mention of antepartum condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\Fetal hematologic conditions (678.0)\(678.03) Fetal hematologic conditions, antepartum condition or complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\Fetal hematologic conditions (678.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other maternal and fetal complications (678-679.99)\Other fetal conditions (678)\Fetal hematologic conditions (678.0)\(678.03) Fetal hematologic conditions, antepartum condition or complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''678.03''', NULL,
+ '(678.03) Fetal hematologic conditions, antepartum condition or complication', '(678.03) Fetal hematologic conditions, antepartum condition or complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''634'' AND ''639.99''', NULL,
+ 'Other pregnancy with abortive outcome (634-639.99)', 'Other pregnancy with abortive outcome (634-639.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''639''', NULL,
+ 'Complications following abortion or ectopic and molar pregnancies (639)', 'Complications following abortion or ectopic and molar pregnancies (639)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.0) Genital tract and pelvic infection following abortion or ectopic and molar pregnancies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.0) Genital tract and pelvic infection following abortion or ectopic and molar pregnancies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''639.0''', NULL,
+ '(639.0) Genital tract and pelvic infection following abortion or ectopic and molar pregnancies', '(639.0) Genital tract and pelvic infection following abortion or ectopic and molar pregnancies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.1) Delayed or excessive hemorrhage following abortion or ectopic and molar pregnancies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.1) Delayed or excessive hemorrhage following abortion or ectopic and molar pregnancies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''639.1''', NULL,
+ '(639.1) Delayed or excessive hemorrhage following abortion or ectopic and molar pregnancies', '(639.1) Delayed or excessive hemorrhage following abortion or ectopic and molar pregnancies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.2) Damage to pelvic organs and tissues following abortion or ectopic and molar pregnancies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.2) Damage to pelvic organs and tissues following abortion or ectopic and molar pregnancies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''639.2''', NULL,
+ '(639.2) Damage to pelvic organs and tissues following abortion or ectopic and molar pregnancies', '(639.2) Damage to pelvic organs and tissues following abortion or ectopic and molar pregnancies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.3) Kidney failure following abortion and ectopic and molar pregnancies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.3) Kidney failure following abortion and ectopic and molar pregnancies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''639.3''', NULL,
+ '(639.3) Kidney failure following abortion and ectopic and molar pregnancies', '(639.3) Kidney failure following abortion and ectopic and molar pregnancies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.4) Metabolic disorders following abortion or ectopic and molar pregnancies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.4) Metabolic disorders following abortion or ectopic and molar pregnancies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''639.4''', NULL,
+ '(639.4) Metabolic disorders following abortion or ectopic and molar pregnancies', '(639.4) Metabolic disorders following abortion or ectopic and molar pregnancies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.5) Shock following abortion or ectopic and molar pregnancies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.5) Shock following abortion or ectopic and molar pregnancies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''639.5''', NULL,
+ '(639.5) Shock following abortion or ectopic and molar pregnancies', '(639.5) Shock following abortion or ectopic and molar pregnancies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.6) Embolism following abortion or ectopic and molar pregnancies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.6) Embolism following abortion or ectopic and molar pregnancies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''639.6''', NULL,
+ '(639.6) Embolism following abortion or ectopic and molar pregnancies', '(639.6) Embolism following abortion or ectopic and molar pregnancies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.8) Other specified complications following abortion or ectopic and molar pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.8) Other specified complications following abortion or ectopic and molar pregnancy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''639.8''', NULL,
+ '(639.8) Other specified complications following abortion or ectopic and molar pregnancy', '(639.8) Other specified complications following abortion or ectopic and molar pregnancy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.9) Unspecified complication following abortion or ectopic and molar pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Complications following abortion or ectopic and molar pregnancies (639)\(639.9) Unspecified complication following abortion or ectopic and molar pregnancy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''639.9''', NULL,
+ '(639.9) Unspecified complication following abortion or ectopic and molar pregnancy', '(639.9) Unspecified complication following abortion or ectopic and molar pregnancy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''638''', NULL,
+ 'Failed attempted abortion (638)', 'Failed attempted abortion (638)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.0) Failed attempted abortion complicated by genital tract and pelvic infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.0) Failed attempted abortion complicated by genital tract and pelvic infection\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''638.0''', NULL,
+ '(638.0) Failed attempted abortion complicated by genital tract and pelvic infection', '(638.0) Failed attempted abortion complicated by genital tract and pelvic infection', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.1) Failed attempted abortion complicated by delayed or excessive hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.1) Failed attempted abortion complicated by delayed or excessive hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''638.1''', NULL,
+ '(638.1) Failed attempted abortion complicated by delayed or excessive hemorrhage', '(638.1) Failed attempted abortion complicated by delayed or excessive hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.2) Failed attempted abortion complicated by damage to pelvic organs or tissues\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.2) Failed attempted abortion complicated by damage to pelvic organs or tissues\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''638.2''', NULL,
+ '(638.2) Failed attempted abortion complicated by damage to pelvic organs or tissues', '(638.2) Failed attempted abortion complicated by damage to pelvic organs or tissues', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.3) Failed attempted abortion complicated by renal failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.3) Failed attempted abortion complicated by renal failure\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''638.3''', NULL,
+ '(638.3) Failed attempted abortion complicated by renal failure', '(638.3) Failed attempted abortion complicated by renal failure', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.4) Failed attempted abortion complicated by metabolic disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.4) Failed attempted abortion complicated by metabolic disorder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''638.4''', NULL,
+ '(638.4) Failed attempted abortion complicated by metabolic disorder', '(638.4) Failed attempted abortion complicated by metabolic disorder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.5) Failed attempted abortion complicated by shock\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.5) Failed attempted abortion complicated by shock\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''638.5''', NULL,
+ '(638.5) Failed attempted abortion complicated by shock', '(638.5) Failed attempted abortion complicated by shock', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.6) Failed attempted abortion complicated by embolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.6) Failed attempted abortion complicated by embolism\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''638.6''', NULL,
+ '(638.6) Failed attempted abortion complicated by embolism', '(638.6) Failed attempted abortion complicated by embolism', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.7) Failed attempted abortion with other specified complications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.7) Failed attempted abortion with other specified complications\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''638.7''', NULL,
+ '(638.7) Failed attempted abortion with other specified complications', '(638.7) Failed attempted abortion with other specified complications', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.8) Failed attempted abortion with unspecified complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.8) Failed attempted abortion with unspecified complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''638.8''', NULL,
+ '(638.8) Failed attempted abortion with unspecified complication', '(638.8) Failed attempted abortion with unspecified complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.9) Failed attempted abortion without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Failed attempted abortion (638)\(638.9) Failed attempted abortion without mention of complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''638.9''', NULL,
+ '(638.9) Failed attempted abortion without mention of complication', '(638.9) Failed attempted abortion without mention of complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636''', NULL,
+ 'Illegally induced abortion (636)', 'Illegally induced abortion (636)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.2''', NULL,
+ 'Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)', 'Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)\(636.20) Illegally induced abortion, complicated by damage to pelvic organs or tissues, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)\(636.20) Illegally induced abortion, complicated by damage to pelvic organs or tissues, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.20''', NULL,
+ '(636.20) Illegally induced abortion, complicated by damage to pelvic organs or tissues, unspecified', '(636.20) Illegally induced abortion, complicated by damage to pelvic organs or tissues, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)\(636.21) Illegally induced abortion, complicated by damage to pelvic organs or tissues, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)\(636.21) Illegally induced abortion, complicated by damage to pelvic organs or tissues, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.21''', NULL,
+ '(636.21) Illegally induced abortion, complicated by damage to pelvic organs or tissues, incomplete', '(636.21) Illegally induced abortion, complicated by damage to pelvic organs or tissues, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)\(636.22) Illegally induced abortion, complicated by damage to pelvic organs or tissues, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by damage to pelvic organs or tissue (636.2)\(636.22) Illegally induced abortion, complicated by damage to pelvic organs or tissues, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.22''', NULL,
+ '(636.22) Illegally induced abortion, complicated by damage to pelvic organs or tissues, complete', '(636.22) Illegally induced abortion, complicated by damage to pelvic organs or tissues, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.1''', NULL,
+ 'Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)', 'Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\(636.10) Illegally induced abortion, complicated by delayed or excessive hemorrhage, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\(636.10) Illegally induced abortion, complicated by delayed or excessive hemorrhage, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.10''', NULL,
+ '(636.10) Illegally induced abortion, complicated by delayed or excessive hemorrhage, unspecified', '(636.10) Illegally induced abortion, complicated by delayed or excessive hemorrhage, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\(636.11) Illegally induced abortion, complicated by delayed or excessive hemorrhage, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\(636.11) Illegally induced abortion, complicated by delayed or excessive hemorrhage, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.11''', NULL,
+ '(636.11) Illegally induced abortion, complicated by delayed or excessive hemorrhage, incomplete', '(636.11) Illegally induced abortion, complicated by delayed or excessive hemorrhage, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\(636.12) Illegally induced abortion, complicated by delayed or excessive hemorrhage, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by delayed or excessive hemorrhage (636.1)\(636.12) Illegally induced abortion, complicated by delayed or excessive hemorrhage, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.12''', NULL,
+ '(636.12) Illegally induced abortion, complicated by delayed or excessive hemorrhage, complete', '(636.12) Illegally induced abortion, complicated by delayed or excessive hemorrhage, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by embolism (636.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by embolism (636.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.6''', NULL,
+ 'Illegally induced abortion complicated by embolism (636.6)', 'Illegally induced abortion complicated by embolism (636.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by embolism (636.6)\(636.60) Illegally induced abortion, complicated by embolism, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by embolism (636.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by embolism (636.6)\(636.60) Illegally induced abortion, complicated by embolism, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.60''', NULL,
+ '(636.60) Illegally induced abortion, complicated by embolism, unspecified', '(636.60) Illegally induced abortion, complicated by embolism, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by embolism (636.6)\(636.61) Illegally induced abortion, complicated by embolism, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by embolism (636.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by embolism (636.6)\(636.61) Illegally induced abortion, complicated by embolism, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.61''', NULL,
+ '(636.61) Illegally induced abortion, complicated by embolism, incomplete', '(636.61) Illegally induced abortion, complicated by embolism, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by embolism (636.6)\(636.62) Illegally induced abortion, complicated by embolism, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by embolism (636.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by embolism (636.6)\(636.62) Illegally induced abortion, complicated by embolism, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.62''', NULL,
+ '(636.62) Illegally induced abortion, complicated by embolism, complete', '(636.62) Illegally induced abortion, complicated by embolism, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by genital tract and pelvic infection (636.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by genital tract and pelvic infection (636.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.0''', NULL,
+ 'Illegally induced abortion complicated by genital tract and pelvic infection (636.0)', 'Illegally induced abortion complicated by genital tract and pelvic infection (636.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by genital tract and pelvic infection (636.0)\(636.00) Illegally induced abortion, complicated by genital tract and pelvic infection, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by genital tract and pelvic infection (636.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by genital tract and pelvic infection (636.0)\(636.00) Illegally induced abortion, complicated by genital tract and pelvic infection, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.00''', NULL,
+ '(636.00) Illegally induced abortion, complicated by genital tract and pelvic infection, unspecified', '(636.00) Illegally induced abortion, complicated by genital tract and pelvic infection, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by genital tract and pelvic infection (636.0)\(636.01) Illegally induced abortion, complicated by genital tract and pelvic infection, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by genital tract and pelvic infection (636.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by genital tract and pelvic infection (636.0)\(636.01) Illegally induced abortion, complicated by genital tract and pelvic infection, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.01''', NULL,
+ '(636.01) Illegally induced abortion, complicated by genital tract and pelvic infection, incomplete', '(636.01) Illegally induced abortion, complicated by genital tract and pelvic infection, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by genital tract and pelvic infection (636.0)\(636.02) Illegally induced abortion, complicated by genital tract and pelvic infection, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by genital tract and pelvic infection (636.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by genital tract and pelvic infection (636.0)\(636.02) Illegally induced abortion, complicated by genital tract and pelvic infection, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.02''', NULL,
+ '(636.02) Illegally induced abortion, complicated by genital tract and pelvic infection, complete', '(636.02) Illegally induced abortion, complicated by genital tract and pelvic infection, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by metabolic disorder (636.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by metabolic disorder (636.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.4''', NULL,
+ 'Illegally induced abortion complicated by metabolic disorder (636.4)', 'Illegally induced abortion complicated by metabolic disorder (636.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by metabolic disorder (636.4)\(636.40) Illegally induced abortion, complicated by metabolic disorder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by metabolic disorder (636.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by metabolic disorder (636.4)\(636.40) Illegally induced abortion, complicated by metabolic disorder, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.40''', NULL,
+ '(636.40) Illegally induced abortion, complicated by metabolic disorder, unspecified', '(636.40) Illegally induced abortion, complicated by metabolic disorder, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by metabolic disorder (636.4)\(636.41) Illegally induced abortion, complicated by metabolic disorder, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by metabolic disorder (636.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by metabolic disorder (636.4)\(636.41) Illegally induced abortion, complicated by metabolic disorder, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.41''', NULL,
+ '(636.41) Illegally induced abortion, complicated by metabolic disorder, incomplete', '(636.41) Illegally induced abortion, complicated by metabolic disorder, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by metabolic disorder (636.4)\(636.42) Illegally induced abortion, complicated by metabolic disorder, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by metabolic disorder (636.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by metabolic disorder (636.4)\(636.42) Illegally induced abortion, complicated by metabolic disorder, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.42''', NULL,
+ '(636.42) Illegally induced abortion, complicated by metabolic disorder, complete', '(636.42) Illegally induced abortion, complicated by metabolic disorder, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by renal failure (636.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by renal failure (636.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.3''', NULL,
+ 'Illegally induced abortion complicated by renal failure (636.3)', 'Illegally induced abortion complicated by renal failure (636.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by renal failure (636.3)\(636.30) Illegally induced abortion, complicated by renal failure, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by renal failure (636.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by renal failure (636.3)\(636.30) Illegally induced abortion, complicated by renal failure, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.30''', NULL,
+ '(636.30) Illegally induced abortion, complicated by renal failure, unspecified', '(636.30) Illegally induced abortion, complicated by renal failure, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by renal failure (636.3)\(636.31) Illegally induced abortion, complicated by renal failure, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by renal failure (636.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by renal failure (636.3)\(636.31) Illegally induced abortion, complicated by renal failure, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.31''', NULL,
+ '(636.31) Illegally induced abortion, complicated by renal failure, incomplete', '(636.31) Illegally induced abortion, complicated by renal failure, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by renal failure (636.3)\(636.32) Illegally induced abortion, complicated by renal failure, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by renal failure (636.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by renal failure (636.3)\(636.32) Illegally induced abortion, complicated by renal failure, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.32''', NULL,
+ '(636.32) Illegally induced abortion, complicated by renal failure, complete', '(636.32) Illegally induced abortion, complicated by renal failure, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by shock (636.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by shock (636.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.5''', NULL,
+ 'Illegally induced abortion complicated by shock (636.5)', 'Illegally induced abortion complicated by shock (636.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by shock (636.5)\(636.50) Illegally induced abortion, complicated by shock, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by shock (636.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by shock (636.5)\(636.50) Illegally induced abortion, complicated by shock, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.50''', NULL,
+ '(636.50) Illegally induced abortion, complicated by shock, unspecified', '(636.50) Illegally induced abortion, complicated by shock, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by shock (636.5)\(636.51) Illegally induced abortion, complicated by shock, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by shock (636.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by shock (636.5)\(636.51) Illegally induced abortion, complicated by shock, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.51''', NULL,
+ '(636.51) Illegally induced abortion, complicated by shock, incomplete', '(636.51) Illegally induced abortion, complicated by shock, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by shock (636.5)\(636.52) Illegally induced abortion, complicated by shock, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by shock (636.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion complicated by shock (636.5)\(636.52) Illegally induced abortion, complicated by shock, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.52''', NULL,
+ '(636.52) Illegally induced abortion, complicated by shock, complete', '(636.52) Illegally induced abortion, complicated by shock, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with other specified complications (636.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with other specified complications (636.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.7''', NULL,
+ 'Illegally induced abortion with other specified complications (636.7)', 'Illegally induced abortion with other specified complications (636.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with other specified complications (636.7)\(636.70) Illegally induced abortion, with other specified complications, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with other specified complications (636.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with other specified complications (636.7)\(636.70) Illegally induced abortion, with other specified complications, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.70''', NULL,
+ '(636.70) Illegally induced abortion, with other specified complications, unspecified', '(636.70) Illegally induced abortion, with other specified complications, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with other specified complications (636.7)\(636.71) Illegally induced abortion, with other specified complications, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with other specified complications (636.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with other specified complications (636.7)\(636.71) Illegally induced abortion, with other specified complications, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.71''', NULL,
+ '(636.71) Illegally induced abortion, with other specified complications, incomplete', '(636.71) Illegally induced abortion, with other specified complications, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with other specified complications (636.7)\(636.72) Illegally induced abortion, with other specified complications, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with other specified complications (636.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with other specified complications (636.7)\(636.72) Illegally induced abortion, with other specified complications, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.72''', NULL,
+ '(636.72) Illegally induced abortion, with other specified complications, complete', '(636.72) Illegally induced abortion, with other specified complications, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with unspecified complication (636.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with unspecified complication (636.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.8''', NULL,
+ 'Illegally induced abortion with unspecified complication (636.8)', 'Illegally induced abortion with unspecified complication (636.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with unspecified complication (636.8)\(636.80) Illegally induced abortion, with unspecified complication, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with unspecified complication (636.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with unspecified complication (636.8)\(636.80) Illegally induced abortion, with unspecified complication, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.80''', NULL,
+ '(636.80) Illegally induced abortion, with unspecified complication, unspecified', '(636.80) Illegally induced abortion, with unspecified complication, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with unspecified complication (636.8)\(636.81) Illegally induced abortion, with unspecified complication, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with unspecified complication (636.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with unspecified complication (636.8)\(636.81) Illegally induced abortion, with unspecified complication, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.81''', NULL,
+ '(636.81) Illegally induced abortion, with unspecified complication, incomplete', '(636.81) Illegally induced abortion, with unspecified complication, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with unspecified complication (636.8)\(636.82) Illegally induced abortion, with unspecified complication, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with unspecified complication (636.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion with unspecified complication (636.8)\(636.82) Illegally induced abortion, with unspecified complication, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.82''', NULL,
+ '(636.82) Illegally induced abortion, with unspecified complication, complete', '(636.82) Illegally induced abortion, with unspecified complication, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion without mention of complication (636.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion without mention of complication (636.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.9''', NULL,
+ 'Illegally induced abortion without mention of complication (636.9)', 'Illegally induced abortion without mention of complication (636.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion without mention of complication (636.9)\(636.90) Illegally induced abortion, without mention of complication, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion without mention of complication (636.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion without mention of complication (636.9)\(636.90) Illegally induced abortion, without mention of complication, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.90''', NULL,
+ '(636.90) Illegally induced abortion, without mention of complication, unspecified', '(636.90) Illegally induced abortion, without mention of complication, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion without mention of complication (636.9)\(636.91) Illegally induced abortion, without mention of complication, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion without mention of complication (636.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion without mention of complication (636.9)\(636.91) Illegally induced abortion, without mention of complication, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.91''', NULL,
+ '(636.91) Illegally induced abortion, without mention of complication, incomplete', '(636.91) Illegally induced abortion, without mention of complication, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion without mention of complication (636.9)\(636.92) Illegally induced abortion, without mention of complication, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion without mention of complication (636.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Illegally induced abortion (636)\Illegally induced abortion without mention of complication (636.9)\(636.92) Illegally induced abortion, without mention of complication, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''636.92''', NULL,
+ '(636.92) Illegally induced abortion, without mention of complication, complete', '(636.92) Illegally induced abortion, without mention of complication, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635''', NULL,
+ 'Legally induced abortion (635)', 'Legally induced abortion (635)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.2''', NULL,
+ 'Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)', 'Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)\(635.20) Legally induced abortion, complicated by damage to pelvic organs or tissues, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)\(635.20) Legally induced abortion, complicated by damage to pelvic organs or tissues, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.20''', NULL,
+ '(635.20) Legally induced abortion, complicated by damage to pelvic organs or tissues, unspecified', '(635.20) Legally induced abortion, complicated by damage to pelvic organs or tissues, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)\(635.21) Legally induced abortion, complicated by damage to pelvic organs or tissues, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)\(635.21) Legally induced abortion, complicated by damage to pelvic organs or tissues, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.21''', NULL,
+ '(635.21) Legally induced abortion, complicated by damage to pelvic organs or tissues, incomplete', '(635.21) Legally induced abortion, complicated by damage to pelvic organs or tissues, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)\(635.22) Legally induced abortion, complicated by damage to pelvic organs or tissues, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by damage to pelvic organs or tissues (635.2)\(635.22) Legally induced abortion, complicated by damage to pelvic organs or tissues, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.22''', NULL,
+ '(635.22) Legally induced abortion, complicated by damage to pelvic organs or tissues, complete', '(635.22) Legally induced abortion, complicated by damage to pelvic organs or tissues, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.1''', NULL,
+ 'Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)', 'Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\(635.10) Legally induced abortion, complicated by delayed or excessive hemorrhage, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\(635.10) Legally induced abortion, complicated by delayed or excessive hemorrhage, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.10''', NULL,
+ '(635.10) Legally induced abortion, complicated by delayed or excessive hemorrhage, unspecified', '(635.10) Legally induced abortion, complicated by delayed or excessive hemorrhage, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\(635.11) Legally induced abortion, complicated by delayed or excessive hemorrhage, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\(635.11) Legally induced abortion, complicated by delayed or excessive hemorrhage, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.11''', NULL,
+ '(635.11) Legally induced abortion, complicated by delayed or excessive hemorrhage, incomplete', '(635.11) Legally induced abortion, complicated by delayed or excessive hemorrhage, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\(635.12) Legally induced abortion, complicated by delayed or excessive hemorrhage, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by delayed or excessive hemorrhage (635.1)\(635.12) Legally induced abortion, complicated by delayed or excessive hemorrhage, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.12''', NULL,
+ '(635.12) Legally induced abortion, complicated by delayed or excessive hemorrhage, complete', '(635.12) Legally induced abortion, complicated by delayed or excessive hemorrhage, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by embolism (635.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by embolism (635.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.6''', NULL,
+ 'Legally induced abortion complicated by embolism (635.6)', 'Legally induced abortion complicated by embolism (635.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by embolism (635.6)\(635.60) Legally induced abortion, complicated by embolism, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by embolism (635.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by embolism (635.6)\(635.60) Legally induced abortion, complicated by embolism, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.60''', NULL,
+ '(635.60) Legally induced abortion, complicated by embolism, unspecified', '(635.60) Legally induced abortion, complicated by embolism, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by embolism (635.6)\(635.61) Legally induced abortion, complicated by embolism, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by embolism (635.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by embolism (635.6)\(635.61) Legally induced abortion, complicated by embolism, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.61''', NULL,
+ '(635.61) Legally induced abortion, complicated by embolism, incomplete', '(635.61) Legally induced abortion, complicated by embolism, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by embolism (635.6)\(635.62) Legally induced abortion, complicated by embolism, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by embolism (635.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by embolism (635.6)\(635.62) Legally induced abortion, complicated by embolism, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.62''', NULL,
+ '(635.62) Legally induced abortion, complicated by embolism, complete', '(635.62) Legally induced abortion, complicated by embolism, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by genital tract and pelvic infection (635.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by genital tract and pelvic infection (635.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.0''', NULL,
+ 'Legally induced abortion complicated by genital tract and pelvic infection (635.0)', 'Legally induced abortion complicated by genital tract and pelvic infection (635.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by genital tract and pelvic infection (635.0)\(635.00) Legally induced abortion, complicated by genital tract and pelvic infection, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by genital tract and pelvic infection (635.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by genital tract and pelvic infection (635.0)\(635.00) Legally induced abortion, complicated by genital tract and pelvic infection, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.00''', NULL,
+ '(635.00) Legally induced abortion, complicated by genital tract and pelvic infection, unspecified', '(635.00) Legally induced abortion, complicated by genital tract and pelvic infection, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by genital tract and pelvic infection (635.0)\(635.01) Legally induced abortion, complicated by genital tract and pelvic infection, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by genital tract and pelvic infection (635.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by genital tract and pelvic infection (635.0)\(635.01) Legally induced abortion, complicated by genital tract and pelvic infection, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.01''', NULL,
+ '(635.01) Legally induced abortion, complicated by genital tract and pelvic infection, incomplete', '(635.01) Legally induced abortion, complicated by genital tract and pelvic infection, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by genital tract and pelvic infection (635.0)\(635.02) Legally induced abortion, complicated by genital tract and pelvic infection, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by genital tract and pelvic infection (635.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by genital tract and pelvic infection (635.0)\(635.02) Legally induced abortion, complicated by genital tract and pelvic infection, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.02''', NULL,
+ '(635.02) Legally induced abortion, complicated by genital tract and pelvic infection, complete', '(635.02) Legally induced abortion, complicated by genital tract and pelvic infection, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by metabolic disorder (635.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by metabolic disorder (635.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.4''', NULL,
+ 'Legally induced abortion complicated by metabolic disorder (635.4)', 'Legally induced abortion complicated by metabolic disorder (635.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by metabolic disorder (635.4)\(635.40) Legally induced abortion, complicated by metabolic disorder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by metabolic disorder (635.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by metabolic disorder (635.4)\(635.40) Legally induced abortion, complicated by metabolic disorder, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.40''', NULL,
+ '(635.40) Legally induced abortion, complicated by metabolic disorder, unspecified', '(635.40) Legally induced abortion, complicated by metabolic disorder, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by metabolic disorder (635.4)\(635.41) Legally induced abortion, complicated by metabolic disorder, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by metabolic disorder (635.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by metabolic disorder (635.4)\(635.41) Legally induced abortion, complicated by metabolic disorder, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.41''', NULL,
+ '(635.41) Legally induced abortion, complicated by metabolic disorder, incomplete', '(635.41) Legally induced abortion, complicated by metabolic disorder, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by metabolic disorder (635.4)\(635.42) Legally induced abortion, complicated by metabolic disorder, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by metabolic disorder (635.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by metabolic disorder (635.4)\(635.42) Legally induced abortion, complicated by metabolic disorder, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.42''', NULL,
+ '(635.42) Legally induced abortion, complicated by metabolic disorder, complete', '(635.42) Legally induced abortion, complicated by metabolic disorder, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by renal failure (635.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by renal failure (635.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.3''', NULL,
+ 'Legally induced abortion complicated by renal failure (635.3)', 'Legally induced abortion complicated by renal failure (635.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by renal failure (635.3)\(635.30) Legally induced abortion, complicated by renal failure,unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by renal failure (635.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by renal failure (635.3)\(635.30) Legally induced abortion, complicated by renal failure,unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.30''', NULL,
+ '(635.30) Legally induced abortion, complicated by renal failure,unspecified', '(635.30) Legally induced abortion, complicated by renal failure,unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by renal failure (635.3)\(635.31) Legally induced abortion, complicated by renal failure, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by renal failure (635.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by renal failure (635.3)\(635.31) Legally induced abortion, complicated by renal failure, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.31''', NULL,
+ '(635.31) Legally induced abortion, complicated by renal failure, incomplete', '(635.31) Legally induced abortion, complicated by renal failure, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by renal failure (635.3)\(635.32) Legally induced abortion, complicated by renal failure, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by renal failure (635.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by renal failure (635.3)\(635.32) Legally induced abortion, complicated by renal failure, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.32''', NULL,
+ '(635.32) Legally induced abortion, complicated by renal failure, complete', '(635.32) Legally induced abortion, complicated by renal failure, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by shock (635.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by shock (635.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.5''', NULL,
+ 'Legally induced abortion complicated by shock (635.5)', 'Legally induced abortion complicated by shock (635.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by shock (635.5)\(635.50) Legally induced abortion, complicated by shock, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by shock (635.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by shock (635.5)\(635.50) Legally induced abortion, complicated by shock, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.50''', NULL,
+ '(635.50) Legally induced abortion, complicated by shock, unspecified', '(635.50) Legally induced abortion, complicated by shock, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by shock (635.5)\(635.51) Legally induced abortion, complicated by shock, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by shock (635.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by shock (635.5)\(635.51) Legally induced abortion, complicated by shock, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.51''', NULL,
+ '(635.51) Legally induced abortion, complicated by shock, incomplete', '(635.51) Legally induced abortion, complicated by shock, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by shock (635.5)\(635.52) Legally induced abortion, complicated by shock, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by shock (635.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion complicated by shock (635.5)\(635.52) Legally induced abortion, complicated by shock, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.52''', NULL,
+ '(635.52) Legally induced abortion, complicated by shock, complete', '(635.52) Legally induced abortion, complicated by shock, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with other specified complications (635.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with other specified complications (635.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.7''', NULL,
+ 'Legally induced abortion with other specified complications (635.7)', 'Legally induced abortion with other specified complications (635.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with other specified complications (635.7)\(635.70) Legally induced abortion, with other specified complications, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with other specified complications (635.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with other specified complications (635.7)\(635.70) Legally induced abortion, with other specified complications, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.70''', NULL,
+ '(635.70) Legally induced abortion, with other specified complications, unspecified', '(635.70) Legally induced abortion, with other specified complications, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with other specified complications (635.7)\(635.71) Legally induced abortion, with other specified complications, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with other specified complications (635.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with other specified complications (635.7)\(635.71) Legally induced abortion, with other specified complications, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.71''', NULL,
+ '(635.71) Legally induced abortion, with other specified complications, incomplete', '(635.71) Legally induced abortion, with other specified complications, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with other specified complications (635.7)\(635.72) Legally induced abortion, with other specified complications, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with other specified complications (635.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with other specified complications (635.7)\(635.72) Legally induced abortion, with other specified complications, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.72''', NULL,
+ '(635.72) Legally induced abortion, with other specified complications, complete', '(635.72) Legally induced abortion, with other specified complications, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with unspecified complication (635.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with unspecified complication (635.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.8''', NULL,
+ 'Legally induced abortion with unspecified complication (635.8)', 'Legally induced abortion with unspecified complication (635.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with unspecified complication (635.8)\(635.80) Legally induced abortion, with unspecified complication, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with unspecified complication (635.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with unspecified complication (635.8)\(635.80) Legally induced abortion, with unspecified complication, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.80''', NULL,
+ '(635.80) Legally induced abortion, with unspecified complication, unspecified', '(635.80) Legally induced abortion, with unspecified complication, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with unspecified complication (635.8)\(635.81) Legally induced abortion, with unspecified complication, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with unspecified complication (635.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with unspecified complication (635.8)\(635.81) Legally induced abortion, with unspecified complication, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.81''', NULL,
+ '(635.81) Legally induced abortion, with unspecified complication, incomplete', '(635.81) Legally induced abortion, with unspecified complication, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with unspecified complication (635.8)\(635.82) Legally induced abortion, with unspecified complication, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with unspecified complication (635.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion with unspecified complication (635.8)\(635.82) Legally induced abortion, with unspecified complication, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.82''', NULL,
+ '(635.82) Legally induced abortion, with unspecified complication, complete', '(635.82) Legally induced abortion, with unspecified complication, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion without mention of complication (635.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion without mention of complication (635.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.9''', NULL,
+ 'Legally induced abortion without mention of complication (635.9)', 'Legally induced abortion without mention of complication (635.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion without mention of complication (635.9)\(635.90) Legally induced abortion, without mention of complication, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion without mention of complication (635.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion without mention of complication (635.9)\(635.90) Legally induced abortion, without mention of complication, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.90''', NULL,
+ '(635.90) Legally induced abortion, without mention of complication, unspecified', '(635.90) Legally induced abortion, without mention of complication, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion without mention of complication (635.9)\(635.91) Legally induced abortion, without mention of complication, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion without mention of complication (635.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion without mention of complication (635.9)\(635.91) Legally induced abortion, without mention of complication, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.91''', NULL,
+ '(635.91) Legally induced abortion, without mention of complication, incomplete', '(635.91) Legally induced abortion, without mention of complication, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion without mention of complication (635.9)\(635.92) Legally induced abortion, without mention of complication, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion without mention of complication (635.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Legally induced abortion (635)\Legally induced abortion without mention of complication (635.9)\(635.92) Legally induced abortion, without mention of complication, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''635.92''', NULL,
+ '(635.92) Legally induced abortion, without mention of complication, complete', '(635.92) Legally induced abortion, without mention of complication, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634''', NULL,
+ 'Spontaneous abortion (634)', 'Spontaneous abortion (634)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.2''', NULL,
+ 'Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)', 'Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)\(634.20) Spontaneous abortion, complicated by damage to pelvic organs or tissues, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)\(634.20) Spontaneous abortion, complicated by damage to pelvic organs or tissues, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.20''', NULL,
+ '(634.20) Spontaneous abortion, complicated by damage to pelvic organs or tissues, unspecified', '(634.20) Spontaneous abortion, complicated by damage to pelvic organs or tissues, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)\(634.21) Spontaneous abortion, complicated by damage to pelvic organs or tissues, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)\(634.21) Spontaneous abortion, complicated by damage to pelvic organs or tissues, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.21''', NULL,
+ '(634.21) Spontaneous abortion, complicated by damage to pelvic organs or tissues, incomplete', '(634.21) Spontaneous abortion, complicated by damage to pelvic organs or tissues, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)\(634.22) Spontaneous abortion, complicated by damage to pelvic organs or tissues, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by damage to pelvic organs or tissues (634.2)\(634.22) Spontaneous abortion, complicated by damage to pelvic organs or tissues, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.22''', NULL,
+ '(634.22) Spontaneous abortion, complicated by damage to pelvic organs or tissues, complete', '(634.22) Spontaneous abortion, complicated by damage to pelvic organs or tissues, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.1''', NULL,
+ 'Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)', 'Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)\(634.10) Spontaneous abortion, complicated by delayed or excessive hemorrhage, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)\(634.10) Spontaneous abortion, complicated by delayed or excessive hemorrhage, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.10''', NULL,
+ '(634.10) Spontaneous abortion, complicated by delayed or excessive hemorrhage, unspecified', '(634.10) Spontaneous abortion, complicated by delayed or excessive hemorrhage, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)\(634.11) Spontaneous abortion, complicated by delayed or excessive hemorrhage, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)\(634.11) Spontaneous abortion, complicated by delayed or excessive hemorrhage, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.11''', NULL,
+ '(634.11) Spontaneous abortion, complicated by delayed or excessive hemorrhage, incomplete', '(634.11) Spontaneous abortion, complicated by delayed or excessive hemorrhage, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)\(634.12) Spontaneous abortion, complicated by delayed or excessive hemorrhage, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by delayed or excessive hemorrhage (634.1)\(634.12) Spontaneous abortion, complicated by delayed or excessive hemorrhage, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.12''', NULL,
+ '(634.12) Spontaneous abortion, complicated by delayed or excessive hemorrhage, complete', '(634.12) Spontaneous abortion, complicated by delayed or excessive hemorrhage, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by embolism (634.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by embolism (634.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.6''', NULL,
+ 'Spontaneous abortion complicated by embolism (634.6)', 'Spontaneous abortion complicated by embolism (634.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by embolism (634.6)\(634.60) Spontaneous abortion, complicated by embolism, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by embolism (634.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by embolism (634.6)\(634.60) Spontaneous abortion, complicated by embolism, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.60''', NULL,
+ '(634.60) Spontaneous abortion, complicated by embolism, unspecified', '(634.60) Spontaneous abortion, complicated by embolism, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by embolism (634.6)\(634.61) Spontaneous abortion, complicated by embolism, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by embolism (634.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by embolism (634.6)\(634.61) Spontaneous abortion, complicated by embolism, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.61''', NULL,
+ '(634.61) Spontaneous abortion, complicated by embolism, incomplete', '(634.61) Spontaneous abortion, complicated by embolism, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by embolism (634.6)\(634.62) Spontaneous abortion, complicated by embolism, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by embolism (634.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by embolism (634.6)\(634.62) Spontaneous abortion, complicated by embolism, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.62''', NULL,
+ '(634.62) Spontaneous abortion, complicated by embolism, complete', '(634.62) Spontaneous abortion, complicated by embolism, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by genital tract and pelvic infection (634.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by genital tract and pelvic infection (634.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.0''', NULL,
+ 'Spontaneous abortion complicated by genital tract and pelvic infection (634.0)', 'Spontaneous abortion complicated by genital tract and pelvic infection (634.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by genital tract and pelvic infection (634.0)\(634.00) Spontaneous abortion, complicated by genital tract and pelvic infection, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by genital tract and pelvic infection (634.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by genital tract and pelvic infection (634.0)\(634.00) Spontaneous abortion, complicated by genital tract and pelvic infection, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.00''', NULL,
+ '(634.00) Spontaneous abortion, complicated by genital tract and pelvic infection, unspecified', '(634.00) Spontaneous abortion, complicated by genital tract and pelvic infection, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by genital tract and pelvic infection (634.0)\(634.01) Spontaneous abortion, complicated by genital tract and pelvic infection, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by genital tract and pelvic infection (634.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by genital tract and pelvic infection (634.0)\(634.01) Spontaneous abortion, complicated by genital tract and pelvic infection, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.01''', NULL,
+ '(634.01) Spontaneous abortion, complicated by genital tract and pelvic infection, incomplete', '(634.01) Spontaneous abortion, complicated by genital tract and pelvic infection, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by genital tract and pelvic infection (634.0)\(634.02) Spontaneous abortion, complicated by genital tract and pelvic infection, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by genital tract and pelvic infection (634.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by genital tract and pelvic infection (634.0)\(634.02) Spontaneous abortion, complicated by genital tract and pelvic infection, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.02''', NULL,
+ '(634.02) Spontaneous abortion, complicated by genital tract and pelvic infection, complete', '(634.02) Spontaneous abortion, complicated by genital tract and pelvic infection, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by metabolic disorder (634.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by metabolic disorder (634.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.4''', NULL,
+ 'Spontaneous abortion complicated by metabolic disorder (634.4)', 'Spontaneous abortion complicated by metabolic disorder (634.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by metabolic disorder (634.4)\(634.40) Spontaneous abortion, complicated by metabolic disorder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by metabolic disorder (634.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by metabolic disorder (634.4)\(634.40) Spontaneous abortion, complicated by metabolic disorder, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.40''', NULL,
+ '(634.40) Spontaneous abortion, complicated by metabolic disorder, unspecified', '(634.40) Spontaneous abortion, complicated by metabolic disorder, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by metabolic disorder (634.4)\(634.41) Spontaneous abortion, complicated by metabolic disorder, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by metabolic disorder (634.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by metabolic disorder (634.4)\(634.41) Spontaneous abortion, complicated by metabolic disorder, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.41''', NULL,
+ '(634.41) Spontaneous abortion, complicated by metabolic disorder, incomplete', '(634.41) Spontaneous abortion, complicated by metabolic disorder, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by metabolic disorder (634.4)\(634.42) Spontaneous abortion, complicated by metabolic disorder, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by metabolic disorder (634.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by metabolic disorder (634.4)\(634.42) Spontaneous abortion, complicated by metabolic disorder, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.42''', NULL,
+ '(634.42) Spontaneous abortion, complicated by metabolic disorder, complete', '(634.42) Spontaneous abortion, complicated by metabolic disorder, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by renal failure (634.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by renal failure (634.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.3''', NULL,
+ 'Spontaneous abortion complicated by renal failure (634.3)', 'Spontaneous abortion complicated by renal failure (634.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by renal failure (634.3)\(634.30) Spontaneous abortion, complicated by renal failure, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by renal failure (634.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by renal failure (634.3)\(634.30) Spontaneous abortion, complicated by renal failure, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.30''', NULL,
+ '(634.30) Spontaneous abortion, complicated by renal failure, unspecified', '(634.30) Spontaneous abortion, complicated by renal failure, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by renal failure (634.3)\(634.31) Spontaneous abortion, complicated by renal failure, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by renal failure (634.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by renal failure (634.3)\(634.31) Spontaneous abortion, complicated by renal failure, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.31''', NULL,
+ '(634.31) Spontaneous abortion, complicated by renal failure, incomplete', '(634.31) Spontaneous abortion, complicated by renal failure, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by renal failure (634.3)\(634.32) Spontaneous abortion, complicated by renal failure, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by renal failure (634.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by renal failure (634.3)\(634.32) Spontaneous abortion, complicated by renal failure, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.32''', NULL,
+ '(634.32) Spontaneous abortion, complicated by renal failure, complete', '(634.32) Spontaneous abortion, complicated by renal failure, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by shock (634.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by shock (634.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.5''', NULL,
+ 'Spontaneous abortion complicated by shock (634.5)', 'Spontaneous abortion complicated by shock (634.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by shock (634.5)\(634.50) Spontaneous abortion, complicated by shock, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by shock (634.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by shock (634.5)\(634.50) Spontaneous abortion, complicated by shock, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.50''', NULL,
+ '(634.50) Spontaneous abortion, complicated by shock, unspecified', '(634.50) Spontaneous abortion, complicated by shock, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by shock (634.5)\(634.51) Spontaneous abortion, complicated by shock, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by shock (634.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by shock (634.5)\(634.51) Spontaneous abortion, complicated by shock, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.51''', NULL,
+ '(634.51) Spontaneous abortion, complicated by shock, incomplete', '(634.51) Spontaneous abortion, complicated by shock, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by shock (634.5)\(634.52) Spontaneous abortion, complicated by shock, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by shock (634.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion complicated by shock (634.5)\(634.52) Spontaneous abortion, complicated by shock, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.52''', NULL,
+ '(634.52) Spontaneous abortion, complicated by shock, complete', '(634.52) Spontaneous abortion, complicated by shock, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with other specified complications (634.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with other specified complications (634.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.7''', NULL,
+ 'Spontaneous abortion with other specified complications (634.7)', 'Spontaneous abortion with other specified complications (634.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with other specified complications (634.7)\(634.70) Spontaneous abortion, with other specified complications, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with other specified complications (634.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with other specified complications (634.7)\(634.70) Spontaneous abortion, with other specified complications, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.70''', NULL,
+ '(634.70) Spontaneous abortion, with other specified complications, unspecified', '(634.70) Spontaneous abortion, with other specified complications, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with other specified complications (634.7)\(634.71) Spontaneous abortion, with other specified complications, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with other specified complications (634.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with other specified complications (634.7)\(634.71) Spontaneous abortion, with other specified complications, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.71''', NULL,
+ '(634.71) Spontaneous abortion, with other specified complications, incomplete', '(634.71) Spontaneous abortion, with other specified complications, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with other specified complications (634.7)\(634.72) Spontaneous abortion, with other specified complications, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with other specified complications (634.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with other specified complications (634.7)\(634.72) Spontaneous abortion, with other specified complications, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.72''', NULL,
+ '(634.72) Spontaneous abortion, with other specified complications, complete', '(634.72) Spontaneous abortion, with other specified complications, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with unspecified complication (634.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with unspecified complication (634.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.8''', NULL,
+ 'Spontaneous abortion with unspecified complication (634.8)', 'Spontaneous abortion with unspecified complication (634.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with unspecified complication (634.8)\(634.80) Spontaneous abortion, with unspecified complication, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with unspecified complication (634.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with unspecified complication (634.8)\(634.80) Spontaneous abortion, with unspecified complication, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.80''', NULL,
+ '(634.80) Spontaneous abortion, with unspecified complication, unspecified', '(634.80) Spontaneous abortion, with unspecified complication, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with unspecified complication (634.8)\(634.81) Spontaneous abortion, with unspecified complication, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with unspecified complication (634.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with unspecified complication (634.8)\(634.81) Spontaneous abortion, with unspecified complication, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.81''', NULL,
+ '(634.81) Spontaneous abortion, with unspecified complication, incomplete', '(634.81) Spontaneous abortion, with unspecified complication, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with unspecified complication (634.8)\(634.82) Spontaneous abortion, with unspecified complication, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with unspecified complication (634.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion with unspecified complication (634.8)\(634.82) Spontaneous abortion, with unspecified complication, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.82''', NULL,
+ '(634.82) Spontaneous abortion, with unspecified complication, complete', '(634.82) Spontaneous abortion, with unspecified complication, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion without mention of complication (634.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion without mention of complication (634.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.9''', NULL,
+ 'Spontaneous abortion without mention of complication (634.9)', 'Spontaneous abortion without mention of complication (634.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion without mention of complication (634.9)\(634.90) Spontaneous abortion, without mention of complication, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion without mention of complication (634.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion without mention of complication (634.9)\(634.90) Spontaneous abortion, without mention of complication, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.90''', NULL,
+ '(634.90) Spontaneous abortion, without mention of complication, unspecified', '(634.90) Spontaneous abortion, without mention of complication, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion without mention of complication (634.9)\(634.91) Spontaneous abortion, without mention of complication, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion without mention of complication (634.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion without mention of complication (634.9)\(634.91) Spontaneous abortion, without mention of complication, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.91''', NULL,
+ '(634.91) Spontaneous abortion, without mention of complication, incomplete', '(634.91) Spontaneous abortion, without mention of complication, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion without mention of complication (634.9)\(634.92) Spontaneous abortion, without mention of complication, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion without mention of complication (634.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Spontaneous abortion (634)\Spontaneous abortion without mention of complication (634.9)\(634.92) Spontaneous abortion, without mention of complication, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''634.92''', NULL,
+ '(634.92) Spontaneous abortion, without mention of complication, complete', '(634.92) Spontaneous abortion, without mention of complication, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637''', NULL,
+ 'Unspecified abortion (637)', 'Unspecified abortion (637)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.2''', NULL,
+ 'Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)', 'Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)\(637.20) Unspecified abortion, complicated by damage to pelvic organs or tissues, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)\(637.20) Unspecified abortion, complicated by damage to pelvic organs or tissues, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.20''', NULL,
+ '(637.20) Unspecified abortion, complicated by damage to pelvic organs or tissues, unspecified', '(637.20) Unspecified abortion, complicated by damage to pelvic organs or tissues, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)\(637.21) Unspecified abortion, complicated by damage to pelvic organs or tissues, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)\(637.21) Unspecified abortion, complicated by damage to pelvic organs or tissues, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.21''', NULL,
+ '(637.21) Unspecified abortion, complicated by damage to pelvic organs or tissues, incomplete', '(637.21) Unspecified abortion, complicated by damage to pelvic organs or tissues, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)\(637.22) Unspecified abortion, complicated by damage to pelvic organs or tissues, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by damage to pelvic organs or tissues (637.2)\(637.22) Unspecified abortion, complicated by damage to pelvic organs or tissues, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.22''', NULL,
+ '(637.22) Unspecified abortion, complicated by damage to pelvic organs or tissues, complete', '(637.22) Unspecified abortion, complicated by damage to pelvic organs or tissues, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.1''', NULL,
+ 'Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)', 'Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)\(637.10) Unspecified abortion, complicated by delayed or excessive hemorrhage, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)\(637.10) Unspecified abortion, complicated by delayed or excessive hemorrhage, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.10''', NULL,
+ '(637.10) Unspecified abortion, complicated by delayed or excessive hemorrhage, unspecified', '(637.10) Unspecified abortion, complicated by delayed or excessive hemorrhage, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)\(637.11) Unspecified abortion, complicated by delayed or excessive hemorrhage, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)\(637.11) Unspecified abortion, complicated by delayed or excessive hemorrhage, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.11''', NULL,
+ '(637.11) Unspecified abortion, complicated by delayed or excessive hemorrhage, incomplete', '(637.11) Unspecified abortion, complicated by delayed or excessive hemorrhage, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)\(637.12) Unspecified abortion, complicated by delayed or excessive hemorrhage, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by delayed or excessive hemorrhage (637.1)\(637.12) Unspecified abortion, complicated by delayed or excessive hemorrhage, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.12''', NULL,
+ '(637.12) Unspecified abortion, complicated by delayed or excessive hemorrhage, complete', '(637.12) Unspecified abortion, complicated by delayed or excessive hemorrhage, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by embolism (637.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by embolism (637.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.6''', NULL,
+ 'Unspecified abortion complicated by embolism (637.6)', 'Unspecified abortion complicated by embolism (637.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by embolism (637.6)\(637.60) Unspecified abortion, complicated by embolism, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by embolism (637.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by embolism (637.6)\(637.60) Unspecified abortion, complicated by embolism, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.60''', NULL,
+ '(637.60) Unspecified abortion, complicated by embolism, unspecified', '(637.60) Unspecified abortion, complicated by embolism, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by embolism (637.6)\(637.61) Unspecified abortion, complicated by embolism, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by embolism (637.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by embolism (637.6)\(637.61) Unspecified abortion, complicated by embolism, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.61''', NULL,
+ '(637.61) Unspecified abortion, complicated by embolism, incomplete', '(637.61) Unspecified abortion, complicated by embolism, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by embolism (637.6)\(637.62) Unspecified abortion, complicated by embolism, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by embolism (637.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by embolism (637.6)\(637.62) Unspecified abortion, complicated by embolism, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.62''', NULL,
+ '(637.62) Unspecified abortion, complicated by embolism, complete', '(637.62) Unspecified abortion, complicated by embolism, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by genital tract and pelvic infection (637.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by genital tract and pelvic infection (637.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.0''', NULL,
+ 'Unspecified abortion complicated by genital tract and pelvic infection (637.0)', 'Unspecified abortion complicated by genital tract and pelvic infection (637.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by genital tract and pelvic infection (637.0)\(637.00) Unspecified abortion, complicated by genital tract and pelvic infection, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by genital tract and pelvic infection (637.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by genital tract and pelvic infection (637.0)\(637.00) Unspecified abortion, complicated by genital tract and pelvic infection, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.00''', NULL,
+ '(637.00) Unspecified abortion, complicated by genital tract and pelvic infection, unspecified', '(637.00) Unspecified abortion, complicated by genital tract and pelvic infection, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by genital tract and pelvic infection (637.0)\(637.01) Unspecified abortion, complicated by genital tract and pelvic infection, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by genital tract and pelvic infection (637.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by genital tract and pelvic infection (637.0)\(637.01) Unspecified abortion, complicated by genital tract and pelvic infection, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.01''', NULL,
+ '(637.01) Unspecified abortion, complicated by genital tract and pelvic infection, incomplete', '(637.01) Unspecified abortion, complicated by genital tract and pelvic infection, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by genital tract and pelvic infection (637.0)\(637.02) Unspecified abortion, complicated by genital tract and pelvic infection, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by genital tract and pelvic infection (637.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by genital tract and pelvic infection (637.0)\(637.02) Unspecified abortion, complicated by genital tract and pelvic infection, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.02''', NULL,
+ '(637.02) Unspecified abortion, complicated by genital tract and pelvic infection, complete', '(637.02) Unspecified abortion, complicated by genital tract and pelvic infection, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by metabolic disorder (637.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by metabolic disorder (637.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.4''', NULL,
+ 'Unspecified abortion complicated by metabolic disorder (637.4)', 'Unspecified abortion complicated by metabolic disorder (637.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by metabolic disorder (637.4)\(637.40) Unspecified abortion, complicated by metabolic disorder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by metabolic disorder (637.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by metabolic disorder (637.4)\(637.40) Unspecified abortion, complicated by metabolic disorder, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.40''', NULL,
+ '(637.40) Unspecified abortion, complicated by metabolic disorder, unspecified', '(637.40) Unspecified abortion, complicated by metabolic disorder, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by metabolic disorder (637.4)\(637.41) Unspecified abortion, complicated by metabolic disorder, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by metabolic disorder (637.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by metabolic disorder (637.4)\(637.41) Unspecified abortion, complicated by metabolic disorder, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.41''', NULL,
+ '(637.41) Unspecified abortion, complicated by metabolic disorder, incomplete', '(637.41) Unspecified abortion, complicated by metabolic disorder, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by metabolic disorder (637.4)\(637.42) Unspecified abortion, complicated by metabolic disorder, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by metabolic disorder (637.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by metabolic disorder (637.4)\(637.42) Unspecified abortion, complicated by metabolic disorder, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.42''', NULL,
+ '(637.42) Unspecified abortion, complicated by metabolic disorder, complete', '(637.42) Unspecified abortion, complicated by metabolic disorder, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by renal failure (637.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by renal failure (637.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.3''', NULL,
+ 'Unspecified abortion complicated by renal failure (637.3)', 'Unspecified abortion complicated by renal failure (637.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by renal failure (637.3)\(637.30) Unspecified abortion, complicated by renal failure, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by renal failure (637.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by renal failure (637.3)\(637.30) Unspecified abortion, complicated by renal failure, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.30''', NULL,
+ '(637.30) Unspecified abortion, complicated by renal failure, unspecified', '(637.30) Unspecified abortion, complicated by renal failure, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by renal failure (637.3)\(637.31) Unspecified abortion, complicated by renal failure, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by renal failure (637.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by renal failure (637.3)\(637.31) Unspecified abortion, complicated by renal failure, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.31''', NULL,
+ '(637.31) Unspecified abortion, complicated by renal failure, incomplete', '(637.31) Unspecified abortion, complicated by renal failure, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by renal failure (637.3)\(637.32) Unspecified abortion, complicated by renal failure, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by renal failure (637.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by renal failure (637.3)\(637.32) Unspecified abortion, complicated by renal failure, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.32''', NULL,
+ '(637.32) Unspecified abortion, complicated by renal failure, complete', '(637.32) Unspecified abortion, complicated by renal failure, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by shock (637.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by shock (637.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.5''', NULL,
+ 'Unspecified abortion complicated by shock (637.5)', 'Unspecified abortion complicated by shock (637.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by shock (637.5)\(637.50) Unspecified abortion, complicated by shock, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by shock (637.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by shock (637.5)\(637.50) Unspecified abortion, complicated by shock, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.50''', NULL,
+ '(637.50) Unspecified abortion, complicated by shock, unspecified', '(637.50) Unspecified abortion, complicated by shock, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by shock (637.5)\(637.51) Unspecified abortion, complicated by shock, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by shock (637.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by shock (637.5)\(637.51) Unspecified abortion, complicated by shock, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.51''', NULL,
+ '(637.51) Unspecified abortion, complicated by shock, incomplete', '(637.51) Unspecified abortion, complicated by shock, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by shock (637.5)\(637.52) Unspecified abortion, complicated by shock, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by shock (637.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion complicated by shock (637.5)\(637.52) Unspecified abortion, complicated by shock, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.52''', NULL,
+ '(637.52) Unspecified abortion, complicated by shock, complete', '(637.52) Unspecified abortion, complicated by shock, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with other specified complications (637.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with other specified complications (637.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.7''', NULL,
+ 'Unspecified abortion with other specified complications (637.7)', 'Unspecified abortion with other specified complications (637.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with other specified complications (637.7)\(637.70) Unspecified abortion, with other specified complications, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with other specified complications (637.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with other specified complications (637.7)\(637.70) Unspecified abortion, with other specified complications, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.70''', NULL,
+ '(637.70) Unspecified abortion, with other specified complications, unspecified', '(637.70) Unspecified abortion, with other specified complications, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with other specified complications (637.7)\(637.71) Unspecified abortion, with other specified complications, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with other specified complications (637.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with other specified complications (637.7)\(637.71) Unspecified abortion, with other specified complications, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.71''', NULL,
+ '(637.71) Unspecified abortion, with other specified complications, incomplete', '(637.71) Unspecified abortion, with other specified complications, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with other specified complications (637.7)\(637.72) Unspecified abortion, with other specified complications, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with other specified complications (637.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with other specified complications (637.7)\(637.72) Unspecified abortion, with other specified complications, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.72''', NULL,
+ '(637.72) Unspecified abortion, with other specified complications, complete', '(637.72) Unspecified abortion, with other specified complications, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with unspecified complication (637.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with unspecified complication (637.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.8''', NULL,
+ 'Unspecified abortion with unspecified complication (637.8)', 'Unspecified abortion with unspecified complication (637.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with unspecified complication (637.8)\(637.80) Unspecified abortion, with unspecified complication, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with unspecified complication (637.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with unspecified complication (637.8)\(637.80) Unspecified abortion, with unspecified complication, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.80''', NULL,
+ '(637.80) Unspecified abortion, with unspecified complication, unspecified', '(637.80) Unspecified abortion, with unspecified complication, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with unspecified complication (637.8)\(637.81) Unspecified abortion, with unspecified complication, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with unspecified complication (637.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with unspecified complication (637.8)\(637.81) Unspecified abortion, with unspecified complication, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.81''', NULL,
+ '(637.81) Unspecified abortion, with unspecified complication, incomplete', '(637.81) Unspecified abortion, with unspecified complication, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with unspecified complication (637.8)\(637.82) Unspecified abortion, with unspecified complication, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with unspecified complication (637.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion with unspecified complication (637.8)\(637.82) Unspecified abortion, with unspecified complication, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.82''', NULL,
+ '(637.82) Unspecified abortion, with unspecified complication, complete', '(637.82) Unspecified abortion, with unspecified complication, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion without mention of complication (637.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion without mention of complication (637.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.9''', NULL,
+ 'Unspecified abortion without mention of complication (637.9)', 'Unspecified abortion without mention of complication (637.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion without mention of complication (637.9)\(637.90) Unspecified abortion, without mention of complication, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion without mention of complication (637.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion without mention of complication (637.9)\(637.90) Unspecified abortion, without mention of complication, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.90''', NULL,
+ '(637.90) Unspecified abortion, without mention of complication, unspecified', '(637.90) Unspecified abortion, without mention of complication, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion without mention of complication (637.9)\(637.91) Unspecified abortion, without mention of complication, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion without mention of complication (637.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion without mention of complication (637.9)\(637.91) Unspecified abortion, without mention of complication, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.91''', NULL,
+ '(637.91) Unspecified abortion, without mention of complication, incomplete', '(637.91) Unspecified abortion, without mention of complication, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion without mention of complication (637.9)\(637.92) Unspecified abortion, without mention of complication, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion without mention of complication (637.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Complications of pregnancy, childbirth, and the puerperium (630-679.99)\Other pregnancy with abortive outcome (634-639.99)\Unspecified abortion (637)\Unspecified abortion without mention of complication (637.9)\(637.92) Unspecified abortion, without mention of complication, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''637.92''', NULL,
+ '(637.92) Unspecified abortion, without mention of complication, complete', '(637.92) Unspecified abortion, without mention of complication, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''740'' AND ''759.99''', NULL,
+ 'Congenital anomalies (740-759.99)', 'Congenital anomalies (740-759.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anencephalus and similar anomalies (740)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anencephalus and similar anomalies (740)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''740''', NULL,
+ 'Anencephalus and similar anomalies (740)', 'Anencephalus and similar anomalies (740)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anencephalus and similar anomalies (740)\(740.0) Anencephalus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anencephalus and similar anomalies (740)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anencephalus and similar anomalies (740)\(740.0) Anencephalus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''740.0''', NULL,
+ '(740.0) Anencephalus', '(740.0) Anencephalus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anencephalus and similar anomalies (740)\(740.1) Craniorachischisis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anencephalus and similar anomalies (740)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anencephalus and similar anomalies (740)\(740.1) Craniorachischisis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''740.1''', NULL,
+ '(740.1) Craniorachischisis', '(740.1) Craniorachischisis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anencephalus and similar anomalies (740)\(740.2) Iniencephaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anencephalus and similar anomalies (740)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anencephalus and similar anomalies (740)\(740.2) Iniencephaly\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''740.2''', NULL,
+ '(740.2) Iniencephaly', '(740.2) Iniencephaly', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''748''', NULL,
+ 'Anomalies of respiratory system, congenital (748)', 'Anomalies of respiratory system, congenital (748)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.0) Choanal atresia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.0) Choanal atresia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''748.0''', NULL,
+ '(748.0) Choanal atresia', '(748.0) Choanal atresia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.1) Other anomalies of nose\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.1) Other anomalies of nose\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''748.1''', NULL,
+ '(748.1) Other anomalies of nose', '(748.1) Other anomalies of nose', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.2) Web of larynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.2) Web of larynx\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''748.2''', NULL,
+ '(748.2) Web of larynx', '(748.2) Web of larynx', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.3) Other anomalies of larynx, trachea, and bronchus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.3) Other anomalies of larynx, trachea, and bronchus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''748.3''', NULL,
+ '(748.3) Other anomalies of larynx, trachea, and bronchus', '(748.3) Other anomalies of larynx, trachea, and bronchus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.4) Congenital cystic lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.4) Congenital cystic lung\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''748.4''', NULL,
+ '(748.4) Congenital cystic lung', '(748.4) Congenital cystic lung', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.5) Agenesis, hypoplasia, and dysplasia of lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.5) Agenesis, hypoplasia, and dysplasia of lung\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''748.5''', NULL,
+ '(748.5) Agenesis, hypoplasia, and dysplasia of lung', '(748.5) Agenesis, hypoplasia, and dysplasia of lung', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.8) Other specified anomalies of respiratory system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.8) Other specified anomalies of respiratory system\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''748.8''', NULL,
+ '(748.8) Other specified anomalies of respiratory system', '(748.8) Other specified anomalies of respiratory system', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.9) Unspecified anomaly of respiratory system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\(748.9) Unspecified anomaly of respiratory system\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''748.9''', NULL,
+ '(748.9) Unspecified anomaly of respiratory system', '(748.9) Unspecified anomaly of respiratory system', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\Congenital other anomalies of lung (748.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\Congenital other anomalies of lung (748.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''748.6''', NULL,
+ 'Congenital other anomalies of lung (748.6)', 'Congenital other anomalies of lung (748.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\Congenital other anomalies of lung (748.6)\(748.60) Anomaly of lung, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\Congenital other anomalies of lung (748.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\Congenital other anomalies of lung (748.6)\(748.60) Anomaly of lung, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''748.60''', NULL,
+ '(748.60) Anomaly of lung, unspecified', '(748.60) Anomaly of lung, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\Congenital other anomalies of lung (748.6)\(748.61) Congenital bronchiectasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\Congenital other anomalies of lung (748.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\Congenital other anomalies of lung (748.6)\(748.61) Congenital bronchiectasis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''748.61''', NULL,
+ '(748.61) Congenital bronchiectasis', '(748.61) Congenital bronchiectasis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\Congenital other anomalies of lung (748.6)\(748.69) Other congenital anomalies of lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\Congenital other anomalies of lung (748.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Anomalies of respiratory system, congenital (748)\Congenital other anomalies of lung (748.6)\(748.69) Other congenital anomalies of lung\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''748.69''', NULL,
+ '(748.69) Other congenital anomalies of lung', '(748.69) Other congenital anomalies of lung', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745''', NULL,
+ 'Bulbus cordis anomalies and anomalies of cardiac septal closure (745)', 'Bulbus cordis anomalies and anomalies of cardiac septal closure (745)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.0) Common truncus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.0) Common truncus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.0''', NULL,
+ '(745.0) Common truncus', '(745.0) Common truncus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.2) Tetralogy of fallot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.2) Tetralogy of fallot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.2''', NULL,
+ '(745.2) Tetralogy of fallot', '(745.2) Tetralogy of fallot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.3) Common ventricle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.3) Common ventricle\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.3''', NULL,
+ '(745.3) Common ventricle', '(745.3) Common ventricle', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.4) Ventricular septal defect\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.4) Ventricular septal defect\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.4''', NULL,
+ '(745.4) Ventricular septal defect', '(745.4) Ventricular septal defect', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.5) Ostium secundum type atrial septal defect\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.5) Ostium secundum type atrial septal defect\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.5''', NULL,
+ '(745.5) Ostium secundum type atrial septal defect', '(745.5) Ostium secundum type atrial septal defect', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.7) Cor biloculare\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.7) Cor biloculare\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.7''', NULL,
+ '(745.7) Cor biloculare', '(745.7) Cor biloculare', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.8) Other bulbus cordis anomalies and anomalies of cardiac septal closure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.8) Other bulbus cordis anomalies and anomalies of cardiac septal closure\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.8''', NULL,
+ '(745.8) Other bulbus cordis anomalies and anomalies of cardiac septal closure', '(745.8) Other bulbus cordis anomalies and anomalies of cardiac septal closure', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.9) Unspecified defect of septal closure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\(745.9) Unspecified defect of septal closure\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.9''', NULL,
+ '(745.9) Unspecified defect of septal closure', '(745.9) Unspecified defect of septal closure', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Endocardial cushion defects (745.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Endocardial cushion defects (745.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.6''', NULL,
+ 'Endocardial cushion defects (745.6)', 'Endocardial cushion defects (745.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Endocardial cushion defects (745.6)\(745.60) Endocardial cushion defect, unspecified type\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Endocardial cushion defects (745.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Endocardial cushion defects (745.6)\(745.60) Endocardial cushion defect, unspecified type\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.60''', NULL,
+ '(745.60) Endocardial cushion defect, unspecified type', '(745.60) Endocardial cushion defect, unspecified type', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Endocardial cushion defects (745.6)\(745.61) Ostium primum defect\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Endocardial cushion defects (745.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Endocardial cushion defects (745.6)\(745.61) Ostium primum defect\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.61''', NULL,
+ '(745.61) Ostium primum defect', '(745.61) Ostium primum defect', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Endocardial cushion defects (745.6)\(745.69) Other endocardial cushion defects\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Endocardial cushion defects (745.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Endocardial cushion defects (745.6)\(745.69) Other endocardial cushion defects\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.69''', NULL,
+ '(745.69) Other endocardial cushion defects', '(745.69) Other endocardial cushion defects', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Transposition of great vessels (745.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Transposition of great vessels (745.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.1''', NULL,
+ 'Transposition of great vessels (745.1)', 'Transposition of great vessels (745.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Transposition of great vessels (745.1)\(745.10) Complete transposition of great vessels\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Transposition of great vessels (745.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Transposition of great vessels (745.1)\(745.10) Complete transposition of great vessels\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.10''', NULL,
+ '(745.10) Complete transposition of great vessels', '(745.10) Complete transposition of great vessels', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Transposition of great vessels (745.1)\(745.11) Double outlet right ventricle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Transposition of great vessels (745.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Transposition of great vessels (745.1)\(745.11) Double outlet right ventricle\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.11''', NULL,
+ '(745.11) Double outlet right ventricle', '(745.11) Double outlet right ventricle', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Transposition of great vessels (745.1)\(745.12) Corrected transposition of great vessels\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Transposition of great vessels (745.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Transposition of great vessels (745.1)\(745.12) Corrected transposition of great vessels\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.12''', NULL,
+ '(745.12) Corrected transposition of great vessels', '(745.12) Corrected transposition of great vessels', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Transposition of great vessels (745.1)\(745.19) Other transposition of great vessels\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Transposition of great vessels (745.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Bulbus cordis anomalies and anomalies of cardiac septal closure (745)\Transposition of great vessels (745.1)\(745.19) Other transposition of great vessels\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''745.19''', NULL,
+ '(745.19) Other transposition of great vessels', '(745.19) Other transposition of great vessels', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754''', NULL,
+ 'Certain congenital musculoskeletal deformities (754)', 'Certain congenital musculoskeletal deformities (754)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\(754.0) Congenital musculoskeletal deformities of skull, face, and jaw\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\(754.0) Congenital musculoskeletal deformities of skull, face, and jaw\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.0''', NULL,
+ '(754.0) Congenital musculoskeletal deformities of skull, face, and jaw', '(754.0) Congenital musculoskeletal deformities of skull, face, and jaw', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\(754.1) Congenital musculoskeletal deformities of sternocleidomastoid muscle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\(754.1) Congenital musculoskeletal deformities of sternocleidomastoid muscle\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.1''', NULL,
+ '(754.1) Congenital musculoskeletal deformities of sternocleidomastoid muscle', '(754.1) Congenital musculoskeletal deformities of sternocleidomastoid muscle', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\(754.2) Congenital musculoskeletal deformities of spine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\(754.2) Congenital musculoskeletal deformities of spine\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.2''', NULL,
+ '(754.2) Congenital musculoskeletal deformities of spine', '(754.2) Congenital musculoskeletal deformities of spine', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.3''', NULL,
+ 'Congenital dislocation of hip (754.3)', 'Congenital dislocation of hip (754.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\(754.30) Congenital dislocation of hip, unilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\(754.30) Congenital dislocation of hip, unilateral\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.30''', NULL,
+ '(754.30) Congenital dislocation of hip, unilateral', '(754.30) Congenital dislocation of hip, unilateral', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\(754.31) Congenital dislocation of hip, bilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\(754.31) Congenital dislocation of hip, bilateral\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.31''', NULL,
+ '(754.31) Congenital dislocation of hip, bilateral', '(754.31) Congenital dislocation of hip, bilateral', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\(754.32) Congenital subluxation of hip, unilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\(754.32) Congenital subluxation of hip, unilateral\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.32''', NULL,
+ '(754.32) Congenital subluxation of hip, unilateral', '(754.32) Congenital subluxation of hip, unilateral', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\(754.33) Congenital subluxation of hip, bilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\(754.33) Congenital subluxation of hip, bilateral\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.33''', NULL,
+ '(754.33) Congenital subluxation of hip, bilateral', '(754.33) Congenital subluxation of hip, bilateral', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\(754.35) Congenital dislocation of one hip with subluxation of other hip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital dislocation of hip (754.3)\(754.35) Congenital dislocation of one hip with subluxation of other hip\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.35''', NULL,
+ '(754.35) Congenital dislocation of one hip with subluxation of other hip', '(754.35) Congenital dislocation of one hip with subluxation of other hip', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.4''', NULL,
+ 'Congenital genu recurvatum and bowing of long bones of leg (754.4)', 'Congenital genu recurvatum and bowing of long bones of leg (754.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\(754.40) Genu recurvatum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\(754.40) Genu recurvatum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.40''', NULL,
+ '(754.40) Genu recurvatum', '(754.40) Genu recurvatum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\(754.41) Congenital dislocation of knee (with genu recurvatum)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\(754.41) Congenital dislocation of knee (with genu recurvatum)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.41) Congenital dislocation of knee (with genu recurvatum''', NULL,
+ '(754.41) Congenital dislocation of knee (with genu recurvatum)', '(754.41) Congenital dislocation of knee (with genu recurvatum)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\(754.42) Congenital bowing of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\(754.42) Congenital bowing of femur\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.42''', NULL,
+ '(754.42) Congenital bowing of femur', '(754.42) Congenital bowing of femur', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\(754.43) Congenital bowing of tibia and fibula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\(754.43) Congenital bowing of tibia and fibula\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.43''', NULL,
+ '(754.43) Congenital bowing of tibia and fibula', '(754.43) Congenital bowing of tibia and fibula', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\(754.44) Congenital bowing of unspecified long bones of leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Congenital genu recurvatum and bowing of long bones of leg (754.4)\(754.44) Congenital bowing of unspecified long bones of leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.44''', NULL,
+ '(754.44) Congenital bowing of unspecified long bones of leg', '(754.44) Congenital bowing of unspecified long bones of leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other congenital deformities of feet (754.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other congenital deformities of feet (754.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.7''', NULL,
+ 'Other congenital deformities of feet (754.7)', 'Other congenital deformities of feet (754.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other congenital deformities of feet (754.7)\(754.70) Talipes, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other congenital deformities of feet (754.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other congenital deformities of feet (754.7)\(754.70) Talipes, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.70''', NULL,
+ '(754.70) Talipes, unspecified', '(754.70) Talipes, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other congenital deformities of feet (754.7)\(754.71) Talipes cavus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other congenital deformities of feet (754.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other congenital deformities of feet (754.7)\(754.71) Talipes cavus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.71''', NULL,
+ '(754.71) Talipes cavus', '(754.71) Talipes cavus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other congenital deformities of feet (754.7)\(754.79) Other deformities of feet\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other congenital deformities of feet (754.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other congenital deformities of feet (754.7)\(754.79) Other deformities of feet\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.79''', NULL,
+ '(754.79) Other deformities of feet', '(754.79) Other deformities of feet', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other specified nonteratogenic anomalies (754.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other specified nonteratogenic anomalies (754.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.8''', NULL,
+ 'Other specified nonteratogenic anomalies (754.8)', 'Other specified nonteratogenic anomalies (754.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other specified nonteratogenic anomalies (754.8)\(754.81) Pectus excavatum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other specified nonteratogenic anomalies (754.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other specified nonteratogenic anomalies (754.8)\(754.81) Pectus excavatum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.81''', NULL,
+ '(754.81) Pectus excavatum', '(754.81) Pectus excavatum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other specified nonteratogenic anomalies (754.8)\(754.82) Pectus carinatum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other specified nonteratogenic anomalies (754.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other specified nonteratogenic anomalies (754.8)\(754.82) Pectus carinatum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.82''', NULL,
+ '(754.82) Pectus carinatum', '(754.82) Pectus carinatum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other specified nonteratogenic anomalies (754.8)\(754.89) Other specified nonteratogenic anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other specified nonteratogenic anomalies (754.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Other specified nonteratogenic anomalies (754.8)\(754.89) Other specified nonteratogenic anomalies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.89''', NULL,
+ '(754.89) Other specified nonteratogenic anomalies', '(754.89) Other specified nonteratogenic anomalies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Valgus deformities of feet, congenital (754.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Valgus deformities of feet, congenital (754.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.6''', NULL,
+ 'Valgus deformities of feet, congenital (754.6)', 'Valgus deformities of feet, congenital (754.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Valgus deformities of feet, congenital (754.6)\(754.60) Talipes valgus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Valgus deformities of feet, congenital (754.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Valgus deformities of feet, congenital (754.6)\(754.60) Talipes valgus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.60''', NULL,
+ '(754.60) Talipes valgus', '(754.60) Talipes valgus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Valgus deformities of feet, congenital (754.6)\(754.61) Congenital pes planus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Valgus deformities of feet, congenital (754.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Valgus deformities of feet, congenital (754.6)\(754.61) Congenital pes planus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.61''', NULL,
+ '(754.61) Congenital pes planus', '(754.61) Congenital pes planus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Valgus deformities of feet, congenital (754.6)\(754.62) Talipes calcaneovalgus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Valgus deformities of feet, congenital (754.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Valgus deformities of feet, congenital (754.6)\(754.62) Talipes calcaneovalgus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.62''', NULL,
+ '(754.62) Talipes calcaneovalgus', '(754.62) Talipes calcaneovalgus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Valgus deformities of feet, congenital (754.6)\(754.69) Other valgus deformities of feet\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Valgus deformities of feet, congenital (754.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Valgus deformities of feet, congenital (754.6)\(754.69) Other valgus deformities of feet\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.69''', NULL,
+ '(754.69) Other valgus deformities of feet', '(754.69) Other valgus deformities of feet', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.5''', NULL,
+ 'Varus deformities of feet, congenital (754.5)', 'Varus deformities of feet, congenital (754.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\(754.50) Talipes varus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\(754.50) Talipes varus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.50''', NULL,
+ '(754.50) Talipes varus', '(754.50) Talipes varus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\(754.51) Talipes equinovarus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\(754.51) Talipes equinovarus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.51''', NULL,
+ '(754.51) Talipes equinovarus', '(754.51) Talipes equinovarus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\(754.52) Metatarsus primus varus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\(754.52) Metatarsus primus varus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.52''', NULL,
+ '(754.52) Metatarsus primus varus', '(754.52) Metatarsus primus varus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\(754.53) Metatarsus varus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\(754.53) Metatarsus varus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.53''', NULL,
+ '(754.53) Metatarsus varus', '(754.53) Metatarsus varus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\(754.59) Other varus deformities of feet\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Certain congenital musculoskeletal deformities (754)\Varus deformities of feet, congenital (754.5)\(754.59) Other varus deformities of feet\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''754.59''', NULL,
+ '(754.59) Other varus deformities of feet', '(754.59) Other varus deformities of feet', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758''', NULL,
+ 'Chromosomal anomalies (758)', 'Chromosomal anomalies (758)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.0) Down''s syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.0) Down''s syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.0''', NULL,
+ '(758.0) Down''s syndrome', '(758.0) Down''s syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.1) Patau''s syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.1) Patau''s syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.1''', NULL,
+ '(758.1) Patau''s syndrome', '(758.1) Patau''s syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.2) Edwards'' syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.2) Edwards'' syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.2''', NULL,
+ '(758.2) Edwards'' syndrome', '(758.2) Edwards'' syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.4) Balanced autosomal translocation in normal individual\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.4) Balanced autosomal translocation in normal individual\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.4''', NULL,
+ '(758.4) Balanced autosomal translocation in normal individual', '(758.4) Balanced autosomal translocation in normal individual', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.5) Other conditions due to autosomal anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.5) Other conditions due to autosomal anomalies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.5''', NULL,
+ '(758.5) Other conditions due to autosomal anomalies', '(758.5) Other conditions due to autosomal anomalies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.6) Gonadal dysgenesis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.6) Gonadal dysgenesis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.6''', NULL,
+ '(758.6) Gonadal dysgenesis', '(758.6) Gonadal dysgenesis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.7) Klinefelter''s syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.7) Klinefelter''s syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.7''', NULL,
+ '(758.7) Klinefelter''s syndrome', '(758.7) Klinefelter''s syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.9) Conditions due to anomaly of unspecified chromosome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\(758.9) Conditions due to anomaly of unspecified chromosome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.9''', NULL,
+ '(758.9) Conditions due to anomaly of unspecified chromosome', '(758.9) Conditions due to anomaly of unspecified chromosome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Autosomal deletion syndromes (758.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Autosomal deletion syndromes (758.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.3''', NULL,
+ 'Autosomal deletion syndromes (758.3)', 'Autosomal deletion syndromes (758.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Autosomal deletion syndromes (758.3)\(758.31) Cri-du-chat syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Autosomal deletion syndromes (758.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Autosomal deletion syndromes (758.3)\(758.31) Cri-du-chat syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.31''', NULL,
+ '(758.31) Cri-du-chat syndrome', '(758.31) Cri-du-chat syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Autosomal deletion syndromes (758.3)\(758.32) Velo-cardio-facial syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Autosomal deletion syndromes (758.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Autosomal deletion syndromes (758.3)\(758.32) Velo-cardio-facial syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.32''', NULL,
+ '(758.32) Velo-cardio-facial syndrome', '(758.32) Velo-cardio-facial syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Autosomal deletion syndromes (758.3)\(758.33) Other microdeletions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Autosomal deletion syndromes (758.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Autosomal deletion syndromes (758.3)\(758.33) Other microdeletions\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.33''', NULL,
+ '(758.33) Other microdeletions', '(758.33) Other microdeletions', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Autosomal deletion syndromes (758.3)\(758.39) Other autosomal deletions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Autosomal deletion syndromes (758.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Autosomal deletion syndromes (758.3)\(758.39) Other autosomal deletions\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.39''', NULL,
+ '(758.39) Other autosomal deletions', '(758.39) Other autosomal deletions', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Other conditions due to chromosome anomalies (758.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Other conditions due to chromosome anomalies (758.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.8''', NULL,
+ 'Other conditions due to chromosome anomalies (758.8)', 'Other conditions due to chromosome anomalies (758.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Other conditions due to chromosome anomalies (758.8)\(758.81) Other conditions due to sex chromosome anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Other conditions due to chromosome anomalies (758.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Other conditions due to chromosome anomalies (758.8)\(758.81) Other conditions due to sex chromosome anomalies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.81''', NULL,
+ '(758.81) Other conditions due to sex chromosome anomalies', '(758.81) Other conditions due to sex chromosome anomalies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Other conditions due to chromosome anomalies (758.8)\(758.89) Other conditions due to chromosome anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Other conditions due to chromosome anomalies (758.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Chromosomal anomalies (758)\Other conditions due to chromosome anomalies (758.8)\(758.89) Other conditions due to chromosome anomalies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''758.89''', NULL,
+ '(758.89) Other conditions due to chromosome anomalies', '(758.89) Other conditions due to chromosome anomalies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749''', NULL,
+ 'Cleft palate and cleft lip (749)', 'Cleft palate and cleft lip (749)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.1''', NULL,
+ 'Cleft lip (749.1)', 'Cleft lip (749.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\(749.10) Cleft lip, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\(749.10) Cleft lip, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.10''', NULL,
+ '(749.10) Cleft lip, unspecified', '(749.10) Cleft lip, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\(749.11) Cleft lip, unilateral, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\(749.11) Cleft lip, unilateral, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.11''', NULL,
+ '(749.11) Cleft lip, unilateral, complete', '(749.11) Cleft lip, unilateral, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\(749.12) Cleft lip, unilateral, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\(749.12) Cleft lip, unilateral, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.12''', NULL,
+ '(749.12) Cleft lip, unilateral, incomplete', '(749.12) Cleft lip, unilateral, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\(749.13) Cleft lip, bilateral, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\(749.13) Cleft lip, bilateral, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.13''', NULL,
+ '(749.13) Cleft lip, bilateral, complete', '(749.13) Cleft lip, bilateral, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\(749.14) Cleft lip, bilateral, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft lip (749.1)\(749.14) Cleft lip, bilateral, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.14''', NULL,
+ '(749.14) Cleft lip, bilateral, incomplete', '(749.14) Cleft lip, bilateral, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.0''', NULL,
+ 'Cleft palate (749.0)', 'Cleft palate (749.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\(749.00) Cleft palate, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\(749.00) Cleft palate, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.00''', NULL,
+ '(749.00) Cleft palate, unspecified', '(749.00) Cleft palate, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\(749.01) Cleft palate, unilateral, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\(749.01) Cleft palate, unilateral, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.01''', NULL,
+ '(749.01) Cleft palate, unilateral, complete', '(749.01) Cleft palate, unilateral, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\(749.02) Cleft palate, unilateral, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\(749.02) Cleft palate, unilateral, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.02''', NULL,
+ '(749.02) Cleft palate, unilateral, incomplete', '(749.02) Cleft palate, unilateral, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\(749.03) Cleft palate, bilateral, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\(749.03) Cleft palate, bilateral, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.03''', NULL,
+ '(749.03) Cleft palate, bilateral, complete', '(749.03) Cleft palate, bilateral, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\(749.04) Cleft palate, bilateral, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate (749.0)\(749.04) Cleft palate, bilateral, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.04''', NULL,
+ '(749.04) Cleft palate, bilateral, incomplete', '(749.04) Cleft palate, bilateral, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.2''', NULL,
+ 'Cleft palate with cleft lip (749.2)', 'Cleft palate with cleft lip (749.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\(749.20) Cleft palate with cleft lip, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\(749.20) Cleft palate with cleft lip, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.20''', NULL,
+ '(749.20) Cleft palate with cleft lip, unspecified', '(749.20) Cleft palate with cleft lip, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\(749.21) Cleft palate with cleft lip, unilateral, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\(749.21) Cleft palate with cleft lip, unilateral, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.21''', NULL,
+ '(749.21) Cleft palate with cleft lip, unilateral, complete', '(749.21) Cleft palate with cleft lip, unilateral, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\(749.22) Cleft palate with cleft lip, unilateral, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\(749.22) Cleft palate with cleft lip, unilateral, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.22''', NULL,
+ '(749.22) Cleft palate with cleft lip, unilateral, incomplete', '(749.22) Cleft palate with cleft lip, unilateral, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\(749.23) Cleft palate with cleft lip, bilateral, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\(749.23) Cleft palate with cleft lip, bilateral, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.23''', NULL,
+ '(749.23) Cleft palate with cleft lip, bilateral, complete', '(749.23) Cleft palate with cleft lip, bilateral, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\(749.24) Cleft palate with cleft lip, bilateral, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\(749.24) Cleft palate with cleft lip, bilateral, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.24''', NULL,
+ '(749.24) Cleft palate with cleft lip, bilateral, incomplete', '(749.24) Cleft palate with cleft lip, bilateral, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\(749.25) Other combinations of cleft palate with cleft lip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Cleft palate and cleft lip (749)\Cleft palate with cleft lip (749.2)\(749.25) Other combinations of cleft palate with cleft lip\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''749.25''', NULL,
+ '(749.25) Other combinations of cleft palate with cleft lip', '(749.25) Other combinations of cleft palate with cleft lip', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744''', NULL,
+ 'Congenital anomalies of ear, face, and neck (744)', 'Congenital anomalies of ear, face, and neck (744)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\(744.1) Accessory auricle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\(744.1) Accessory auricle\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.1''', NULL,
+ '(744.1) Accessory auricle', '(744.1) Accessory auricle', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\(744.3) Unspecified anomaly of ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\(744.3) Unspecified anomaly of ear\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.3''', NULL,
+ '(744.3) Unspecified anomaly of ear', '(744.3) Unspecified anomaly of ear', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\(744.5) Webbing of neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\(744.5) Webbing of neck\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.5''', NULL,
+ '(744.5) Webbing of neck', '(744.5) Webbing of neck', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\(744.9) Unspecified congenital anomalies of face and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\(744.9) Unspecified congenital anomalies of face and neck\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.9''', NULL,
+ '(744.9) Unspecified congenital anomalies of face and neck', '(744.9) Unspecified congenital anomalies of face and neck', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.4''', NULL,
+ 'Branchial cleft cyst or fistula; preauricular sinus (744.4)', 'Branchial cleft cyst or fistula; preauricular sinus (744.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\(744.41) Branchial cleft sinus or fistula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\(744.41) Branchial cleft sinus or fistula\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.41''', NULL,
+ '(744.41) Branchial cleft sinus or fistula', '(744.41) Branchial cleft sinus or fistula', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\(744.42) Branchial cleft cyst\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\(744.42) Branchial cleft cyst\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.42''', NULL,
+ '(744.42) Branchial cleft cyst', '(744.42) Branchial cleft cyst', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\(744.43) Cervical auricle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\(744.43) Cervical auricle\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.43''', NULL,
+ '(744.43) Cervical auricle', '(744.43) Cervical auricle', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\(744.46) Preauricular sinus or fistula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\(744.46) Preauricular sinus or fistula\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.46''', NULL,
+ '(744.46) Preauricular sinus or fistula', '(744.46) Preauricular sinus or fistula', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\(744.47) Preauricular cyst\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\(744.47) Preauricular cyst\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.47''', NULL,
+ '(744.47) Preauricular cyst', '(744.47) Preauricular cyst', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\(744.49) Other branchial cleft cyst or fistula; preauricular sinus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Branchial cleft cyst or fistula; preauricular sinus (744.4)\(744.49) Other branchial cleft cyst or fistula; preauricular sinus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.49''', NULL,
+ '(744.49) Other branchial cleft cyst or fistula; preauricular sinus', '(744.49) Other branchial cleft cyst or fistula; preauricular sinus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.0''', NULL,
+ 'Congenital anomalies of ear causing impairment of hearing (744.0)', 'Congenital anomalies of ear causing impairment of hearing (744.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\(744.00) Unspecified anomaly of ear with impairment of hearing\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\(744.00) Unspecified anomaly of ear with impairment of hearing\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.00''', NULL,
+ '(744.00) Unspecified anomaly of ear with impairment of hearing', '(744.00) Unspecified anomaly of ear with impairment of hearing', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\(744.01) Absence of external ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\(744.01) Absence of external ear\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.01''', NULL,
+ '(744.01) Absence of external ear', '(744.01) Absence of external ear', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\(744.02) Other anomalies of external ear with impairment of hearing\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\(744.02) Other anomalies of external ear with impairment of hearing\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.02''', NULL,
+ '(744.02) Other anomalies of external ear with impairment of hearing', '(744.02) Other anomalies of external ear with impairment of hearing', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\(744.03) Anomaly of middle ear, except ossicles\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\(744.03) Anomaly of middle ear, except ossicles\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.03''', NULL,
+ '(744.03) Anomaly of middle ear, except ossicles', '(744.03) Anomaly of middle ear, except ossicles', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\(744.04) Anomalies of ear ossicles\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\(744.04) Anomalies of ear ossicles\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.04''', NULL,
+ '(744.04) Anomalies of ear ossicles', '(744.04) Anomalies of ear ossicles', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\(744.05) Anomalies of inner ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\(744.05) Anomalies of inner ear\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.05''', NULL,
+ '(744.05) Anomalies of inner ear', '(744.05) Anomalies of inner ear', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\(744.09) Other anomalies of ear causing impairment of hearing\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Congenital anomalies of ear causing impairment of hearing (744.0)\(744.09) Other anomalies of ear causing impairment of hearing\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.09''', NULL,
+ '(744.09) Other anomalies of ear causing impairment of hearing', '(744.09) Other anomalies of ear causing impairment of hearing', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.2''', NULL,
+ 'Other specified congenital anomalies of ear (744.2)', 'Other specified congenital anomalies of ear (744.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\(744.21) Absence of ear lobe, congenital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\(744.21) Absence of ear lobe, congenital\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.21''', NULL,
+ '(744.21) Absence of ear lobe, congenital', '(744.21) Absence of ear lobe, congenital', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\(744.22) Macrotia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\(744.22) Macrotia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.22''', NULL,
+ '(744.22) Macrotia', '(744.22) Macrotia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\(744.23) Microtia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\(744.23) Microtia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.23''', NULL,
+ '(744.23) Microtia', '(744.23) Microtia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\(744.24) Specified anomalies of Eustachian tube\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\(744.24) Specified anomalies of Eustachian tube\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.24''', NULL,
+ '(744.24) Specified anomalies of Eustachian tube', '(744.24) Specified anomalies of Eustachian tube', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\(744.29) Other specified anomalies of ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of ear (744.2)\(744.29) Other specified anomalies of ear\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.29''', NULL,
+ '(744.29) Other specified anomalies of ear', '(744.29) Other specified anomalies of ear', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.8''', NULL,
+ 'Other specified congenital anomalies of face and neck (744.8)', 'Other specified congenital anomalies of face and neck (744.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\(744.81) Macrocheilia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\(744.81) Macrocheilia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.81''', NULL,
+ '(744.81) Macrocheilia', '(744.81) Macrocheilia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\(744.82) Microcheilia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\(744.82) Microcheilia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.82''', NULL,
+ '(744.82) Microcheilia', '(744.82) Microcheilia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\(744.83) Macrostomia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\(744.83) Macrostomia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.83''', NULL,
+ '(744.83) Macrostomia', '(744.83) Macrostomia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\(744.84) Microstomia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\(744.84) Microstomia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.84''', NULL,
+ '(744.84) Microstomia', '(744.84) Microstomia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\(744.89) Other specified congenital anomalies of face and neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of ear, face, and neck (744)\Other specified congenital anomalies of face and neck (744.8)\(744.89) Other specified congenital anomalies of face and neck\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''744.89''', NULL,
+ '(744.89) Other specified congenital anomalies of face and neck', '(744.89) Other specified congenital anomalies of face and neck', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743''', NULL,
+ 'Congenital anomalies of eye (743)', 'Congenital anomalies of eye (743)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\(743.8) Other specified anomalies of eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\(743.8) Other specified anomalies of eye\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.8''', NULL,
+ '(743.8) Other specified anomalies of eye', '(743.8) Other specified anomalies of eye', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\(743.9) Unspecified anomaly of eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\(743.9) Unspecified anomaly of eye\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.9''', NULL,
+ '(743.9) Unspecified anomaly of eye', '(743.9) Unspecified anomaly of eye', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Anophthalmos (743.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Anophthalmos (743.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.0''', NULL,
+ 'Anophthalmos (743.0)', 'Anophthalmos (743.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Anophthalmos (743.0)\(743.00) Clinical anophthalmos, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Anophthalmos (743.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Anophthalmos (743.0)\(743.00) Clinical anophthalmos, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.00''', NULL,
+ '(743.00) Clinical anophthalmos, unspecified', '(743.00) Clinical anophthalmos, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Anophthalmos (743.0)\(743.03) Cystic eyeball, congenital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Anophthalmos (743.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Anophthalmos (743.0)\(743.03) Cystic eyeball, congenital\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.03''', NULL,
+ '(743.03) Cystic eyeball, congenital', '(743.03) Cystic eyeball, congenital', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Anophthalmos (743.0)\(743.06) Cryptophthalmos\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Anophthalmos (743.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Anophthalmos (743.0)\(743.06) Cryptophthalmos\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.06''', NULL,
+ '(743.06) Cryptophthalmos', '(743.06) Cryptophthalmos', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Buphthalmos (743.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Buphthalmos (743.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.2''', NULL,
+ 'Buphthalmos (743.2)', 'Buphthalmos (743.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Buphthalmos (743.2)\(743.20) Buphthalmos, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Buphthalmos (743.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Buphthalmos (743.2)\(743.20) Buphthalmos, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.20''', NULL,
+ '(743.20) Buphthalmos, unspecified', '(743.20) Buphthalmos, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Buphthalmos (743.2)\(743.21) Simple buphthalmos\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Buphthalmos (743.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Buphthalmos (743.2)\(743.21) Simple buphthalmos\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.21''', NULL,
+ '(743.21) Simple buphthalmos', '(743.21) Simple buphthalmos', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Buphthalmos (743.2)\(743.22) Buphthalmos associated with other ocular anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Buphthalmos (743.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Buphthalmos (743.2)\(743.22) Buphthalmos associated with other ocular anomalies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.22''', NULL,
+ '(743.22) Buphthalmos associated with other ocular anomalies', '(743.22) Buphthalmos associated with other ocular anomalies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.4''', NULL,
+ 'Coloboma and other anomalies of anterior segment (743.4)', 'Coloboma and other anomalies of anterior segment (743.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.41) Congenital anomalies of corneal size and shape\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.41) Congenital anomalies of corneal size and shape\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.41''', NULL,
+ '(743.41) Congenital anomalies of corneal size and shape', '(743.41) Congenital anomalies of corneal size and shape', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.42) Corneal opacities, interfering with vision, congenital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.42) Corneal opacities, interfering with vision, congenital\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.42''', NULL,
+ '(743.42) Corneal opacities, interfering with vision, congenital', '(743.42) Corneal opacities, interfering with vision, congenital', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.43) Other corneal opacities, congenital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.43) Other corneal opacities, congenital\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.43''', NULL,
+ '(743.43) Other corneal opacities, congenital', '(743.43) Other corneal opacities, congenital', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.44) Specified congenital anomalies of anterior chamber, chamber angle, and related structures\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.44) Specified congenital anomalies of anterior chamber, chamber angle, and related structures\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.44''', NULL,
+ '(743.44) Specified congenital anomalies of anterior chamber, chamber angle, and related structures', '(743.44) Specified congenital anomalies of anterior chamber, chamber angle, and related structures', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.45) Aniridia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.45) Aniridia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.45''', NULL,
+ '(743.45) Aniridia', '(743.45) Aniridia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.46) Other specified congenital anomalies of iris and ciliary body\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.46) Other specified congenital anomalies of iris and ciliary body\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.46''', NULL,
+ '(743.46) Other specified congenital anomalies of iris and ciliary body', '(743.46) Other specified congenital anomalies of iris and ciliary body', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.47) Specified congenital anomalies of sclera\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.47) Specified congenital anomalies of sclera\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.47''', NULL,
+ '(743.47) Specified congenital anomalies of sclera', '(743.47) Specified congenital anomalies of sclera', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.48) Multiple and combined congenital anomalies of anterior segment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.48) Multiple and combined congenital anomalies of anterior segment\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.48''', NULL,
+ '(743.48) Multiple and combined congenital anomalies of anterior segment', '(743.48) Multiple and combined congenital anomalies of anterior segment', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.49) Other congenital anomalies of anterior segment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Coloboma and other anomalies of anterior segment (743.4)\(743.49) Other congenital anomalies of anterior segment\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.49''', NULL,
+ '(743.49) Other congenital anomalies of anterior segment', '(743.49) Other congenital anomalies of anterior segment', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.6''', NULL,
+ 'Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)', 'Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\(743.61) Congenital ptosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\(743.61) Congenital ptosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.61''', NULL,
+ '(743.61) Congenital ptosis', '(743.61) Congenital ptosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\(743.62) Congenital deformities of eyelids\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\(743.62) Congenital deformities of eyelids\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.62''', NULL,
+ '(743.62) Congenital deformities of eyelids', '(743.62) Congenital deformities of eyelids', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\(743.63) Other specified congenital anomalies of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\(743.63) Other specified congenital anomalies of eyelid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.63''', NULL,
+ '(743.63) Other specified congenital anomalies of eyelid', '(743.63) Other specified congenital anomalies of eyelid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\(743.64) Specified congenital anomalies of lacrimal gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\(743.64) Specified congenital anomalies of lacrimal gland\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.64''', NULL,
+ '(743.64) Specified congenital anomalies of lacrimal gland', '(743.64) Specified congenital anomalies of lacrimal gland', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\(743.65) Specified congenital anomalies of lacrimal passages\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\(743.65) Specified congenital anomalies of lacrimal passages\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.65''', NULL,
+ '(743.65) Specified congenital anomalies of lacrimal passages', '(743.65) Specified congenital anomalies of lacrimal passages', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\(743.66) Specified congenital anomalies of orbit\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\(743.66) Specified congenital anomalies of orbit\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.66''', NULL,
+ '(743.66) Specified congenital anomalies of orbit', '(743.66) Specified congenital anomalies of orbit', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\(743.69) Other congenital anomalies of eyelids, lacrimal system, and orbit\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of eyelids, lacrimal system, and orbit (743.6)\(743.69) Other congenital anomalies of eyelids, lacrimal system, and orbit\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.69''', NULL,
+ '(743.69) Other congenital anomalies of eyelids, lacrimal system, and orbit', '(743.69) Other congenital anomalies of eyelids, lacrimal system, and orbit', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.5''', NULL,
+ 'Congenital anomalies of posterior segment (743.5)', 'Congenital anomalies of posterior segment (743.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.51) Vitreous anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.51) Vitreous anomalies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.51''', NULL,
+ '(743.51) Vitreous anomalies', '(743.51) Vitreous anomalies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.52) Fundus coloboma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.52) Fundus coloboma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.52''', NULL,
+ '(743.52) Fundus coloboma', '(743.52) Fundus coloboma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.53) Chorioretinal degeneration, congenital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.53) Chorioretinal degeneration, congenital\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.53''', NULL,
+ '(743.53) Chorioretinal degeneration, congenital', '(743.53) Chorioretinal degeneration, congenital', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.54) Congenital folds and cysts of posterior segment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.54) Congenital folds and cysts of posterior segment\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.54''', NULL,
+ '(743.54) Congenital folds and cysts of posterior segment', '(743.54) Congenital folds and cysts of posterior segment', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.55) Congenital macular changes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.55) Congenital macular changes\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.55''', NULL,
+ '(743.55) Congenital macular changes', '(743.55) Congenital macular changes', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.56) Other retinal changes, congenital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.56) Other retinal changes, congenital\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.56''', NULL,
+ '(743.56) Other retinal changes, congenital', '(743.56) Other retinal changes, congenital', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.57) Specified congenital anomalies of optic disc\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.57) Specified congenital anomalies of optic disc\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.57''', NULL,
+ '(743.57) Specified congenital anomalies of optic disc', '(743.57) Specified congenital anomalies of optic disc', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.58) Vascular anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.58) Vascular anomalies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.58''', NULL,
+ '(743.58) Vascular anomalies', '(743.58) Vascular anomalies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.59) Other congenital anomalies of posterior segment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital anomalies of posterior segment (743.5)\(743.59) Other congenital anomalies of posterior segment\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.59''', NULL,
+ '(743.59) Other congenital anomalies of posterior segment', '(743.59) Other congenital anomalies of posterior segment', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.3''', NULL,
+ 'Congenital cataract and lens anomalies (743.3)', 'Congenital cataract and lens anomalies (743.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.30) Congenital cataract, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.30) Congenital cataract, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.30''', NULL,
+ '(743.30) Congenital cataract, unspecified', '(743.30) Congenital cataract, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.31) Congenital capsular and subcapsular cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.31) Congenital capsular and subcapsular cataract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.31''', NULL,
+ '(743.31) Congenital capsular and subcapsular cataract', '(743.31) Congenital capsular and subcapsular cataract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.32) Congenital cortical and zonular cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.32) Congenital cortical and zonular cataract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.32''', NULL,
+ '(743.32) Congenital cortical and zonular cataract', '(743.32) Congenital cortical and zonular cataract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.33) Congenital nuclear cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.33) Congenital nuclear cataract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.33''', NULL,
+ '(743.33) Congenital nuclear cataract', '(743.33) Congenital nuclear cataract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.34) Total and subtotal cataract, congenital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.34) Total and subtotal cataract, congenital\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.34''', NULL,
+ '(743.34) Total and subtotal cataract, congenital', '(743.34) Total and subtotal cataract, congenital', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.35) Congenital aphakia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.35) Congenital aphakia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.35''', NULL,
+ '(743.35) Congenital aphakia', '(743.35) Congenital aphakia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.36) Congenital anomalies of lens shape\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.36) Congenital anomalies of lens shape\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.36''', NULL,
+ '(743.36) Congenital anomalies of lens shape', '(743.36) Congenital anomalies of lens shape', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.37) Congenital ectopic lens\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.37) Congenital ectopic lens\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.37''', NULL,
+ '(743.37) Congenital ectopic lens', '(743.37) Congenital ectopic lens', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.39) Other congenital cataract and lens anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Congenital cataract and lens anomalies (743.3)\(743.39) Other congenital cataract and lens anomalies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.39''', NULL,
+ '(743.39) Other congenital cataract and lens anomalies', '(743.39) Other congenital cataract and lens anomalies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Microphthalmos (743.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Microphthalmos (743.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.1''', NULL,
+ 'Microphthalmos (743.1)', 'Microphthalmos (743.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Microphthalmos (743.1)\(743.10) Microphthalmos, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Microphthalmos (743.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Microphthalmos (743.1)\(743.10) Microphthalmos, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.10''', NULL,
+ '(743.10) Microphthalmos, unspecified', '(743.10) Microphthalmos, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Microphthalmos (743.1)\(743.11) Simple microphthalmos\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Microphthalmos (743.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Microphthalmos (743.1)\(743.11) Simple microphthalmos\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.11''', NULL,
+ '(743.11) Simple microphthalmos', '(743.11) Simple microphthalmos', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Microphthalmos (743.1)\(743.12) Microphthalmos associated with other anomalies of eye and adnexa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Microphthalmos (743.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of eye (743)\Microphthalmos (743.1)\(743.12) Microphthalmos associated with other anomalies of eye and adnexa\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''743.12''', NULL,
+ '(743.12) Microphthalmos associated with other anomalies of eye and adnexa', '(743.12) Microphthalmos associated with other anomalies of eye and adnexa', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752''', NULL,
+ 'Congenital anomalies of genital organs (752)', 'Congenital anomalies of genital organs (752)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\(752.0) Anomalies of ovaries\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\(752.0) Anomalies of ovaries\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.0''', NULL,
+ '(752.0) Anomalies of ovaries', '(752.0) Anomalies of ovaries', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\(752.2) Doubling of uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\(752.2) Doubling of uterus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.2''', NULL,
+ '(752.2) Doubling of uterus', '(752.2) Doubling of uterus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\(752.7) Indeterminate sex and pseudohermaphroditism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\(752.7) Indeterminate sex and pseudohermaphroditism\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.7''', NULL,
+ '(752.7) Indeterminate sex and pseudohermaphroditism', '(752.7) Indeterminate sex and pseudohermaphroditism', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\(752.9) Unspecified anomaly of genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\(752.9) Unspecified anomaly of genital organs\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.9''', NULL,
+ '(752.9) Unspecified anomaly of genital organs', '(752.9) Unspecified anomaly of genital organs', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.4''', NULL,
+ 'Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)', 'Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\(752.40) Unspecified anomaly of cervix, vagina, and external female genitalia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\(752.40) Unspecified anomaly of cervix, vagina, and external female genitalia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.40''', NULL,
+ '(752.40) Unspecified anomaly of cervix, vagina, and external female genitalia', '(752.40) Unspecified anomaly of cervix, vagina, and external female genitalia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\(752.41) Embryonic cyst of cervix, vagina, and external female genitalia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\(752.41) Embryonic cyst of cervix, vagina, and external female genitalia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.41''', NULL,
+ '(752.41) Embryonic cyst of cervix, vagina, and external female genitalia', '(752.41) Embryonic cyst of cervix, vagina, and external female genitalia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\(752.42) Imperforate hymen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\(752.42) Imperforate hymen\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.42''', NULL,
+ '(752.42) Imperforate hymen', '(752.42) Imperforate hymen', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\(752.43) Cervical agenesis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\(752.43) Cervical agenesis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.43''', NULL,
+ '(752.43) Cervical agenesis', '(752.43) Cervical agenesis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\(752.45) Vaginal agenesis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\(752.45) Vaginal agenesis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.45''', NULL,
+ '(752.45) Vaginal agenesis', '(752.45) Vaginal agenesis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\(752.47) Longitudinal vaginal septum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\(752.47) Longitudinal vaginal septum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.47''', NULL,
+ '(752.47) Longitudinal vaginal septum', '(752.47) Longitudinal vaginal septum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\(752.49) Other anomalies of cervix, vagina, and external female genitalia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of cervix, vagina, and external female genitalia, congenital (752.4)\(752.49) Other anomalies of cervix, vagina, and external female genitalia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.49''', NULL,
+ '(752.49) Other anomalies of cervix, vagina, and external female genitalia', '(752.49) Other anomalies of cervix, vagina, and external female genitalia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of fallopian tubes and broad ligaments, congenital (752.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of fallopian tubes and broad ligaments, congenital (752.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.1''', NULL,
+ 'Anomalies of fallopian tubes and broad ligaments, congenital (752.1)', 'Anomalies of fallopian tubes and broad ligaments, congenital (752.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of fallopian tubes and broad ligaments, congenital (752.1)\(752.10) Unspecified anomaly of fallopian tubes and broad ligaments\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of fallopian tubes and broad ligaments, congenital (752.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of fallopian tubes and broad ligaments, congenital (752.1)\(752.10) Unspecified anomaly of fallopian tubes and broad ligaments\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.10''', NULL,
+ '(752.10) Unspecified anomaly of fallopian tubes and broad ligaments', '(752.10) Unspecified anomaly of fallopian tubes and broad ligaments', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of fallopian tubes and broad ligaments, congenital (752.1)\(752.11) Embryonic cyst of fallopian tubes and broad ligaments\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of fallopian tubes and broad ligaments, congenital (752.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of fallopian tubes and broad ligaments, congenital (752.1)\(752.11) Embryonic cyst of fallopian tubes and broad ligaments\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.11''', NULL,
+ '(752.11) Embryonic cyst of fallopian tubes and broad ligaments', '(752.11) Embryonic cyst of fallopian tubes and broad ligaments', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of fallopian tubes and broad ligaments, congenital (752.1)\(752.19) Other anomalies of fallopian tubes and broad ligaments\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of fallopian tubes and broad ligaments, congenital (752.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Anomalies of fallopian tubes and broad ligaments, congenital (752.1)\(752.19) Other anomalies of fallopian tubes and broad ligaments\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.19''', NULL,
+ '(752.19) Other anomalies of fallopian tubes and broad ligaments', '(752.19) Other anomalies of fallopian tubes and broad ligaments', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.6''', NULL,
+ 'Hypospadias and epispadias and other penile anomalies (752.6)', 'Hypospadias and epispadias and other penile anomalies (752.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\(752.61) Hypospadias\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\(752.61) Hypospadias\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.61''', NULL,
+ '(752.61) Hypospadias', '(752.61) Hypospadias', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\(752.62) Epispadias\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\(752.62) Epispadias\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.62''', NULL,
+ '(752.62) Epispadias', '(752.62) Epispadias', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\(752.63) Congenital chordee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\(752.63) Congenital chordee\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.63''', NULL,
+ '(752.63) Congenital chordee', '(752.63) Congenital chordee', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\(752.64) Micropenis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\(752.64) Micropenis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.64''', NULL,
+ '(752.64) Micropenis', '(752.64) Micropenis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\(752.65) Hidden penis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\(752.65) Hidden penis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.65''', NULL,
+ '(752.65) Hidden penis', '(752.65) Hidden penis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\(752.69) Other penile anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Hypospadias and epispadias and other penile anomalies (752.6)\(752.69) Other penile anomalies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.69''', NULL,
+ '(752.69) Other penile anomalies', '(752.69) Other penile anomalies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.3''', NULL,
+ 'Other congenital anomalies of uterus (752.3)', 'Other congenital anomalies of uterus (752.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\(752.33) Unicornuate uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\(752.33) Unicornuate uterus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.33''', NULL,
+ '(752.33) Unicornuate uterus', '(752.33) Unicornuate uterus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\(752.34) Bicornuate uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\(752.34) Bicornuate uterus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.34''', NULL,
+ '(752.34) Bicornuate uterus', '(752.34) Bicornuate uterus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\(752.35) Septate uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\(752.35) Septate uterus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.35''', NULL,
+ '(752.35) Septate uterus', '(752.35) Septate uterus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\(752.36) Arcuate uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\(752.36) Arcuate uterus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.36''', NULL,
+ '(752.36) Arcuate uterus', '(752.36) Arcuate uterus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\(752.39) Other anomalies of uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other congenital anomalies of uterus (752.3)\(752.39) Other anomalies of uterus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.39''', NULL,
+ '(752.39) Other anomalies of uterus', '(752.39) Other anomalies of uterus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other specified congenital anomalies of genital organs (752.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other specified congenital anomalies of genital organs (752.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.8''', NULL,
+ 'Other specified congenital anomalies of genital organs (752.8)', 'Other specified congenital anomalies of genital organs (752.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other specified congenital anomalies of genital organs (752.8)\(752.81) Scrotal transposition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other specified congenital anomalies of genital organs (752.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other specified congenital anomalies of genital organs (752.8)\(752.81) Scrotal transposition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.81''', NULL,
+ '(752.81) Scrotal transposition', '(752.81) Scrotal transposition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other specified congenital anomalies of genital organs (752.8)\(752.89) Other specified anomalies of genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other specified congenital anomalies of genital organs (752.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Other specified congenital anomalies of genital organs (752.8)\(752.89) Other specified anomalies of genital organs\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.89''', NULL,
+ '(752.89) Other specified anomalies of genital organs', '(752.89) Other specified anomalies of genital organs', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Undescended and retractile testicle (752.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Undescended and retractile testicle (752.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.5''', NULL,
+ 'Undescended and retractile testicle (752.5)', 'Undescended and retractile testicle (752.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Undescended and retractile testicle (752.5)\(752.51) Undescended testis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Undescended and retractile testicle (752.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Undescended and retractile testicle (752.5)\(752.51) Undescended testis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.51''', NULL,
+ '(752.51) Undescended testis', '(752.51) Undescended testis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Undescended and retractile testicle (752.5)\(752.52) Retractile testis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Undescended and retractile testicle (752.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of genital organs (752)\Undescended and retractile testicle (752.5)\(752.52) Retractile testis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''752.52''', NULL,
+ '(752.52) Retractile testis', '(752.52) Retractile testis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''757''', NULL,
+ 'Congenital anomalies of the integument (757)', 'Congenital anomalies of the integument (757)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.0) Hereditary edema of legs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.0) Hereditary edema of legs\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''757.0''', NULL,
+ '(757.0) Hereditary edema of legs', '(757.0) Hereditary edema of legs', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.1) Ichthyosis congenita\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.1) Ichthyosis congenita\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''757.1''', NULL,
+ '(757.1) Ichthyosis congenita', '(757.1) Ichthyosis congenita', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.2) Dermatoglyphic anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.2) Dermatoglyphic anomalies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''757.2''', NULL,
+ '(757.2) Dermatoglyphic anomalies', '(757.2) Dermatoglyphic anomalies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.4) Specified anomalies of hair\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.4) Specified anomalies of hair\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''757.4''', NULL,
+ '(757.4) Specified anomalies of hair', '(757.4) Specified anomalies of hair', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.5) Specified anomalies of nails\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.5) Specified anomalies of nails\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''757.5''', NULL,
+ '(757.5) Specified anomalies of nails', '(757.5) Specified anomalies of nails', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.6) Specified congenital anomalies of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.6) Specified congenital anomalies of breast\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''757.6''', NULL,
+ '(757.6) Specified congenital anomalies of breast', '(757.6) Specified congenital anomalies of breast', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.8) Other specified anomalies of the integument\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.8) Other specified anomalies of the integument\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''757.8''', NULL,
+ '(757.8) Other specified anomalies of the integument', '(757.8) Other specified anomalies of the integument', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.9) Unspecified congenital anomaly of the integument\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\(757.9) Unspecified congenital anomaly of the integument\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''757.9''', NULL,
+ '(757.9) Unspecified congenital anomaly of the integument', '(757.9) Unspecified congenital anomaly of the integument', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\Other specified congenital anomalies of skin (757.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\Other specified congenital anomalies of skin (757.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''757.3''', NULL,
+ 'Other specified congenital anomalies of skin (757.3)', 'Other specified congenital anomalies of skin (757.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\Other specified congenital anomalies of skin (757.3)\(757.31) Congenital ectodermal dysplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\Other specified congenital anomalies of skin (757.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\Other specified congenital anomalies of skin (757.3)\(757.31) Congenital ectodermal dysplasia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''757.31''', NULL,
+ '(757.31) Congenital ectodermal dysplasia', '(757.31) Congenital ectodermal dysplasia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\Other specified congenital anomalies of skin (757.3)\(757.32) Vascular hamartomas\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\Other specified congenital anomalies of skin (757.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\Other specified congenital anomalies of skin (757.3)\(757.32) Vascular hamartomas\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''757.32''', NULL,
+ '(757.32) Vascular hamartomas', '(757.32) Vascular hamartomas', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\Other specified congenital anomalies of skin (757.3)\(757.33) Congenital pigmentary anomalies of skin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\Other specified congenital anomalies of skin (757.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\Other specified congenital anomalies of skin (757.3)\(757.33) Congenital pigmentary anomalies of skin\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''757.33''', NULL,
+ '(757.33) Congenital pigmentary anomalies of skin', '(757.33) Congenital pigmentary anomalies of skin', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\Other specified congenital anomalies of skin (757.3)\(757.39) Other specified anomalies of skin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\Other specified congenital anomalies of skin (757.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of the integument (757)\Other specified congenital anomalies of skin (757.3)\(757.39) Other specified anomalies of skin\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''757.39''', NULL,
+ '(757.39) Other specified anomalies of skin', '(757.39) Other specified anomalies of skin', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753''', NULL,
+ 'Congenital anomalies of urinary system (753)', 'Congenital anomalies of urinary system (753)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.0) Renal agenesis and dysgenesis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.0) Renal agenesis and dysgenesis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.0''', NULL,
+ '(753.0) Renal agenesis and dysgenesis', '(753.0) Renal agenesis and dysgenesis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.3) Other specified anomalies of kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.3) Other specified anomalies of kidney\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.3''', NULL,
+ '(753.3) Other specified anomalies of kidney', '(753.3) Other specified anomalies of kidney', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.4) Other specified anomalies of ureter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.4) Other specified anomalies of ureter\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.4''', NULL,
+ '(753.4) Other specified anomalies of ureter', '(753.4) Other specified anomalies of ureter', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.5) Exstrophy of urinary bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.5) Exstrophy of urinary bladder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.5''', NULL,
+ '(753.5) Exstrophy of urinary bladder', '(753.5) Exstrophy of urinary bladder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.6) Atresia and stenosis of urethra and bladder neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.6) Atresia and stenosis of urethra and bladder neck\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.6''', NULL,
+ '(753.6) Atresia and stenosis of urethra and bladder neck', '(753.6) Atresia and stenosis of urethra and bladder neck', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.7) Anomalies of urachus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.7) Anomalies of urachus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.7''', NULL,
+ '(753.7) Anomalies of urachus', '(753.7) Anomalies of urachus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.8) Other specified anomalies of bladder and urethra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.8) Other specified anomalies of bladder and urethra\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.8''', NULL,
+ '(753.8) Other specified anomalies of bladder and urethra', '(753.8) Other specified anomalies of bladder and urethra', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.9) Unspecified anomaly of urinary system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\(753.9) Unspecified anomaly of urinary system\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.9''', NULL,
+ '(753.9) Unspecified anomaly of urinary system', '(753.9) Unspecified anomaly of urinary system', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.1''', NULL,
+ 'Cystic kidney disease (753.1)', 'Cystic kidney disease (753.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.10) Cystic kidney disease, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.10) Cystic kidney disease, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.10''', NULL,
+ '(753.10) Cystic kidney disease, unspecified', '(753.10) Cystic kidney disease, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.11) Congenital single renal cyst\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.11) Congenital single renal cyst\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.11''', NULL,
+ '(753.11) Congenital single renal cyst', '(753.11) Congenital single renal cyst', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.12) Polycystic kidney, unspecified type\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.12) Polycystic kidney, unspecified type\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.12''', NULL,
+ '(753.12) Polycystic kidney, unspecified type', '(753.12) Polycystic kidney, unspecified type', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.13) Polycystic kidney, autosomal dominant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.13) Polycystic kidney, autosomal dominant\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.13''', NULL,
+ '(753.13) Polycystic kidney, autosomal dominant', '(753.13) Polycystic kidney, autosomal dominant', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.14) Polycystic kidney, autosomal recessive\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.14) Polycystic kidney, autosomal recessive\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.14''', NULL,
+ '(753.14) Polycystic kidney, autosomal recessive', '(753.14) Polycystic kidney, autosomal recessive', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.15) Renal dysplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.15) Renal dysplasia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.15''', NULL,
+ '(753.15) Renal dysplasia', '(753.15) Renal dysplasia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.16) Medullary cystic kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.16) Medullary cystic kidney\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.16''', NULL,
+ '(753.16) Medullary cystic kidney', '(753.16) Medullary cystic kidney', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.17) Medullary sponge kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.17) Medullary sponge kidney\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.17''', NULL,
+ '(753.17) Medullary sponge kidney', '(753.17) Medullary sponge kidney', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.19) Other specified cystic kidney disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Cystic kidney disease (753.1)\(753.19) Other specified cystic kidney disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.19''', NULL,
+ '(753.19) Other specified cystic kidney disease', '(753.19) Other specified cystic kidney disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.2''', NULL,
+ 'Obstructive defects of renal pelvis and ureter, congenital (753.2)', 'Obstructive defects of renal pelvis and ureter, congenital (753.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\(753.20) Unspecified obstructive defect of renal pelvis and ureter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\(753.20) Unspecified obstructive defect of renal pelvis and ureter\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.20''', NULL,
+ '(753.20) Unspecified obstructive defect of renal pelvis and ureter', '(753.20) Unspecified obstructive defect of renal pelvis and ureter', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\(753.21) Congenital obstruction of ureteropelvic junction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\(753.21) Congenital obstruction of ureteropelvic junction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.21''', NULL,
+ '(753.21) Congenital obstruction of ureteropelvic junction', '(753.21) Congenital obstruction of ureteropelvic junction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\(753.22) Congenital obstruction of ureterovesical junction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\(753.22) Congenital obstruction of ureterovesical junction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.22''', NULL,
+ '(753.22) Congenital obstruction of ureterovesical junction', '(753.22) Congenital obstruction of ureterovesical junction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\(753.23) Congenital ureterocele\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\(753.23) Congenital ureterocele\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.23''', NULL,
+ '(753.23) Congenital ureterocele', '(753.23) Congenital ureterocele', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\(753.29) Other obstructive defects of renal pelvis and ureter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Congenital anomalies of urinary system (753)\Obstructive defects of renal pelvis and ureter, congenital (753.2)\(753.29) Other obstructive defects of renal pelvis and ureter\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''753.29''', NULL,
+ '(753.29) Other obstructive defects of renal pelvis and ureter', '(753.29) Other obstructive defects of renal pelvis and ureter', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''759''', NULL,
+ 'Other and unspecified congenital anomalies (759)', 'Other and unspecified congenital anomalies (759)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.0) Anomalies of spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.0) Anomalies of spleen\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''759.0''', NULL,
+ '(759.0) Anomalies of spleen', '(759.0) Anomalies of spleen', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.1) Anomalies of adrenal gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.1) Anomalies of adrenal gland\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''759.1''', NULL,
+ '(759.1) Anomalies of adrenal gland', '(759.1) Anomalies of adrenal gland', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.2) Anomalies of other endocrine glands\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.2) Anomalies of other endocrine glands\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''759.2''', NULL,
+ '(759.2) Anomalies of other endocrine glands', '(759.2) Anomalies of other endocrine glands', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.3) Situs inversus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.3) Situs inversus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''759.3''', NULL,
+ '(759.3) Situs inversus', '(759.3) Situs inversus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.4) Conjoined twins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.4) Conjoined twins\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''759.4''', NULL,
+ '(759.4) Conjoined twins', '(759.4) Conjoined twins', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.5) Tuberous sclerosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.5) Tuberous sclerosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''759.5''', NULL,
+ '(759.5) Tuberous sclerosis', '(759.5) Tuberous sclerosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.6) Other hamartoses, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.6) Other hamartoses, not elsewhere classified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''759.6''', NULL,
+ '(759.6) Other hamartoses, not elsewhere classified', '(759.6) Other hamartoses, not elsewhere classified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.7) Multiple congenital anomalies, so described\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.7) Multiple congenital anomalies, so described\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''759.7''', NULL,
+ '(759.7) Multiple congenital anomalies, so described', '(759.7) Multiple congenital anomalies, so described', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.9) Congenital anomaly, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\(759.9) Congenital anomaly, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''759.9''', NULL,
+ '(759.9) Congenital anomaly, unspecified', '(759.9) Congenital anomaly, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\Other specified anomalies (759.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\Other specified anomalies (759.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''759.8''', NULL,
+ 'Other specified anomalies (759.8)', 'Other specified anomalies (759.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\Other specified anomalies (759.8)\(759.81) Prader-Willi syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\Other specified anomalies (759.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\Other specified anomalies (759.8)\(759.81) Prader-Willi syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''759.81''', NULL,
+ '(759.81) Prader-Willi syndrome', '(759.81) Prader-Willi syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\Other specified anomalies (759.8)\(759.82) Marfan syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\Other specified anomalies (759.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\Other specified anomalies (759.8)\(759.82) Marfan syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''759.82''', NULL,
+ '(759.82) Marfan syndrome', '(759.82) Marfan syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\Other specified anomalies (759.8)\(759.83) Fragile X syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\Other specified anomalies (759.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\Other specified anomalies (759.8)\(759.83) Fragile X syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''759.83''', NULL,
+ '(759.83) Fragile X syndrome', '(759.83) Fragile X syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\Other specified anomalies (759.8)\(759.89) Other specified congenital anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\Other specified anomalies (759.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other and unspecified congenital anomalies (759)\Other specified anomalies (759.8)\(759.89) Other specified congenital anomalies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''759.89''', NULL,
+ '(759.89) Other specified congenital anomalies', '(759.89) Other specified congenital anomalies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747''', NULL,
+ 'Other congenital anomalies of circulatory system (747)', 'Other congenital anomalies of circulatory system (747)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\(747.0) Patent ductus arteriosus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\(747.0) Patent ductus arteriosus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.0''', NULL,
+ '(747.0) Patent ductus arteriosus', '(747.0) Patent ductus arteriosus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\(747.5) Absence or hypoplasia of umbilical artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\(747.5) Absence or hypoplasia of umbilical artery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.5''', NULL,
+ '(747.5) Absence or hypoplasia of umbilical artery', '(747.5) Absence or hypoplasia of umbilical artery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\(747.9) Unspecified anomaly of circulatory system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\(747.9) Unspecified anomaly of circulatory system\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.9''', NULL,
+ '(747.9) Unspecified anomaly of circulatory system', '(747.9) Unspecified anomaly of circulatory system', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of great veins, congenital (747.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of great veins, congenital (747.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.4''', NULL,
+ 'Anomalies of great veins, congenital (747.4)', 'Anomalies of great veins, congenital (747.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of great veins, congenital (747.4)\(747.40) Anomaly of great veins, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of great veins, congenital (747.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of great veins, congenital (747.4)\(747.40) Anomaly of great veins, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.40''', NULL,
+ '(747.40) Anomaly of great veins, unspecified', '(747.40) Anomaly of great veins, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of great veins, congenital (747.4)\(747.41) Total anomalous pulmonary venous connection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of great veins, congenital (747.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of great veins, congenital (747.4)\(747.41) Total anomalous pulmonary venous connection\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.41''', NULL,
+ '(747.41) Total anomalous pulmonary venous connection', '(747.41) Total anomalous pulmonary venous connection', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of great veins, congenital (747.4)\(747.42) Partial anomalous pulmonary venous connection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of great veins, congenital (747.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of great veins, congenital (747.4)\(747.42) Partial anomalous pulmonary venous connection\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.42''', NULL,
+ '(747.42) Partial anomalous pulmonary venous connection', '(747.42) Partial anomalous pulmonary venous connection', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of great veins, congenital (747.4)\(747.49) Other anomalies of great veins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of great veins, congenital (747.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of great veins, congenital (747.4)\(747.49) Other anomalies of great veins\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.49''', NULL,
+ '(747.49) Other anomalies of great veins', '(747.49) Other anomalies of great veins', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of pulmonary artery, congenital (747.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of pulmonary artery, congenital (747.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.3''', NULL,
+ 'Anomalies of pulmonary artery, congenital (747.3)', 'Anomalies of pulmonary artery, congenital (747.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of pulmonary artery, congenital (747.3)\(747.31) Pulmonary artery coarctation and atresia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of pulmonary artery, congenital (747.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of pulmonary artery, congenital (747.3)\(747.31) Pulmonary artery coarctation and atresia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.31''', NULL,
+ '(747.31) Pulmonary artery coarctation and atresia', '(747.31) Pulmonary artery coarctation and atresia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of pulmonary artery, congenital (747.3)\(747.32) Pulmonary arteriovenous malformation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of pulmonary artery, congenital (747.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of pulmonary artery, congenital (747.3)\(747.32) Pulmonary arteriovenous malformation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.32''', NULL,
+ '(747.32) Pulmonary arteriovenous malformation', '(747.32) Pulmonary arteriovenous malformation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of pulmonary artery, congenital (747.3)\(747.39) Other anomalies of pulmonary artery and pulmonary circulation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of pulmonary artery, congenital (747.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Anomalies of pulmonary artery, congenital (747.3)\(747.39) Other anomalies of pulmonary artery and pulmonary circulation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.39''', NULL,
+ '(747.39) Other anomalies of pulmonary artery and pulmonary circulation', '(747.39) Other anomalies of pulmonary artery and pulmonary circulation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Coarctation of aorta (747.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Coarctation of aorta (747.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.1''', NULL,
+ 'Coarctation of aorta (747.1)', 'Coarctation of aorta (747.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Coarctation of aorta (747.1)\(747.10) Coarctation of aorta (preductal) (postductal)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Coarctation of aorta (747.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Coarctation of aorta (747.1)\(747.10) Coarctation of aorta (preductal) (postductal)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.10) Coarctation of aorta (preductal) (postductal''', NULL,
+ '(747.10) Coarctation of aorta (preductal) (postductal)', '(747.10) Coarctation of aorta (preductal) (postductal)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Coarctation of aorta (747.1)\(747.11) Interruption of aortic arch\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Coarctation of aorta (747.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Coarctation of aorta (747.1)\(747.11) Interruption of aortic arch\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.11''', NULL,
+ '(747.11) Interruption of aortic arch', '(747.11) Interruption of aortic arch', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of aorta (747.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of aorta (747.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.2''', NULL,
+ 'Other congenital anomalies of aorta (747.2)', 'Other congenital anomalies of aorta (747.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of aorta (747.2)\(747.20) Anomaly of aorta, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of aorta (747.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of aorta (747.2)\(747.20) Anomaly of aorta, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.20''', NULL,
+ '(747.20) Anomaly of aorta, unspecified', '(747.20) Anomaly of aorta, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of aorta (747.2)\(747.21) Anomalies of aortic arch\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of aorta (747.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of aorta (747.2)\(747.21) Anomalies of aortic arch\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.21''', NULL,
+ '(747.21) Anomalies of aortic arch', '(747.21) Anomalies of aortic arch', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of aorta (747.2)\(747.22) Atresia and stenosis of aorta\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of aorta (747.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of aorta (747.2)\(747.22) Atresia and stenosis of aorta\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.22''', NULL,
+ '(747.22) Atresia and stenosis of aorta', '(747.22) Atresia and stenosis of aorta', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of aorta (747.2)\(747.29) Other anomalies of aorta\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of aorta (747.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of aorta (747.2)\(747.29) Other anomalies of aorta\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.29''', NULL,
+ '(747.29) Other anomalies of aorta', '(747.29) Other anomalies of aorta', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.6''', NULL,
+ 'Other congenital anomalies of peripheral vascular system (747.6)', 'Other congenital anomalies of peripheral vascular system (747.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\(747.60) Anomaly of the peripheral vascular system, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\(747.60) Anomaly of the peripheral vascular system, unspecified site\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.60''', NULL,
+ '(747.60) Anomaly of the peripheral vascular system, unspecified site', '(747.60) Anomaly of the peripheral vascular system, unspecified site', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\(747.61) Gastrointestinal vessel anomaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\(747.61) Gastrointestinal vessel anomaly\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.61''', NULL,
+ '(747.61) Gastrointestinal vessel anomaly', '(747.61) Gastrointestinal vessel anomaly', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\(747.62) Renal vessel anomaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\(747.62) Renal vessel anomaly\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.62''', NULL,
+ '(747.62) Renal vessel anomaly', '(747.62) Renal vessel anomaly', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\(747.63) Upper limb vessel anomaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\(747.63) Upper limb vessel anomaly\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.63''', NULL,
+ '(747.63) Upper limb vessel anomaly', '(747.63) Upper limb vessel anomaly', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\(747.64) Lower limb vessel anomaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\(747.64) Lower limb vessel anomaly\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.64''', NULL,
+ '(747.64) Lower limb vessel anomaly', '(747.64) Lower limb vessel anomaly', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\(747.69) Anomalies of other specified sites of peripheral vascular system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other congenital anomalies of peripheral vascular system (747.6)\(747.69) Anomalies of other specified sites of peripheral vascular system\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.69''', NULL,
+ '(747.69) Anomalies of other specified sites of peripheral vascular system', '(747.69) Anomalies of other specified sites of peripheral vascular system', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other specified congenital anomalies of circulatory system (747.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other specified congenital anomalies of circulatory system (747.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.8''', NULL,
+ 'Other specified congenital anomalies of circulatory system (747.8)', 'Other specified congenital anomalies of circulatory system (747.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other specified congenital anomalies of circulatory system (747.8)\(747.81) Anomalies of cerebrovascular system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other specified congenital anomalies of circulatory system (747.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other specified congenital anomalies of circulatory system (747.8)\(747.81) Anomalies of cerebrovascular system\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.81''', NULL,
+ '(747.81) Anomalies of cerebrovascular system', '(747.81) Anomalies of cerebrovascular system', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other specified congenital anomalies of circulatory system (747.8)\(747.82) Spinal vessel anomaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other specified congenital anomalies of circulatory system (747.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other specified congenital anomalies of circulatory system (747.8)\(747.82) Spinal vessel anomaly\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.82''', NULL,
+ '(747.82) Spinal vessel anomaly', '(747.82) Spinal vessel anomaly', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other specified congenital anomalies of circulatory system (747.8)\(747.83) Persistent fetal circulation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other specified congenital anomalies of circulatory system (747.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other specified congenital anomalies of circulatory system (747.8)\(747.83) Persistent fetal circulation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.83''', NULL,
+ '(747.83) Persistent fetal circulation', '(747.83) Persistent fetal circulation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other specified congenital anomalies of circulatory system (747.8)\(747.89) Other specified anomalies of circulatory system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other specified congenital anomalies of circulatory system (747.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of circulatory system (747)\Other specified congenital anomalies of circulatory system (747.8)\(747.89) Other specified anomalies of circulatory system\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''747.89''', NULL,
+ '(747.89) Other specified anomalies of circulatory system', '(747.89) Other specified anomalies of circulatory system', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''751''', NULL,
+ 'Other congenital anomalies of digestive system (751)', 'Other congenital anomalies of digestive system (751)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.0) Meckel''s diverticulum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.0) Meckel''s diverticulum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''751.0''', NULL,
+ '(751.0) Meckel''s diverticulum', '(751.0) Meckel''s diverticulum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.1) Atresia and stenosis of small intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.1) Atresia and stenosis of small intestine\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''751.1''', NULL,
+ '(751.1) Atresia and stenosis of small intestine', '(751.1) Atresia and stenosis of small intestine', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.2) Atresia and stenosis of large intestine, rectum, and anal canal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.2) Atresia and stenosis of large intestine, rectum, and anal canal\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''751.2''', NULL,
+ '(751.2) Atresia and stenosis of large intestine, rectum, and anal canal', '(751.2) Atresia and stenosis of large intestine, rectum, and anal canal', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.3) Hirschsprung''s disease and other congenital functional disorders of colon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.3) Hirschsprung''s disease and other congenital functional disorders of colon\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''751.3''', NULL,
+ '(751.3) Hirschsprung''s disease and other congenital functional disorders of colon', '(751.3) Hirschsprung''s disease and other congenital functional disorders of colon', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.4) Anomalies of intestinal fixation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.4) Anomalies of intestinal fixation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''751.4''', NULL,
+ '(751.4) Anomalies of intestinal fixation', '(751.4) Anomalies of intestinal fixation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.5) Other anomalies of intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.5) Other anomalies of intestine\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''751.5''', NULL,
+ '(751.5) Other anomalies of intestine', '(751.5) Other anomalies of intestine', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.7) Anomalies of pancreas\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.7) Anomalies of pancreas\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''751.7''', NULL,
+ '(751.7) Anomalies of pancreas', '(751.7) Anomalies of pancreas', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.8) Other specified anomalies of digestive system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.8) Other specified anomalies of digestive system\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''751.8''', NULL,
+ '(751.8) Other specified anomalies of digestive system', '(751.8) Other specified anomalies of digestive system', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.9) Unspecified anomaly of digestive system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\(751.9) Unspecified anomaly of digestive system\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''751.9''', NULL,
+ '(751.9) Unspecified anomaly of digestive system', '(751.9) Unspecified anomaly of digestive system', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\Anomalies of gallbladder, bile ducts, and liver (751.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\Anomalies of gallbladder, bile ducts, and liver (751.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''751.6''', NULL,
+ 'Anomalies of gallbladder, bile ducts, and liver (751.6)', 'Anomalies of gallbladder, bile ducts, and liver (751.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\Anomalies of gallbladder, bile ducts, and liver (751.6)\(751.60) Unspecified anomaly of gallbladder, bile ducts, and liver\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\Anomalies of gallbladder, bile ducts, and liver (751.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\Anomalies of gallbladder, bile ducts, and liver (751.6)\(751.60) Unspecified anomaly of gallbladder, bile ducts, and liver\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''751.60''', NULL,
+ '(751.60) Unspecified anomaly of gallbladder, bile ducts, and liver', '(751.60) Unspecified anomaly of gallbladder, bile ducts, and liver', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\Anomalies of gallbladder, bile ducts, and liver (751.6)\(751.61) Biliary atresia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\Anomalies of gallbladder, bile ducts, and liver (751.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\Anomalies of gallbladder, bile ducts, and liver (751.6)\(751.61) Biliary atresia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''751.61''', NULL,
+ '(751.61) Biliary atresia', '(751.61) Biliary atresia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\Anomalies of gallbladder, bile ducts, and liver (751.6)\(751.62) Congenital cystic disease of liver\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\Anomalies of gallbladder, bile ducts, and liver (751.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\Anomalies of gallbladder, bile ducts, and liver (751.6)\(751.62) Congenital cystic disease of liver\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''751.62''', NULL,
+ '(751.62) Congenital cystic disease of liver', '(751.62) Congenital cystic disease of liver', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\Anomalies of gallbladder, bile ducts, and liver (751.6)\(751.69) Other anomalies of gallbladder, bile ducts, and liver\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\Anomalies of gallbladder, bile ducts, and liver (751.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of digestive system (751)\Anomalies of gallbladder, bile ducts, and liver (751.6)\(751.69) Other anomalies of gallbladder, bile ducts, and liver\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''751.69''', NULL,
+ '(751.69) Other anomalies of gallbladder, bile ducts, and liver', '(751.69) Other anomalies of gallbladder, bile ducts, and liver', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746''', NULL,
+ 'Other congenital anomalies of heart (746)', 'Other congenital anomalies of heart (746)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.1) Tricuspid atresia and stenosis, congenital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.1) Tricuspid atresia and stenosis, congenital\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.1''', NULL,
+ '(746.1) Tricuspid atresia and stenosis, congenital', '(746.1) Tricuspid atresia and stenosis, congenital', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.2) Ebstein''s anomaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.2) Ebstein''s anomaly\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.2''', NULL,
+ '(746.2) Ebstein''s anomaly', '(746.2) Ebstein''s anomaly', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.3) Congenital stenosis of aortic valve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.3) Congenital stenosis of aortic valve\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.3''', NULL,
+ '(746.3) Congenital stenosis of aortic valve', '(746.3) Congenital stenosis of aortic valve', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.4) Congenital insufficiency of aortic valve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.4) Congenital insufficiency of aortic valve\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.4''', NULL,
+ '(746.4) Congenital insufficiency of aortic valve', '(746.4) Congenital insufficiency of aortic valve', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.5) Congenital mitral stenosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.5) Congenital mitral stenosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.5''', NULL,
+ '(746.5) Congenital mitral stenosis', '(746.5) Congenital mitral stenosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.6) Congenital mitral insufficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.6) Congenital mitral insufficiency\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.6''', NULL,
+ '(746.6) Congenital mitral insufficiency', '(746.6) Congenital mitral insufficiency', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.7) Hypoplastic left heart syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.7) Hypoplastic left heart syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.7''', NULL,
+ '(746.7) Hypoplastic left heart syndrome', '(746.7) Hypoplastic left heart syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.9) Unspecified congenital anomaly of heart\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\(746.9) Unspecified congenital anomaly of heart\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.9''', NULL,
+ '(746.9) Unspecified congenital anomaly of heart', '(746.9) Unspecified congenital anomaly of heart', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Anomalies of pulmonary valve, congenital (746.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Anomalies of pulmonary valve, congenital (746.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.0''', NULL,
+ 'Anomalies of pulmonary valve, congenital (746.0)', 'Anomalies of pulmonary valve, congenital (746.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Anomalies of pulmonary valve, congenital (746.0)\(746.00) Congenital pulmonary valve anomaly, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Anomalies of pulmonary valve, congenital (746.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Anomalies of pulmonary valve, congenital (746.0)\(746.00) Congenital pulmonary valve anomaly, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.00''', NULL,
+ '(746.00) Congenital pulmonary valve anomaly, unspecified', '(746.00) Congenital pulmonary valve anomaly, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Anomalies of pulmonary valve, congenital (746.0)\(746.01) Atresia of pulmonary valve, congenital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Anomalies of pulmonary valve, congenital (746.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Anomalies of pulmonary valve, congenital (746.0)\(746.01) Atresia of pulmonary valve, congenital\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.01''', NULL,
+ '(746.01) Atresia of pulmonary valve, congenital', '(746.01) Atresia of pulmonary valve, congenital', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Anomalies of pulmonary valve, congenital (746.0)\(746.02) Stenosis of pulmonary valve, congenital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Anomalies of pulmonary valve, congenital (746.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Anomalies of pulmonary valve, congenital (746.0)\(746.02) Stenosis of pulmonary valve, congenital\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.02''', NULL,
+ '(746.02) Stenosis of pulmonary valve, congenital', '(746.02) Stenosis of pulmonary valve, congenital', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Anomalies of pulmonary valve, congenital (746.0)\(746.09) Other congenital anomalies of pulmonary valve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Anomalies of pulmonary valve, congenital (746.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Anomalies of pulmonary valve, congenital (746.0)\(746.09) Other congenital anomalies of pulmonary valve\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.09''', NULL,
+ '(746.09) Other congenital anomalies of pulmonary valve', '(746.09) Other congenital anomalies of pulmonary valve', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.8''', NULL,
+ 'Other specified congenital anomalies of heart (746.8)', 'Other specified congenital anomalies of heart (746.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.81) Subaortic stenosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.81) Subaortic stenosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.81''', NULL,
+ '(746.81) Subaortic stenosis', '(746.81) Subaortic stenosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.82) Cor triatriatum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.82) Cor triatriatum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.82''', NULL,
+ '(746.82) Cor triatriatum', '(746.82) Cor triatriatum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.83) Infundibular pulmonic stenosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.83) Infundibular pulmonic stenosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.83''', NULL,
+ '(746.83) Infundibular pulmonic stenosis', '(746.83) Infundibular pulmonic stenosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.84) Obstructive anomalies of heart, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.84) Obstructive anomalies of heart, not elsewhere classified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.84''', NULL,
+ '(746.84) Obstructive anomalies of heart, not elsewhere classified', '(746.84) Obstructive anomalies of heart, not elsewhere classified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.85) Coronary artery anomaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.85) Coronary artery anomaly\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.85''', NULL,
+ '(746.85) Coronary artery anomaly', '(746.85) Coronary artery anomaly', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.86) Congenital heart block\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.86) Congenital heart block\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.86''', NULL,
+ '(746.86) Congenital heart block', '(746.86) Congenital heart block', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.87) Malposition of heart and cardiac apex\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.87) Malposition of heart and cardiac apex\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.87''', NULL,
+ '(746.87) Malposition of heart and cardiac apex', '(746.87) Malposition of heart and cardiac apex', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.89) Other specified congenital anomalies of heart\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of heart (746)\Other specified congenital anomalies of heart (746.8)\(746.89) Other specified congenital anomalies of heart\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''746.89''', NULL,
+ '(746.89) Other specified congenital anomalies of heart', '(746.89) Other specified congenital anomalies of heart', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755''', NULL,
+ 'Other congenital anomalies of limbs (755)', 'Other congenital anomalies of limbs (755)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\(755.4) Reduction deformities, unspecified limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\(755.4) Reduction deformities, unspecified limb\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.4''', NULL,
+ '(755.4) Reduction deformities, unspecified limb', '(755.4) Reduction deformities, unspecified limb', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\(755.8) Other specified anomalies of unspecified limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\(755.8) Other specified anomalies of unspecified limb\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.8''', NULL,
+ '(755.8) Other specified anomalies of unspecified limb', '(755.8) Other specified anomalies of unspecified limb', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\(755.9) Unspecified anomaly of unspecified limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\(755.9) Unspecified anomaly of unspecified limb\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.9''', NULL,
+ '(755.9) Unspecified anomaly of unspecified limb', '(755.9) Unspecified anomaly of unspecified limb', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.6''', NULL,
+ 'Other congenital anomalies of lower limb, including pelvic girdle (755.6)', 'Other congenital anomalies of lower limb, including pelvic girdle (755.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.60) Unspecified anomaly of lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.60) Unspecified anomaly of lower limb\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.60''', NULL,
+ '(755.60) Unspecified anomaly of lower limb', '(755.60) Unspecified anomaly of lower limb', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.61) Coxa valga, congenital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.61) Coxa valga, congenital\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.61''', NULL,
+ '(755.61) Coxa valga, congenital', '(755.61) Coxa valga, congenital', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.62) Coxa vara, congenital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.62) Coxa vara, congenital\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.62''', NULL,
+ '(755.62) Coxa vara, congenital', '(755.62) Coxa vara, congenital', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.63) Other congenital deformity of hip (joint)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.63) Other congenital deformity of hip (joint)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.63) Other congenital deformity of hip (joint''', NULL,
+ '(755.63) Other congenital deformity of hip (joint)', '(755.63) Other congenital deformity of hip (joint)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.64) Congenital deformity of knee (joint)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.64) Congenital deformity of knee (joint)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.64) Congenital deformity of knee (joint''', NULL,
+ '(755.64) Congenital deformity of knee (joint)', '(755.64) Congenital deformity of knee (joint)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.65) Macrodactylia of toes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.65) Macrodactylia of toes\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.65''', NULL,
+ '(755.65) Macrodactylia of toes', '(755.65) Macrodactylia of toes', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.66) Other anomalies of toes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.66) Other anomalies of toes\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.66''', NULL,
+ '(755.66) Other anomalies of toes', '(755.66) Other anomalies of toes', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.67) Anomalies of foot, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.67) Anomalies of foot, not elsewhere classified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.67''', NULL,
+ '(755.67) Anomalies of foot, not elsewhere classified', '(755.67) Anomalies of foot, not elsewhere classified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.69) Other anomalies of lower limb, including pelvic girdle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of lower limb, including pelvic girdle (755.6)\(755.69) Other anomalies of lower limb, including pelvic girdle\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.69''', NULL,
+ '(755.69) Other anomalies of lower limb, including pelvic girdle', '(755.69) Other anomalies of lower limb, including pelvic girdle', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.5''', NULL,
+ 'Other congenital anomalies of upper limb, including shoulder girdle (755.5)', 'Other congenital anomalies of upper limb, including shoulder girdle (755.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.50) Unspecified anomaly of upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.50) Unspecified anomaly of upper limb\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.50''', NULL,
+ '(755.50) Unspecified anomaly of upper limb', '(755.50) Unspecified anomaly of upper limb', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.51) Congenital deformity of clavicle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.51) Congenital deformity of clavicle\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.51''', NULL,
+ '(755.51) Congenital deformity of clavicle', '(755.51) Congenital deformity of clavicle', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.52) Congenital elevation of scapula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.52) Congenital elevation of scapula\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.52''', NULL,
+ '(755.52) Congenital elevation of scapula', '(755.52) Congenital elevation of scapula', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.53) Radioulnar synostosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.53) Radioulnar synostosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.53''', NULL,
+ '(755.53) Radioulnar synostosis', '(755.53) Radioulnar synostosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.54) Madelung''s deformity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.54) Madelung''s deformity\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.54''', NULL,
+ '(755.54) Madelung''s deformity', '(755.54) Madelung''s deformity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.55) Acrocephalosyndactyly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.55) Acrocephalosyndactyly\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.55''', NULL,
+ '(755.55) Acrocephalosyndactyly', '(755.55) Acrocephalosyndactyly', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.56) Accessory carpal bones\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.56) Accessory carpal bones\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.56''', NULL,
+ '(755.56) Accessory carpal bones', '(755.56) Accessory carpal bones', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.57) Macrodactylia (fingers)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.57) Macrodactylia (fingers)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.57) Macrodactylia (fingers''', NULL,
+ '(755.57) Macrodactylia (fingers)', '(755.57) Macrodactylia (fingers)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.58) Cleft hand, congenital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.58) Cleft hand, congenital\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.58''', NULL,
+ '(755.58) Cleft hand, congenital', '(755.58) Cleft hand, congenital', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.59) Other anomalies of upper limb, including shoulder girdle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Other congenital anomalies of upper limb, including shoulder girdle (755.5)\(755.59) Other anomalies of upper limb, including shoulder girdle\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.59''', NULL,
+ '(755.59) Other anomalies of upper limb, including shoulder girdle', '(755.59) Other anomalies of upper limb, including shoulder girdle', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Polydactyly (755.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Polydactyly (755.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.0''', NULL,
+ 'Polydactyly (755.0)', 'Polydactyly (755.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Polydactyly (755.0)\(755.00) Polydactyly, unspecified digits\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Polydactyly (755.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Polydactyly (755.0)\(755.00) Polydactyly, unspecified digits\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.00''', NULL,
+ '(755.00) Polydactyly, unspecified digits', '(755.00) Polydactyly, unspecified digits', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Polydactyly (755.0)\(755.01) Polydactyly of fingers\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Polydactyly (755.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Polydactyly (755.0)\(755.01) Polydactyly of fingers\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.01''', NULL,
+ '(755.01) Polydactyly of fingers', '(755.01) Polydactyly of fingers', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Polydactyly (755.0)\(755.02) Polydactyly of toes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Polydactyly (755.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Polydactyly (755.0)\(755.02) Polydactyly of toes\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.02''', NULL,
+ '(755.02) Polydactyly of toes', '(755.02) Polydactyly of toes', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.3''', NULL,
+ 'Reduction deformities of lower limb, congenital (755.3)', 'Reduction deformities of lower limb, congenital (755.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.30) Unspecified reduction deformity of lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.30) Unspecified reduction deformity of lower limb\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.30''', NULL,
+ '(755.30) Unspecified reduction deformity of lower limb', '(755.30) Unspecified reduction deformity of lower limb', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.31) Transverse deficiency of lower limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.31) Transverse deficiency of lower limb\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.31''', NULL,
+ '(755.31) Transverse deficiency of lower limb', '(755.31) Transverse deficiency of lower limb', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.32) Longitudinal deficiency of lower limb, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.32) Longitudinal deficiency of lower limb, not elsewhere classified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.32''', NULL,
+ '(755.32) Longitudinal deficiency of lower limb, not elsewhere classified', '(755.32) Longitudinal deficiency of lower limb, not elsewhere classified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.33) Longitudinal deficiency, combined, involving femur, tibia, and fibula (complete or incomplete)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.33) Longitudinal deficiency, combined, involving femur, tibia, and fibula (complete or incomplete)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.33) Longitudinal deficiency, combined, involving femur, tibia, and fibula (complete or incomplete''', NULL,
+ '(755.33) Longitudinal deficiency, combined, involving femur, tibia, and fibula (complete or incomplete)', '(755.33) Longitudinal deficiency, combined, involving femur, tibia, and fibula (complete or incomplete)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.34) Longitudinal deficiency, femoral, complete or partial (with or without distal deficiencies, incomplete)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.34) Longitudinal deficiency, femoral, complete or partial (with or without distal deficiencies, incomplete)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.34) Longitudinal deficiency, femoral, complete or partial (with or without distal deficiencies, incomplete''', NULL,
+ '(755.34) Longitudinal deficiency, femoral, complete or partial (with or without distal deficiencies, incomplete)', '(755.34) Longitudinal deficiency, femoral, complete or partial (with or without distal deficiencies, incomplete)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.35) Longitudinal deficiency, tibiofibular, complete or partial (with or without distal deficiencies, incomplete)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.35) Longitudinal deficiency, tibiofibular, complete or partial (with or without distal deficiencies, incomplete)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.35) Longitudinal deficiency, tibiofibular, complete or partial (with or without distal deficiencies, incomplete''', NULL,
+ '(755.35) Longitudinal deficiency, tibiofibular, complete or partial (with or without distal deficiencies, incomplete)', '(755.35) Longitudinal deficiency, tibiofibular, complete or partial (with or without distal deficiencies, incomplete)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.36) Longitudinal deficiency, tibia, complete or partial (with or without distal deficiencies, incomplete)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.36) Longitudinal deficiency, tibia, complete or partial (with or without distal deficiencies, incomplete)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.36) Longitudinal deficiency, tibia, complete or partial (with or without distal deficiencies, incomplete''', NULL,
+ '(755.36) Longitudinal deficiency, tibia, complete or partial (with or without distal deficiencies, incomplete)', '(755.36) Longitudinal deficiency, tibia, complete or partial (with or without distal deficiencies, incomplete)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.37) Longitudinal deficiency, fibular, complete or partial (with or without distal deficiencies, incomplete)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.37) Longitudinal deficiency, fibular, complete or partial (with or without distal deficiencies, incomplete)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.37) Longitudinal deficiency, fibular, complete or partial (with or without distal deficiencies, incomplete''', NULL,
+ '(755.37) Longitudinal deficiency, fibular, complete or partial (with or without distal deficiencies, incomplete)', '(755.37) Longitudinal deficiency, fibular, complete or partial (with or without distal deficiencies, incomplete)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.38) Longitudinal deficiency, tarsals or metatarsals, complete or partial (with or without incomplete phalangeal deficiency)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.38) Longitudinal deficiency, tarsals or metatarsals, complete or partial (with or without incomplete phalangeal deficiency)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.38) Longitudinal deficiency, tarsals or metatarsals, complete or partial (with or without incomplete phalangeal deficiency''', NULL,
+ '(755.38) Longitudinal deficiency, tarsals or metatarsals, complete or partial (with or without incomplete phalangeal deficiency)', '(755.38) Longitudinal deficiency, tarsals or metatarsals, complete or partial (with or without incomplete phalangeal deficiency)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.39) Longitudinal deficiency, phalanges, complete or partial\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of lower limb, congenital (755.3)\(755.39) Longitudinal deficiency, phalanges, complete or partial\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.39''', NULL,
+ '(755.39) Longitudinal deficiency, phalanges, complete or partial', '(755.39) Longitudinal deficiency, phalanges, complete or partial', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.2''', NULL,
+ 'Reduction deformities of upper limb, congenital (755.2)', 'Reduction deformities of upper limb, congenital (755.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.20) Unspecified reduction deformity of upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.20) Unspecified reduction deformity of upper limb\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.20''', NULL,
+ '(755.20) Unspecified reduction deformity of upper limb', '(755.20) Unspecified reduction deformity of upper limb', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.21) Transverse deficiency of upper limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.21) Transverse deficiency of upper limb\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.21''', NULL,
+ '(755.21) Transverse deficiency of upper limb', '(755.21) Transverse deficiency of upper limb', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.22) Longitudinal deficiency of upper limb, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.22) Longitudinal deficiency of upper limb, not elsewhere classified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.22''', NULL,
+ '(755.22) Longitudinal deficiency of upper limb, not elsewhere classified', '(755.22) Longitudinal deficiency of upper limb, not elsewhere classified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.23) Longitudinal deficiency, combined, involving humerus, radius, and ulna (complete or incomplete)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.23) Longitudinal deficiency, combined, involving humerus, radius, and ulna (complete or incomplete)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.23) Longitudinal deficiency, combined, involving humerus, radius, and ulna (complete or incomplete''', NULL,
+ '(755.23) Longitudinal deficiency, combined, involving humerus, radius, and ulna (complete or incomplete)', '(755.23) Longitudinal deficiency, combined, involving humerus, radius, and ulna (complete or incomplete)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.24) Longitudinal deficiency, humeral, complete or partial (with or without distal deficiencies, incomplete)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.24) Longitudinal deficiency, humeral, complete or partial (with or without distal deficiencies, incomplete)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.24) Longitudinal deficiency, humeral, complete or partial (with or without distal deficiencies, incomplete''', NULL,
+ '(755.24) Longitudinal deficiency, humeral, complete or partial (with or without distal deficiencies, incomplete)', '(755.24) Longitudinal deficiency, humeral, complete or partial (with or without distal deficiencies, incomplete)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.25) Longitudinal deficiency, radioulnar, complete or partial (with or without distal deficiencies, incomplete)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.25) Longitudinal deficiency, radioulnar, complete or partial (with or without distal deficiencies, incomplete)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.25) Longitudinal deficiency, radioulnar, complete or partial (with or without distal deficiencies, incomplete''', NULL,
+ '(755.25) Longitudinal deficiency, radioulnar, complete or partial (with or without distal deficiencies, incomplete)', '(755.25) Longitudinal deficiency, radioulnar, complete or partial (with or without distal deficiencies, incomplete)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.26) Longitudinal deficiency, radial, complete or partial (with or without distal deficiencies, incomplete)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.26) Longitudinal deficiency, radial, complete or partial (with or without distal deficiencies, incomplete)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.26) Longitudinal deficiency, radial, complete or partial (with or without distal deficiencies, incomplete''', NULL,
+ '(755.26) Longitudinal deficiency, radial, complete or partial (with or without distal deficiencies, incomplete)', '(755.26) Longitudinal deficiency, radial, complete or partial (with or without distal deficiencies, incomplete)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.27) Longitudinal deficiency, ulnar, complete or partial (with or without distal deficiencies, incomplete)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.27) Longitudinal deficiency, ulnar, complete or partial (with or without distal deficiencies, incomplete)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.27) Longitudinal deficiency, ulnar, complete or partial (with or without distal deficiencies, incomplete''', NULL,
+ '(755.27) Longitudinal deficiency, ulnar, complete or partial (with or without distal deficiencies, incomplete)', '(755.27) Longitudinal deficiency, ulnar, complete or partial (with or without distal deficiencies, incomplete)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.28) Longitudinal deficiency, carpals or metacarpals, complete or partial (with or without incomplete phalangeal deficiency)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.28) Longitudinal deficiency, carpals or metacarpals, complete or partial (with or without incomplete phalangeal deficiency)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.28) Longitudinal deficiency, carpals or metacarpals, complete or partial (with or without incomplete phalangeal deficiency''', NULL,
+ '(755.28) Longitudinal deficiency, carpals or metacarpals, complete or partial (with or without incomplete phalangeal deficiency)', '(755.28) Longitudinal deficiency, carpals or metacarpals, complete or partial (with or without incomplete phalangeal deficiency)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.29) Longitudinal deficiency, phalanges, complete or partial\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Reduction deformities of upper limb, congenital (755.2)\(755.29) Longitudinal deficiency, phalanges, complete or partial\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.29''', NULL,
+ '(755.29) Longitudinal deficiency, phalanges, complete or partial', '(755.29) Longitudinal deficiency, phalanges, complete or partial', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.1''', NULL,
+ 'Syndactyly (755.1)', 'Syndactyly (755.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\(755.10) Syndactyly of multiple and unspecified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\(755.10) Syndactyly of multiple and unspecified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.10''', NULL,
+ '(755.10) Syndactyly of multiple and unspecified sites', '(755.10) Syndactyly of multiple and unspecified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\(755.11) Syndactyly of fingers without fusion of bone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\(755.11) Syndactyly of fingers without fusion of bone\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.11''', NULL,
+ '(755.11) Syndactyly of fingers without fusion of bone', '(755.11) Syndactyly of fingers without fusion of bone', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\(755.12) Syndactyly of fingers with fusion of bone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\(755.12) Syndactyly of fingers with fusion of bone\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.12''', NULL,
+ '(755.12) Syndactyly of fingers with fusion of bone', '(755.12) Syndactyly of fingers with fusion of bone', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\(755.13) Syndactyly of toes without fusion of bone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\(755.13) Syndactyly of toes without fusion of bone\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.13''', NULL,
+ '(755.13) Syndactyly of toes without fusion of bone', '(755.13) Syndactyly of toes without fusion of bone', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\(755.14) Syndactyly of toes with fusion of bone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of limbs (755)\Syndactyly (755.1)\(755.14) Syndactyly of toes with fusion of bone\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''755.14''', NULL,
+ '(755.14) Syndactyly of toes with fusion of bone', '(755.14) Syndactyly of toes with fusion of bone', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''742''', NULL,
+ 'Other congenital anomalies of nervous system (742)', 'Other congenital anomalies of nervous system (742)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\(742.0) Encephalocele\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\(742.0) Encephalocele\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''742.0''', NULL,
+ '(742.0) Encephalocele', '(742.0) Encephalocele', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\(742.1) Microcephalus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\(742.1) Microcephalus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''742.1''', NULL,
+ '(742.1) Microcephalus', '(742.1) Microcephalus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\(742.2) Congenital reduction deformities of brain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\(742.2) Congenital reduction deformities of brain\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''742.2''', NULL,
+ '(742.2) Congenital reduction deformities of brain', '(742.2) Congenital reduction deformities of brain', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\(742.3) Congenital hydrocephalus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\(742.3) Congenital hydrocephalus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''742.3''', NULL,
+ '(742.3) Congenital hydrocephalus', '(742.3) Congenital hydrocephalus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\(742.4) Other specified congenital anomalies of brain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\(742.4) Other specified congenital anomalies of brain\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''742.4''', NULL,
+ '(742.4) Other specified congenital anomalies of brain', '(742.4) Other specified congenital anomalies of brain', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\(742.8) Other specified congenital anomalies of nervous system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\(742.8) Other specified congenital anomalies of nervous system\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''742.8''', NULL,
+ '(742.8) Other specified congenital anomalies of nervous system', '(742.8) Other specified congenital anomalies of nervous system', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\(742.9) Unspecified congenital anomaly of brain, spinal cord, and nervous system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\(742.9) Unspecified congenital anomaly of brain, spinal cord, and nervous system\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''742.9''', NULL,
+ '(742.9) Unspecified congenital anomaly of brain, spinal cord, and nervous system', '(742.9) Unspecified congenital anomaly of brain, spinal cord, and nervous system', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\Other specified congenital anomalies of spinal cord (742.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\Other specified congenital anomalies of spinal cord (742.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''742.5''', NULL,
+ 'Other specified congenital anomalies of spinal cord (742.5)', 'Other specified congenital anomalies of spinal cord (742.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\Other specified congenital anomalies of spinal cord (742.5)\(742.51) Diastematomyelia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\Other specified congenital anomalies of spinal cord (742.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\Other specified congenital anomalies of spinal cord (742.5)\(742.51) Diastematomyelia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''742.51''', NULL,
+ '(742.51) Diastematomyelia', '(742.51) Diastematomyelia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\Other specified congenital anomalies of spinal cord (742.5)\(742.53) Hydromyelia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\Other specified congenital anomalies of spinal cord (742.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\Other specified congenital anomalies of spinal cord (742.5)\(742.53) Hydromyelia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''742.53''', NULL,
+ '(742.53) Hydromyelia', '(742.53) Hydromyelia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\Other specified congenital anomalies of spinal cord (742.5)\(742.59) Other specified congenital anomalies of spinal cord\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\Other specified congenital anomalies of spinal cord (742.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of nervous system (742)\Other specified congenital anomalies of spinal cord (742.5)\(742.59) Other specified congenital anomalies of spinal cord\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''742.59''', NULL,
+ '(742.59) Other specified congenital anomalies of spinal cord', '(742.59) Other specified congenital anomalies of spinal cord', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750''', NULL,
+ 'Other congenital anomalies of upper alimentary tract (750)', 'Other congenital anomalies of upper alimentary tract (750)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.0) Tongue tie\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.0) Tongue tie\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.0''', NULL,
+ '(750.0) Tongue tie', '(750.0) Tongue tie', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.3) Tracheoesophageal fistula, esophageal atresia and stenosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.3) Tracheoesophageal fistula, esophageal atresia and stenosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.3''', NULL,
+ '(750.3) Tracheoesophageal fistula, esophageal atresia and stenosis', '(750.3) Tracheoesophageal fistula, esophageal atresia and stenosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.4) Other specified anomalies of esophagus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.4) Other specified anomalies of esophagus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.4''', NULL,
+ '(750.4) Other specified anomalies of esophagus', '(750.4) Other specified anomalies of esophagus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.5) Congenital hypertrophic pyloric stenosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.5) Congenital hypertrophic pyloric stenosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.5''', NULL,
+ '(750.5) Congenital hypertrophic pyloric stenosis', '(750.5) Congenital hypertrophic pyloric stenosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.6) Congenital hiatus hernia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.6) Congenital hiatus hernia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.6''', NULL,
+ '(750.6) Congenital hiatus hernia', '(750.6) Congenital hiatus hernia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.7) Other specified anomalies of stomach\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.7) Other specified anomalies of stomach\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.7''', NULL,
+ '(750.7) Other specified anomalies of stomach', '(750.7) Other specified anomalies of stomach', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.8) Other specified anomalies of upper alimentary tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.8) Other specified anomalies of upper alimentary tract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.8''', NULL,
+ '(750.8) Other specified anomalies of upper alimentary tract', '(750.8) Other specified anomalies of upper alimentary tract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.9) Unspecified anomaly of upper alimentary tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\(750.9) Unspecified anomaly of upper alimentary tract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.9''', NULL,
+ '(750.9) Unspecified anomaly of upper alimentary tract', '(750.9) Unspecified anomaly of upper alimentary tract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.1''', NULL,
+ 'Other congenital anomalies of tongue (750.1)', 'Other congenital anomalies of tongue (750.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\(750.10) Congenital anomaly of tongue, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\(750.10) Congenital anomaly of tongue, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.10''', NULL,
+ '(750.10) Congenital anomaly of tongue, unspecified', '(750.10) Congenital anomaly of tongue, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\(750.11) Aglossia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\(750.11) Aglossia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.11''', NULL,
+ '(750.11) Aglossia', '(750.11) Aglossia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\(750.12) Congenital adhesions of tongue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\(750.12) Congenital adhesions of tongue\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.12''', NULL,
+ '(750.12) Congenital adhesions of tongue', '(750.12) Congenital adhesions of tongue', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\(750.13) Fissure of tongue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\(750.13) Fissure of tongue\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.13''', NULL,
+ '(750.13) Fissure of tongue', '(750.13) Fissure of tongue', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\(750.15) Macroglossia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\(750.15) Macroglossia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.15''', NULL,
+ '(750.15) Macroglossia', '(750.15) Macroglossia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\(750.16) Microglossia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\(750.16) Microglossia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.16''', NULL,
+ '(750.16) Microglossia', '(750.16) Microglossia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\(750.19) Other congenital anomalies of tongue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other congenital anomalies of tongue (750.1)\(750.19) Other congenital anomalies of tongue\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.19''', NULL,
+ '(750.19) Other congenital anomalies of tongue', '(750.19) Other congenital anomalies of tongue', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.2''', NULL,
+ 'Other specified congenital anomalies of mouth and pharynx (750.2)', 'Other specified congenital anomalies of mouth and pharynx (750.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.21) Absence of salivary gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.21) Absence of salivary gland\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.21''', NULL,
+ '(750.21) Absence of salivary gland', '(750.21) Absence of salivary gland', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.22) Accessory salivary gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.22) Accessory salivary gland\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.22''', NULL,
+ '(750.22) Accessory salivary gland', '(750.22) Accessory salivary gland', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.23) Atresia, salivary duct\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.23) Atresia, salivary duct\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.23''', NULL,
+ '(750.23) Atresia, salivary duct', '(750.23) Atresia, salivary duct', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.24) Congenital fistula of salivary gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.24) Congenital fistula of salivary gland\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.24''', NULL,
+ '(750.24) Congenital fistula of salivary gland', '(750.24) Congenital fistula of salivary gland', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.25) Congenital fistula of lip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.25) Congenital fistula of lip\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.25''', NULL,
+ '(750.25) Congenital fistula of lip', '(750.25) Congenital fistula of lip', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.26) Other specified anomalies of mouth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.26) Other specified anomalies of mouth\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.26''', NULL,
+ '(750.26) Other specified anomalies of mouth', '(750.26) Other specified anomalies of mouth', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.27) Diverticulum of pharynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.27) Diverticulum of pharynx\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.27''', NULL,
+ '(750.27) Diverticulum of pharynx', '(750.27) Diverticulum of pharynx', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.29) Other specified anomalies of pharynx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital anomalies of upper alimentary tract (750)\Other specified congenital anomalies of mouth and pharynx (750.2)\(750.29) Other specified anomalies of pharynx\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''750.29''', NULL,
+ '(750.29) Other specified anomalies of pharynx', '(750.29) Other specified anomalies of pharynx', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756''', NULL,
+ 'Other congenital musculoskeletal anomalies (756)', 'Other congenital musculoskeletal anomalies (756)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\(756.0) Anomalies of skull and face bones\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\(756.0) Anomalies of skull and face bones\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.0''', NULL,
+ '(756.0) Anomalies of skull and face bones', '(756.0) Anomalies of skull and face bones', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\(756.2) Cervical rib\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\(756.2) Cervical rib\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.2''', NULL,
+ '(756.2) Cervical rib', '(756.2) Cervical rib', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\(756.3) Other anomalies of ribs and sternum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\(756.3) Other anomalies of ribs and sternum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.3''', NULL,
+ '(756.3) Other anomalies of ribs and sternum', '(756.3) Other anomalies of ribs and sternum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\(756.4) Chondrodystrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\(756.4) Chondrodystrophy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.4''', NULL,
+ '(756.4) Chondrodystrophy', '(756.4) Chondrodystrophy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\(756.6) Anomalies of diaphragm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\(756.6) Anomalies of diaphragm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.6''', NULL,
+ '(756.6) Anomalies of diaphragm', '(756.6) Anomalies of diaphragm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\(756.9) Other and unspecified anomalies of musculoskeletal system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\(756.9) Other and unspecified anomalies of musculoskeletal system\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.9''', NULL,
+ '(756.9) Other and unspecified anomalies of musculoskeletal system', '(756.9) Other and unspecified anomalies of musculoskeletal system', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.7''', NULL,
+ 'Anomalies of abdominal wall, congenital (756.7)', 'Anomalies of abdominal wall, congenital (756.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\(756.70) Anomaly of abdominal wall, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\(756.70) Anomaly of abdominal wall, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.70''', NULL,
+ '(756.70) Anomaly of abdominal wall, unspecified', '(756.70) Anomaly of abdominal wall, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\(756.71) Prune belly syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\(756.71) Prune belly syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.71''', NULL,
+ '(756.71) Prune belly syndrome', '(756.71) Prune belly syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\(756.72) Omphalocele\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\(756.72) Omphalocele\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.72''', NULL,
+ '(756.72) Omphalocele', '(756.72) Omphalocele', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\(756.73) Gastroschisis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\(756.73) Gastroschisis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.73''', NULL,
+ '(756.73) Gastroschisis', '(756.73) Gastroschisis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\(756.79) Other congenital anomalies of abdominal wall\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of abdominal wall, congenital (756.7)\(756.79) Other congenital anomalies of abdominal wall\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.79''', NULL,
+ '(756.79) Other congenital anomalies of abdominal wall', '(756.79) Other congenital anomalies of abdominal wall', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.1''', NULL,
+ 'Anomalies of spine, congenital (756.1)', 'Anomalies of spine, congenital (756.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.10) Anomaly of spine, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.10) Anomaly of spine, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.10''', NULL,
+ '(756.10) Anomaly of spine, unspecified', '(756.10) Anomaly of spine, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.11) Spondylolysis, lumbosacral region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.11) Spondylolysis, lumbosacral region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.11''', NULL,
+ '(756.11) Spondylolysis, lumbosacral region', '(756.11) Spondylolysis, lumbosacral region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.12) Spondylolisthesis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.12) Spondylolisthesis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.12''', NULL,
+ '(756.12) Spondylolisthesis', '(756.12) Spondylolisthesis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.13) Absence of vertebra, congenital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.13) Absence of vertebra, congenital\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.13''', NULL,
+ '(756.13) Absence of vertebra, congenital', '(756.13) Absence of vertebra, congenital', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.14) Hemivertebra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.14) Hemivertebra\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.14''', NULL,
+ '(756.14) Hemivertebra', '(756.14) Hemivertebra', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.15) Fusion of spine (vertebra), congenital\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.15) Fusion of spine (vertebra), congenital\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.15) Fusion of spine (vertebra''', NULL,
+ '(756.15) Fusion of spine (vertebra), congenital', '(756.15) Fusion of spine (vertebra), congenital', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.16) Klippel-Feil syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.16) Klippel-Feil syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.16''', NULL,
+ '(756.16) Klippel-Feil syndrome', '(756.16) Klippel-Feil syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.17) Spina bifida occulta\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.17) Spina bifida occulta\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.17''', NULL,
+ '(756.17) Spina bifida occulta', '(756.17) Spina bifida occulta', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.19) Other anomalies of spine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Anomalies of spine, congenital (756.1)\(756.19) Other anomalies of spine\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.19''', NULL,
+ '(756.19) Other anomalies of spine', '(756.19) Other anomalies of spine', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.5''', NULL,
+ 'Congenital osteodystrophies (756.5)', 'Congenital osteodystrophies (756.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.50) Congenital osteodystrophy, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.50) Congenital osteodystrophy, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.50''', NULL,
+ '(756.50) Congenital osteodystrophy, unspecified', '(756.50) Congenital osteodystrophy, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.51) Osteogenesis imperfecta\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.51) Osteogenesis imperfecta\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.51''', NULL,
+ '(756.51) Osteogenesis imperfecta', '(756.51) Osteogenesis imperfecta', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.52) Osteopetrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.52) Osteopetrosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.52''', NULL,
+ '(756.52) Osteopetrosis', '(756.52) Osteopetrosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.53) Osteopoikilosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.53) Osteopoikilosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.53''', NULL,
+ '(756.53) Osteopoikilosis', '(756.53) Osteopoikilosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.54) Polyostotic fibrous dysplasia of bone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.54) Polyostotic fibrous dysplasia of bone\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.54''', NULL,
+ '(756.54) Polyostotic fibrous dysplasia of bone', '(756.54) Polyostotic fibrous dysplasia of bone', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.55) Chondroectodermal dysplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.55) Chondroectodermal dysplasia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.55''', NULL,
+ '(756.55) Chondroectodermal dysplasia', '(756.55) Chondroectodermal dysplasia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.56) Multiple epiphyseal dysplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.56) Multiple epiphyseal dysplasia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.56''', NULL,
+ '(756.56) Multiple epiphyseal dysplasia', '(756.56) Multiple epiphyseal dysplasia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.59) Other osteodystrophies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Congenital osteodystrophies (756.5)\(756.59) Other osteodystrophies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.59''', NULL,
+ '(756.59) Other osteodystrophies', '(756.59) Other osteodystrophies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.8''', NULL,
+ 'Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)', 'Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\(756.81) Absence of muscle and tendon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\(756.81) Absence of muscle and tendon\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.81''', NULL,
+ '(756.81) Absence of muscle and tendon', '(756.81) Absence of muscle and tendon', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\(756.82) Accessory muscle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\(756.82) Accessory muscle\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.82''', NULL,
+ '(756.82) Accessory muscle', '(756.82) Accessory muscle', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\(756.83) Ehlers-Danlos syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\(756.83) Ehlers-Danlos syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.83''', NULL,
+ '(756.83) Ehlers-Danlos syndrome', '(756.83) Ehlers-Danlos syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\(756.89) Other specified anomalies of muscle, tendon, fascia, and connective tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Other congenital musculoskeletal anomalies (756)\Other specified congenital anomalies of muscle, tendon, fascia, and connective tissue (756.8)\(756.89) Other specified anomalies of muscle, tendon, fascia, and connective tissue\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''756.89''', NULL,
+ '(756.89) Other specified anomalies of muscle, tendon, fascia, and connective tissue', '(756.89) Other specified anomalies of muscle, tendon, fascia, and connective tissue', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''741''', NULL,
+ 'Spina bifida (741)', 'Spina bifida (741)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida with hydrocephalus (741.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida with hydrocephalus (741.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''741.0''', NULL,
+ 'Spina bifida with hydrocephalus (741.0)', 'Spina bifida with hydrocephalus (741.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida with hydrocephalus (741.0)\(741.00) Spina bifida with hydrocephalus, unspecified region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida with hydrocephalus (741.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida with hydrocephalus (741.0)\(741.00) Spina bifida with hydrocephalus, unspecified region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''741.00''', NULL,
+ '(741.00) Spina bifida with hydrocephalus, unspecified region', '(741.00) Spina bifida with hydrocephalus, unspecified region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida with hydrocephalus (741.0)\(741.01) Spina bifida with hydrocephalus, cervical region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida with hydrocephalus (741.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida with hydrocephalus (741.0)\(741.01) Spina bifida with hydrocephalus, cervical region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''741.01''', NULL,
+ '(741.01) Spina bifida with hydrocephalus, cervical region', '(741.01) Spina bifida with hydrocephalus, cervical region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida with hydrocephalus (741.0)\(741.02) Spina bifida with hydrocephalus, dorsal (thoracic) region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida with hydrocephalus (741.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida with hydrocephalus (741.0)\(741.02) Spina bifida with hydrocephalus, dorsal (thoracic) region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''741.02) Spina bifida with hydrocephalus, dorsal (thoracic''', NULL,
+ '(741.02) Spina bifida with hydrocephalus, dorsal (thoracic) region', '(741.02) Spina bifida with hydrocephalus, dorsal (thoracic) region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida with hydrocephalus (741.0)\(741.03) Spina bifida with hydrocephalus, lumbar region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida with hydrocephalus (741.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida with hydrocephalus (741.0)\(741.03) Spina bifida with hydrocephalus, lumbar region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''741.03''', NULL,
+ '(741.03) Spina bifida with hydrocephalus, lumbar region', '(741.03) Spina bifida with hydrocephalus, lumbar region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida without mention of hydrocephalus (741.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida without mention of hydrocephalus (741.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''741.9''', NULL,
+ 'Spina bifida without mention of hydrocephalus (741.9)', 'Spina bifida without mention of hydrocephalus (741.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida without mention of hydrocephalus (741.9)\(741.90) Spina bifida without mention of hydrocephalus, unspecified region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida without mention of hydrocephalus (741.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida without mention of hydrocephalus (741.9)\(741.90) Spina bifida without mention of hydrocephalus, unspecified region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''741.90''', NULL,
+ '(741.90) Spina bifida without mention of hydrocephalus, unspecified region', '(741.90) Spina bifida without mention of hydrocephalus, unspecified region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida without mention of hydrocephalus (741.9)\(741.91) Spina bifida without mention of hydrocephalus, cervical region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida without mention of hydrocephalus (741.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida without mention of hydrocephalus (741.9)\(741.91) Spina bifida without mention of hydrocephalus, cervical region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''741.91''', NULL,
+ '(741.91) Spina bifida without mention of hydrocephalus, cervical region', '(741.91) Spina bifida without mention of hydrocephalus, cervical region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida without mention of hydrocephalus (741.9)\(741.92) Spina bifida without mention of hydrocephalus, dorsal (thoracic) region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida without mention of hydrocephalus (741.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida without mention of hydrocephalus (741.9)\(741.92) Spina bifida without mention of hydrocephalus, dorsal (thoracic) region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''741.92) Spina bifida without mention of hydrocephalus, dorsal (thoracic''', NULL,
+ '(741.92) Spina bifida without mention of hydrocephalus, dorsal (thoracic) region', '(741.92) Spina bifida without mention of hydrocephalus, dorsal (thoracic) region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida without mention of hydrocephalus (741.9)\(741.93) Spina bifida without mention of hydrocephalus, lumbar region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida without mention of hydrocephalus (741.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Congenital anomalies (740-759.99)\Spina bifida (741)\Spina bifida without mention of hydrocephalus (741.9)\(741.93) Spina bifida without mention of hydrocephalus, lumbar region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''741.93''', NULL,
+ '(741.93) Spina bifida without mention of hydrocephalus, lumbar region', '(741.93) Spina bifida without mention of hydrocephalus, lumbar region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''280'' AND ''289.99''', NULL,
+ 'Diseases of the blood and blood-forming organs (280-289.99)', 'Diseases of the blood and blood-forming organs (280-289.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''283''', NULL,
+ 'Acquired hemolytic anemias (283)', 'Acquired hemolytic anemias (283)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\(283.0) Autoimmune hemolytic anemias\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\(283.0) Autoimmune hemolytic anemias\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''283.0''', NULL,
+ '(283.0) Autoimmune hemolytic anemias', '(283.0) Autoimmune hemolytic anemias', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\(283.2) Hemoglobinuria due to hemolysis from external causes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\(283.2) Hemoglobinuria due to hemolysis from external causes\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''283.2''', NULL,
+ '(283.2) Hemoglobinuria due to hemolysis from external causes', '(283.2) Hemoglobinuria due to hemolysis from external causes', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\(283.9) Acquired hemolytic anemia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\(283.9) Acquired hemolytic anemia, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''283.9''', NULL,
+ '(283.9) Acquired hemolytic anemia, unspecified', '(283.9) Acquired hemolytic anemia, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\Non-autoimmune hemolytic anemias (283.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\Non-autoimmune hemolytic anemias (283.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''283.1''', NULL,
+ 'Non-autoimmune hemolytic anemias (283.1)', 'Non-autoimmune hemolytic anemias (283.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\Non-autoimmune hemolytic anemias (283.1)\(283.10) Non-autoimmune hemolytic anemia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\Non-autoimmune hemolytic anemias (283.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\Non-autoimmune hemolytic anemias (283.1)\(283.10) Non-autoimmune hemolytic anemia, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''283.10''', NULL,
+ '(283.10) Non-autoimmune hemolytic anemia, unspecified', '(283.10) Non-autoimmune hemolytic anemia, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\Non-autoimmune hemolytic anemias (283.1)\(283.11) Hemolytic-uremic syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\Non-autoimmune hemolytic anemias (283.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\Non-autoimmune hemolytic anemias (283.1)\(283.11) Hemolytic-uremic syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''283.11''', NULL,
+ '(283.11) Hemolytic-uremic syndrome', '(283.11) Hemolytic-uremic syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\Non-autoimmune hemolytic anemias (283.1)\(283.19) Other non-autoimmune hemolytic anemias\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\Non-autoimmune hemolytic anemias (283.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Acquired hemolytic anemias (283)\Non-autoimmune hemolytic anemias (283.1)\(283.19) Other non-autoimmune hemolytic anemias\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''283.19''', NULL,
+ '(283.19) Other non-autoimmune hemolytic anemias', '(283.19) Other non-autoimmune hemolytic anemias', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''284''', NULL,
+ 'Aplastic anemia and other bone marrow failure syndromes (284)', 'Aplastic anemia and other bone marrow failure syndromes (284)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\(284.2) Myelophthisis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\(284.2) Myelophthisis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''284.2''', NULL,
+ '(284.2) Myelophthisis', '(284.2) Myelophthisis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\(284.9) Aplastic anemia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\(284.9) Aplastic anemia, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''284.9''', NULL,
+ '(284.9) Aplastic anemia, unspecified', '(284.9) Aplastic anemia, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Constitutional aplastic anemia (284.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Constitutional aplastic anemia (284.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''284.0''', NULL,
+ 'Constitutional aplastic anemia (284.0)', 'Constitutional aplastic anemia (284.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Constitutional aplastic anemia (284.0)\(284.01) Constitutional red blood cell aplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Constitutional aplastic anemia (284.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Constitutional aplastic anemia (284.0)\(284.01) Constitutional red blood cell aplasia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''284.01''', NULL,
+ '(284.01) Constitutional red blood cell aplasia', '(284.01) Constitutional red blood cell aplasia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Constitutional aplastic anemia (284.0)\(284.09) Other constitutional aplastic anemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Constitutional aplastic anemia (284.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Constitutional aplastic anemia (284.0)\(284.09) Other constitutional aplastic anemia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''284.09''', NULL,
+ '(284.09) Other constitutional aplastic anemia', '(284.09) Other constitutional aplastic anemia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Other specified aplastic anemias (284.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Other specified aplastic anemias (284.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''284.8''', NULL,
+ 'Other specified aplastic anemias (284.8)', 'Other specified aplastic anemias (284.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Other specified aplastic anemias (284.8)\(284.81) Red cell aplasia (acquired)(adult)(with thymoma)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Other specified aplastic anemias (284.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Other specified aplastic anemias (284.8)\(284.81) Red cell aplasia (acquired)(adult)(with thymoma)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''284.81) Red cell aplasia (acquired)(adult)(with thymoma''', NULL,
+ '(284.81) Red cell aplasia (acquired)(adult)(with thymoma)', '(284.81) Red cell aplasia (acquired)(adult)(with thymoma)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Other specified aplastic anemias (284.8)\(284.89) Other specified aplastic anemias\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Other specified aplastic anemias (284.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Other specified aplastic anemias (284.8)\(284.89) Other specified aplastic anemias\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''284.89''', NULL,
+ '(284.89) Other specified aplastic anemias', '(284.89) Other specified aplastic anemias', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Pancytopenia (284.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Pancytopenia (284.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''284.1''', NULL,
+ 'Pancytopenia (284.1)', 'Pancytopenia (284.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Pancytopenia (284.1)\(284.11) Antineoplastic chemotherapy induced pancytopenia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Pancytopenia (284.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Pancytopenia (284.1)\(284.11) Antineoplastic chemotherapy induced pancytopenia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''284.11''', NULL,
+ '(284.11) Antineoplastic chemotherapy induced pancytopenia', '(284.11) Antineoplastic chemotherapy induced pancytopenia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Pancytopenia (284.1)\(284.12) Other drug-induced pancytopenia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Pancytopenia (284.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Pancytopenia (284.1)\(284.12) Other drug-induced pancytopenia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''284.12''', NULL,
+ '(284.12) Other drug-induced pancytopenia', '(284.12) Other drug-induced pancytopenia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Pancytopenia (284.1)\(284.19) Other pancytopenia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Pancytopenia (284.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Aplastic anemia and other bone marrow failure syndromes (284)\Pancytopenia (284.1)\(284.19) Other pancytopenia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''284.19''', NULL,
+ '(284.19) Other pancytopenia', '(284.19) Other pancytopenia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''286''', NULL,
+ 'Coagulation defects (286)', 'Coagulation defects (286)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.0) Congenital factor VIII disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.0) Congenital factor VIII disorder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''286.0''', NULL,
+ '(286.0) Congenital factor VIII disorder', '(286.0) Congenital factor VIII disorder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.1) Congenital factor IX disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.1) Congenital factor IX disorder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''286.1''', NULL,
+ '(286.1) Congenital factor IX disorder', '(286.1) Congenital factor IX disorder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.2) Congenital factor XI deficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.2) Congenital factor XI deficiency\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''286.2''', NULL,
+ '(286.2) Congenital factor XI deficiency', '(286.2) Congenital factor XI deficiency', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.3) Congenital deficiency of other clotting factors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.3) Congenital deficiency of other clotting factors\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''286.3''', NULL,
+ '(286.3) Congenital deficiency of other clotting factors', '(286.3) Congenital deficiency of other clotting factors', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.4) Von Willebrand''s disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.4) Von Willebrand''s disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''286.4''', NULL,
+ '(286.4) Von Willebrand''s disease', '(286.4) Von Willebrand''s disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.6) Defibrination syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.6) Defibrination syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''286.6''', NULL,
+ '(286.6) Defibrination syndrome', '(286.6) Defibrination syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.7) Acquired coagulation factor deficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.7) Acquired coagulation factor deficiency\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''286.7''', NULL,
+ '(286.7) Acquired coagulation factor deficiency', '(286.7) Acquired coagulation factor deficiency', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.9) Other and unspecified coagulation defects\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\(286.9) Other and unspecified coagulation defects\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''286.9''', NULL,
+ '(286.9) Other and unspecified coagulation defects', '(286.9) Other and unspecified coagulation defects', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''286.5''', NULL,
+ 'Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)', 'Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)\(286.52) Acquired hemophilia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)\(286.52) Acquired hemophilia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''286.52''', NULL,
+ '(286.52) Acquired hemophilia', '(286.52) Acquired hemophilia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)\(286.53) Antiphospholipid antibody with hemorrhagic disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)\(286.53) Antiphospholipid antibody with hemorrhagic disorder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''286.53''', NULL,
+ '(286.53) Antiphospholipid antibody with hemorrhagic disorder', '(286.53) Antiphospholipid antibody with hemorrhagic disorder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)\(286.59) Other hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Coagulation defects (286)\Hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors (286.5)\(286.59) Other hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''286.59''', NULL,
+ '(286.59) Other hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors', '(286.59) Other hemorrhagic disorder due to intrinsic circulating anticoagulants, antibodies, or inhibitors', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288''', NULL,
+ 'Diseases of white blood cells (288)', 'Diseases of white blood cells (288)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\(288.1) Functional disorders of polymorphonuclear neutrophils\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\(288.1) Functional disorders of polymorphonuclear neutrophils\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.1''', NULL,
+ '(288.1) Functional disorders of polymorphonuclear neutrophils', '(288.1) Functional disorders of polymorphonuclear neutrophils', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\(288.2) Genetic anomalies of leukocytes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\(288.2) Genetic anomalies of leukocytes\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.2''', NULL,
+ '(288.2) Genetic anomalies of leukocytes', '(288.2) Genetic anomalies of leukocytes', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\(288.3) Eosinophilia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\(288.3) Eosinophilia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.3''', NULL,
+ '(288.3) Eosinophilia', '(288.3) Eosinophilia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\(288.4) Hemophagocytic syndromes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\(288.4) Hemophagocytic syndromes\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.4''', NULL,
+ '(288.4) Hemophagocytic syndromes', '(288.4) Hemophagocytic syndromes', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\(288.8) Other specified disease of white blood cells\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\(288.8) Other specified disease of white blood cells\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.8''', NULL,
+ '(288.8) Other specified disease of white blood cells', '(288.8) Other specified disease of white blood cells', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\(288.9) Unspecified disease of white blood cells\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\(288.9) Unspecified disease of white blood cells\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.9''', NULL,
+ '(288.9) Unspecified disease of white blood cells', '(288.9) Unspecified disease of white blood cells', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Decreased white blood cell count (288.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Decreased white blood cell count (288.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.5''', NULL,
+ 'Decreased white blood cell count (288.5)', 'Decreased white blood cell count (288.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Decreased white blood cell count (288.5)\(288.50) Leukocytopenia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Decreased white blood cell count (288.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Decreased white blood cell count (288.5)\(288.50) Leukocytopenia, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.50''', NULL,
+ '(288.50) Leukocytopenia, unspecified', '(288.50) Leukocytopenia, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Decreased white blood cell count (288.5)\(288.51) Lymphocytopenia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Decreased white blood cell count (288.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Decreased white blood cell count (288.5)\(288.51) Lymphocytopenia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.51''', NULL,
+ '(288.51) Lymphocytopenia', '(288.51) Lymphocytopenia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Decreased white blood cell count (288.5)\(288.59) Other decreased white blood cell count\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Decreased white blood cell count (288.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Decreased white blood cell count (288.5)\(288.59) Other decreased white blood cell count\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.59''', NULL,
+ '(288.59) Other decreased white blood cell count', '(288.59) Other decreased white blood cell count', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.6''', NULL,
+ 'Elevated white blood cell count (288.6)', 'Elevated white blood cell count (288.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.60) Leukocytosis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.60) Leukocytosis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.60''', NULL,
+ '(288.60) Leukocytosis, unspecified', '(288.60) Leukocytosis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.61) Lymphocytosis (symptomatic)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.61) Lymphocytosis (symptomatic)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.61) Lymphocytosis (symptomatic''', NULL,
+ '(288.61) Lymphocytosis (symptomatic)', '(288.61) Lymphocytosis (symptomatic)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.62) Leukemoid reaction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.62) Leukemoid reaction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.62''', NULL,
+ '(288.62) Leukemoid reaction', '(288.62) Leukemoid reaction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.63) Monocytosis (symptomatic)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.63) Monocytosis (symptomatic)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.63) Monocytosis (symptomatic''', NULL,
+ '(288.63) Monocytosis (symptomatic)', '(288.63) Monocytosis (symptomatic)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.64) Plasmacytosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.64) Plasmacytosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.64''', NULL,
+ '(288.64) Plasmacytosis', '(288.64) Plasmacytosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.65) Basophilia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.65) Basophilia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.65''', NULL,
+ '(288.65) Basophilia', '(288.65) Basophilia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.66) Bandemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.66) Bandemia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.66''', NULL,
+ '(288.66) Bandemia', '(288.66) Bandemia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.69) Other elevated white blood cell count\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Elevated white blood cell count (288.6)\(288.69) Other elevated white blood cell count\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.69''', NULL,
+ '(288.69) Other elevated white blood cell count', '(288.69) Other elevated white blood cell count', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.0''', NULL,
+ 'Neutropenia (288.0)', 'Neutropenia (288.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\(288.00) Neutropenia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\(288.00) Neutropenia, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.00''', NULL,
+ '(288.00) Neutropenia, unspecified', '(288.00) Neutropenia, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\(288.01) Congenital neutropenia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\(288.01) Congenital neutropenia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.01''', NULL,
+ '(288.01) Congenital neutropenia', '(288.01) Congenital neutropenia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\(288.02) Cyclic neutropenia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\(288.02) Cyclic neutropenia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.02''', NULL,
+ '(288.02) Cyclic neutropenia', '(288.02) Cyclic neutropenia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\(288.03) Drug induced neutropenia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\(288.03) Drug induced neutropenia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.03''', NULL,
+ '(288.03) Drug induced neutropenia', '(288.03) Drug induced neutropenia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\(288.04) Neutropenia due to infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\(288.04) Neutropenia due to infection\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.04''', NULL,
+ '(288.04) Neutropenia due to infection', '(288.04) Neutropenia due to infection', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\(288.09) Other neutropenia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Diseases of white blood cells (288)\Neutropenia (288.0)\(288.09) Other neutropenia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''288.09''', NULL,
+ '(288.09) Other neutropenia', '(288.09) Other neutropenia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282''', NULL,
+ 'Hereditary hemolytic anemias (282)', 'Hereditary hemolytic anemias (282)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.0) Hereditary spherocytosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.0) Hereditary spherocytosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.0''', NULL,
+ '(282.0) Hereditary spherocytosis', '(282.0) Hereditary spherocytosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.1) Hereditary elliptocytosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.1) Hereditary elliptocytosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.1''', NULL,
+ '(282.1) Hereditary elliptocytosis', '(282.1) Hereditary elliptocytosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.2) Anemias due to disorders of glutathione metabolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.2) Anemias due to disorders of glutathione metabolism\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.2''', NULL,
+ '(282.2) Anemias due to disorders of glutathione metabolism', '(282.2) Anemias due to disorders of glutathione metabolism', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.3) Other hemolytic anemias due to enzyme deficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.3) Other hemolytic anemias due to enzyme deficiency\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.3''', NULL,
+ '(282.3) Other hemolytic anemias due to enzyme deficiency', '(282.3) Other hemolytic anemias due to enzyme deficiency', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.5) Sickle-cell trait\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.5) Sickle-cell trait\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.5''', NULL,
+ '(282.5) Sickle-cell trait', '(282.5) Sickle-cell trait', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.7) Other hemoglobinopathies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.7) Other hemoglobinopathies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.7''', NULL,
+ '(282.7) Other hemoglobinopathies', '(282.7) Other hemoglobinopathies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.8) Other specified hereditary hemolytic anemias\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.8) Other specified hereditary hemolytic anemias\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.8''', NULL,
+ '(282.8) Other specified hereditary hemolytic anemias', '(282.8) Other specified hereditary hemolytic anemias', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.9) Hereditary hemolytic anemia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\(282.9) Hereditary hemolytic anemia, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.9''', NULL,
+ '(282.9) Hereditary hemolytic anemia, unspecified', '(282.9) Hereditary hemolytic anemia, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.6''', NULL,
+ 'Sickle-cell disease (282.6)', 'Sickle-cell disease (282.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\(282.60) Sickle-cell disease, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\(282.60) Sickle-cell disease, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.60''', NULL,
+ '(282.60) Sickle-cell disease, unspecified', '(282.60) Sickle-cell disease, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\(282.61) Hb-SS disease without crisis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\(282.61) Hb-SS disease without crisis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.61''', NULL,
+ '(282.61) Hb-SS disease without crisis', '(282.61) Hb-SS disease without crisis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\(282.62) Hb-SS disease with crisis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\(282.62) Hb-SS disease with crisis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.62''', NULL,
+ '(282.62) Hb-SS disease with crisis', '(282.62) Hb-SS disease with crisis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\(282.63) Sickle-cell/Hb-C disease without crisis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\(282.63) Sickle-cell/Hb-C disease without crisis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.63''', NULL,
+ '(282.63) Sickle-cell/Hb-C disease without crisis', '(282.63) Sickle-cell/Hb-C disease without crisis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\(282.64) Sickle-cell/Hb-C disease with crisis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\(282.64) Sickle-cell/Hb-C disease with crisis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.64''', NULL,
+ '(282.64) Sickle-cell/Hb-C disease with crisis', '(282.64) Sickle-cell/Hb-C disease with crisis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\(282.68) Other sickle-cell disease without crisis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\(282.68) Other sickle-cell disease without crisis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.68''', NULL,
+ '(282.68) Other sickle-cell disease without crisis', '(282.68) Other sickle-cell disease without crisis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\(282.69) Other sickle-cell disease with crisis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Sickle-cell disease (282.6)\(282.69) Other sickle-cell disease with crisis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.69''', NULL,
+ '(282.69) Other sickle-cell disease with crisis', '(282.69) Other sickle-cell disease with crisis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.4''', NULL,
+ 'Thalassemias (282.4)', 'Thalassemias (282.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\(282.40) Thalassemia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\(282.40) Thalassemia, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.40''', NULL,
+ '(282.40) Thalassemia, unspecified', '(282.40) Thalassemia, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\(282.41) Sickle-cell thalassemia without crisis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\(282.41) Sickle-cell thalassemia without crisis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.41''', NULL,
+ '(282.41) Sickle-cell thalassemia without crisis', '(282.41) Sickle-cell thalassemia without crisis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\(282.42) Sickle-cell thalassemia with crisis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\(282.42) Sickle-cell thalassemia with crisis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.42''', NULL,
+ '(282.42) Sickle-cell thalassemia with crisis', '(282.42) Sickle-cell thalassemia with crisis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\(282.44) Beta thalassemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\(282.44) Beta thalassemia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.44''', NULL,
+ '(282.44) Beta thalassemia', '(282.44) Beta thalassemia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\(282.46) Thalassemia minor\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\(282.46) Thalassemia minor\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.46''', NULL,
+ '(282.46) Thalassemia minor', '(282.46) Thalassemia minor', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\(282.49) Other thalassemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Hereditary hemolytic anemias (282)\Thalassemias (282.4)\(282.49) Other thalassemia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''282.49''', NULL,
+ '(282.49) Other thalassemia', '(282.49) Other thalassemia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Iron deficiency anemias (280)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Iron deficiency anemias (280)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''280''', NULL,
+ 'Iron deficiency anemias (280)', 'Iron deficiency anemias (280)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Iron deficiency anemias (280)\(280.0) Iron deficiency anemia secondary to blood loss (chronic)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Iron deficiency anemias (280)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Iron deficiency anemias (280)\(280.0) Iron deficiency anemia secondary to blood loss (chronic)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''280.0) Iron deficiency anemia secondary to blood loss (chronic''', NULL,
+ '(280.0) Iron deficiency anemia secondary to blood loss (chronic)', '(280.0) Iron deficiency anemia secondary to blood loss (chronic)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Iron deficiency anemias (280)\(280.1) Iron deficiency anemia secondary to inadequate dietary iron intake\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Iron deficiency anemias (280)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Iron deficiency anemias (280)\(280.1) Iron deficiency anemia secondary to inadequate dietary iron intake\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''280.1''', NULL,
+ '(280.1) Iron deficiency anemia secondary to inadequate dietary iron intake', '(280.1) Iron deficiency anemia secondary to inadequate dietary iron intake', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Iron deficiency anemias (280)\(280.8) Other specified iron deficiency anemias\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Iron deficiency anemias (280)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Iron deficiency anemias (280)\(280.8) Other specified iron deficiency anemias\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''280.8''', NULL,
+ '(280.8) Other specified iron deficiency anemias', '(280.8) Other specified iron deficiency anemias', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Iron deficiency anemias (280)\(280.9) Iron deficiency anemia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Iron deficiency anemias (280)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Iron deficiency anemias (280)\(280.9) Iron deficiency anemia, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''280.9''', NULL,
+ '(280.9) Iron deficiency anemia, unspecified', '(280.9) Iron deficiency anemia, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''285''', NULL,
+ 'Other and unspecified anemias (285)', 'Other and unspecified anemias (285)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\(285.0) Sideroblastic anemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\(285.0) Sideroblastic anemia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''285.0''', NULL,
+ '(285.0) Sideroblastic anemia', '(285.0) Sideroblastic anemia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\(285.1) Acute posthemorrhagic anemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\(285.1) Acute posthemorrhagic anemia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''285.1''', NULL,
+ '(285.1) Acute posthemorrhagic anemia', '(285.1) Acute posthemorrhagic anemia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\(285.3) Antineoplastic chemotherapy induced anemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\(285.3) Antineoplastic chemotherapy induced anemia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''285.3''', NULL,
+ '(285.3) Antineoplastic chemotherapy induced anemia', '(285.3) Antineoplastic chemotherapy induced anemia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\(285.8) Other specified anemias\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\(285.8) Other specified anemias\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''285.8''', NULL,
+ '(285.8) Other specified anemias', '(285.8) Other specified anemias', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\(285.9) Anemia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\(285.9) Anemia, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''285.9''', NULL,
+ '(285.9) Anemia, unspecified', '(285.9) Anemia, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\Anemia of chronic disease (285.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\Anemia of chronic disease (285.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''285.2''', NULL,
+ 'Anemia of chronic disease (285.2)', 'Anemia of chronic disease (285.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\Anemia of chronic disease (285.2)\(285.21) Anemia in chronic kidney disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\Anemia of chronic disease (285.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\Anemia of chronic disease (285.2)\(285.21) Anemia in chronic kidney disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''285.21''', NULL,
+ '(285.21) Anemia in chronic kidney disease', '(285.21) Anemia in chronic kidney disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\Anemia of chronic disease (285.2)\(285.22) Anemia in neoplastic disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\Anemia of chronic disease (285.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\Anemia of chronic disease (285.2)\(285.22) Anemia in neoplastic disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''285.22''', NULL,
+ '(285.22) Anemia in neoplastic disease', '(285.22) Anemia in neoplastic disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\Anemia of chronic disease (285.2)\(285.29) Anemia of other chronic disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\Anemia of chronic disease (285.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other and unspecified anemias (285)\Anemia of chronic disease (285.2)\(285.29) Anemia of other chronic disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''285.29''', NULL,
+ '(285.29) Anemia of other chronic disease', '(285.29) Anemia of other chronic disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''281''', NULL,
+ 'Other deficiency anemias (281)', 'Other deficiency anemias (281)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\(281.0) Pernicious anemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\(281.0) Pernicious anemia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''281.0''', NULL,
+ '(281.0) Pernicious anemia', '(281.0) Pernicious anemia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\(281.1) Other vitamin B12 deficiency anemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\(281.1) Other vitamin B12 deficiency anemia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''281.1''', NULL,
+ '(281.1) Other vitamin B12 deficiency anemia', '(281.1) Other vitamin B12 deficiency anemia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\(281.2) Folate-deficiency anemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\(281.2) Folate-deficiency anemia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''281.2''', NULL,
+ '(281.2) Folate-deficiency anemia', '(281.2) Folate-deficiency anemia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\(281.3) Other specified megaloblastic anemias not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\(281.3) Other specified megaloblastic anemias not elsewhere classified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''281.3''', NULL,
+ '(281.3) Other specified megaloblastic anemias not elsewhere classified', '(281.3) Other specified megaloblastic anemias not elsewhere classified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\(281.4) Protein-deficiency anemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\(281.4) Protein-deficiency anemia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''281.4''', NULL,
+ '(281.4) Protein-deficiency anemia', '(281.4) Protein-deficiency anemia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\(281.8) Anemia associated with other specified nutritional deficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\(281.8) Anemia associated with other specified nutritional deficiency\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''281.8''', NULL,
+ '(281.8) Anemia associated with other specified nutritional deficiency', '(281.8) Anemia associated with other specified nutritional deficiency', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\(281.9) Unspecified deficiency anemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other deficiency anemias (281)\(281.9) Unspecified deficiency anemia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''281.9''', NULL,
+ '(281.9) Unspecified deficiency anemia', '(281.9) Unspecified deficiency anemia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289''', NULL,
+ 'Other diseases of blood and blood-forming organs (289)', 'Other diseases of blood and blood-forming organs (289)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.0) Polycythemia, secondary\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.0) Polycythemia, secondary\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.0''', NULL,
+ '(289.0) Polycythemia, secondary', '(289.0) Polycythemia, secondary', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.1) Chronic lymphadenitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.1) Chronic lymphadenitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.1''', NULL,
+ '(289.1) Chronic lymphadenitis', '(289.1) Chronic lymphadenitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.2) Nonspecific mesenteric lymphadenitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.2) Nonspecific mesenteric lymphadenitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.2''', NULL,
+ '(289.2) Nonspecific mesenteric lymphadenitis', '(289.2) Nonspecific mesenteric lymphadenitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.3) Lymphadenitis, unspecified, except mesenteric\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.3) Lymphadenitis, unspecified, except mesenteric\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.3''', NULL,
+ '(289.3) Lymphadenitis, unspecified, except mesenteric', '(289.3) Lymphadenitis, unspecified, except mesenteric', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.4) Hypersplenism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.4) Hypersplenism\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.4''', NULL,
+ '(289.4) Hypersplenism', '(289.4) Hypersplenism', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.6) Familial polycythemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.6) Familial polycythemia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.6''', NULL,
+ '(289.6) Familial polycythemia', '(289.6) Familial polycythemia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.7) Methemoglobinemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.7) Methemoglobinemia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.7''', NULL,
+ '(289.7) Methemoglobinemia', '(289.7) Methemoglobinemia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.9) Unspecified diseases of blood and blood-forming organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\(289.9) Unspecified diseases of blood and blood-forming organs\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.9''', NULL,
+ '(289.9) Unspecified diseases of blood and blood-forming organs', '(289.9) Unspecified diseases of blood and blood-forming organs', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.5''', NULL,
+ 'Other diseases of spleen (289.5)', 'Other diseases of spleen (289.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\(289.50) Disease of spleen, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\(289.50) Disease of spleen, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.50''', NULL,
+ '(289.50) Disease of spleen, unspecified', '(289.50) Disease of spleen, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\(289.51) Chronic congestive splenomegaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\(289.51) Chronic congestive splenomegaly\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.51''', NULL,
+ '(289.51) Chronic congestive splenomegaly', '(289.51) Chronic congestive splenomegaly', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\(289.52) Splenic sequestration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\(289.52) Splenic sequestration\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.52''', NULL,
+ '(289.52) Splenic sequestration', '(289.52) Splenic sequestration', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\(289.53) Neutropenic splenomegaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\(289.53) Neutropenic splenomegaly\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.53''', NULL,
+ '(289.53) Neutropenic splenomegaly', '(289.53) Neutropenic splenomegaly', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\(289.59) Other diseases of spleen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other diseases of spleen (289.5)\(289.59) Other diseases of spleen\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.59''', NULL,
+ '(289.59) Other diseases of spleen', '(289.59) Other diseases of spleen', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.8''', NULL,
+ 'Other specified diseases of blood and blood-forming organs (289.8)', 'Other specified diseases of blood and blood-forming organs (289.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\(289.81) Primary hypercoagulable state\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\(289.81) Primary hypercoagulable state\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.81''', NULL,
+ '(289.81) Primary hypercoagulable state', '(289.81) Primary hypercoagulable state', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\(289.82) Secondary hypercoagulable state\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\(289.82) Secondary hypercoagulable state\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.82''', NULL,
+ '(289.82) Secondary hypercoagulable state', '(289.82) Secondary hypercoagulable state', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\(289.83) Myelofibrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\(289.83) Myelofibrosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.83''', NULL,
+ '(289.83) Myelofibrosis', '(289.83) Myelofibrosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\(289.84) Heparin-induced thrombocytopenia (HIT)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\(289.84) Heparin-induced thrombocytopenia (HIT)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''289.84) Heparin'' AND ''induced thrombocytopenia (HIT''', NULL,
+ '(289.84) Heparin-induced thrombocytopenia (HIT)', '(289.84) Heparin-induced thrombocytopenia (HIT)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\(289.89) Other specified diseases of blood and blood-forming organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Other diseases of blood and blood-forming organs (289)\Other specified diseases of blood and blood-forming organs (289.8)\(289.89) Other specified diseases of blood and blood-forming organs\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''289.89''', NULL,
+ '(289.89) Other specified diseases of blood and blood-forming organs', '(289.89) Other specified diseases of blood and blood-forming organs', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287''', NULL,
+ 'Purpura and other hemorrhagic conditions (287)', 'Purpura and other hemorrhagic conditions (287)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\(287.0) Allergic purpura\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\(287.0) Allergic purpura\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287.0''', NULL,
+ '(287.0) Allergic purpura', '(287.0) Allergic purpura', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\(287.1) Qualitative platelet defects\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\(287.1) Qualitative platelet defects\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287.1''', NULL,
+ '(287.1) Qualitative platelet defects', '(287.1) Qualitative platelet defects', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\(287.2) Other nonthrombocytopenic purpuras\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\(287.2) Other nonthrombocytopenic purpuras\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287.2''', NULL,
+ '(287.2) Other nonthrombocytopenic purpuras', '(287.2) Other nonthrombocytopenic purpuras', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\(287.5) Thrombocytopenia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\(287.5) Thrombocytopenia, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287.5''', NULL,
+ '(287.5) Thrombocytopenia, unspecified', '(287.5) Thrombocytopenia, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\(287.8) Other specified hemorrhagic conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\(287.8) Other specified hemorrhagic conditions\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287.8''', NULL,
+ '(287.8) Other specified hemorrhagic conditions', '(287.8) Other specified hemorrhagic conditions', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\(287.9) Unspecified hemorrhagic conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\(287.9) Unspecified hemorrhagic conditions\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287.9''', NULL,
+ '(287.9) Unspecified hemorrhagic conditions', '(287.9) Unspecified hemorrhagic conditions', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287.3''', NULL,
+ 'Primary thrombocytopenia (287.3)', 'Primary thrombocytopenia (287.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\(287.30) Primary thrombocytopenia,unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\(287.30) Primary thrombocytopenia,unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287.30''', NULL,
+ '(287.30) Primary thrombocytopenia,unspecified', '(287.30) Primary thrombocytopenia,unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\(287.31) Immune thrombocytopenic purpura\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\(287.31) Immune thrombocytopenic purpura\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287.31''', NULL,
+ '(287.31) Immune thrombocytopenic purpura', '(287.31) Immune thrombocytopenic purpura', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\(287.32) Evans'' syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\(287.32) Evans'' syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287.32''', NULL,
+ '(287.32) Evans'' syndrome', '(287.32) Evans'' syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\(287.33) Congenital and hereditary thrombocytopenic purpura\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\(287.33) Congenital and hereditary thrombocytopenic purpura\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287.33''', NULL,
+ '(287.33) Congenital and hereditary thrombocytopenic purpura', '(287.33) Congenital and hereditary thrombocytopenic purpura', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\(287.39) Other primary thrombocytopenia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Primary thrombocytopenia (287.3)\(287.39) Other primary thrombocytopenia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287.39''', NULL,
+ '(287.39) Other primary thrombocytopenia', '(287.39) Other primary thrombocytopenia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Secondary thrombocytopenia (287.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Secondary thrombocytopenia (287.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287.4''', NULL,
+ 'Secondary thrombocytopenia (287.4)', 'Secondary thrombocytopenia (287.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Secondary thrombocytopenia (287.4)\(287.41) Posttransfusion purpura\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Secondary thrombocytopenia (287.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Secondary thrombocytopenia (287.4)\(287.41) Posttransfusion purpura\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287.41''', NULL,
+ '(287.41) Posttransfusion purpura', '(287.41) Posttransfusion purpura', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Secondary thrombocytopenia (287.4)\(287.49) Other secondary thrombocytopenia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Secondary thrombocytopenia (287.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the blood and blood-forming organs (280-289.99)\Purpura and other hemorrhagic conditions (287)\Secondary thrombocytopenia (287.4)\(287.49) Other secondary thrombocytopenia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''287.49''', NULL,
+ '(287.49) Other secondary thrombocytopenia', '(287.49) Other secondary thrombocytopenia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''390'' AND ''459.99''', NULL,
+ 'Diseases of the circulatory system (390-459.99)', 'Diseases of the circulatory system (390-459.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''390'' AND ''392.99''', NULL,
+ 'Acute rheumatic fever (390-392.99)', 'Acute rheumatic fever (390-392.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\(390) Rheumatic fever without mention of heart involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\(390) Rheumatic fever without mention of heart involvement\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''390''', NULL,
+ '(390) Rheumatic fever without mention of heart involvement', '(390) Rheumatic fever without mention of heart involvement', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic chorea (392)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic chorea (392)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''392''', NULL,
+ 'Rheumatic chorea (392)', 'Rheumatic chorea (392)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic chorea (392)\(392.0) Rheumatic chorea with heart involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic chorea (392)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic chorea (392)\(392.0) Rheumatic chorea with heart involvement\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''392.0''', NULL,
+ '(392.0) Rheumatic chorea with heart involvement', '(392.0) Rheumatic chorea with heart involvement', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic chorea (392)\(392.9) Rheumatic chorea without mention of heart involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic chorea (392)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic chorea (392)\(392.9) Rheumatic chorea without mention of heart involvement\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''392.9''', NULL,
+ '(392.9) Rheumatic chorea without mention of heart involvement', '(392.9) Rheumatic chorea without mention of heart involvement', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''391''', NULL,
+ 'Rheumatic fever with heart involvement (391)', 'Rheumatic fever with heart involvement (391)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\(391.0) Acute rheumatic pericarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\(391.0) Acute rheumatic pericarditis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''391.0''', NULL,
+ '(391.0) Acute rheumatic pericarditis', '(391.0) Acute rheumatic pericarditis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\(391.1) Acute rheumatic endocarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\(391.1) Acute rheumatic endocarditis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''391.1''', NULL,
+ '(391.1) Acute rheumatic endocarditis', '(391.1) Acute rheumatic endocarditis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\(391.2) Acute rheumatic myocarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\(391.2) Acute rheumatic myocarditis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''391.2''', NULL,
+ '(391.2) Acute rheumatic myocarditis', '(391.2) Acute rheumatic myocarditis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\(391.8) Other acute rheumatic heart disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\(391.8) Other acute rheumatic heart disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''391.8''', NULL,
+ '(391.8) Other acute rheumatic heart disease', '(391.8) Other acute rheumatic heart disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\(391.9) Acute rheumatic heart disease, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Acute rheumatic fever (390-392.99)\Rheumatic fever with heart involvement (391)\(391.9) Acute rheumatic heart disease, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''391.9''', NULL,
+ '(391.9) Acute rheumatic heart disease, unspecified', '(391.9) Acute rheumatic heart disease, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''430'' AND ''438.99''', NULL,
+ 'Cerebrovascular disease (430-438.99)', 'Cerebrovascular disease (430-438.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\(430) Subarachnoid hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\(430) Subarachnoid hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''430''', NULL,
+ '(430) Subarachnoid hemorrhage', '(430) Subarachnoid hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\(431) Intracerebral hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\(431) Intracerebral hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''431''', NULL,
+ '(431) Intracerebral hemorrhage', '(431) Intracerebral hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\(436) Acute, but ill-defined, cerebrovascular disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\(436) Acute, but ill-defined, cerebrovascular disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''436''', NULL,
+ '(436) Acute, but ill-defined, cerebrovascular disease', '(436) Acute, but ill-defined, cerebrovascular disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438''', NULL,
+ 'Late effects of cerebrovascular disease (438)', 'Late effects of cerebrovascular disease (438)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\(438.0) Late effects of cerebrovascular disease, cognitive deficits\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\(438.0) Late effects of cerebrovascular disease, cognitive deficits\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.0''', NULL,
+ '(438.0) Late effects of cerebrovascular disease, cognitive deficits', '(438.0) Late effects of cerebrovascular disease, cognitive deficits', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\(438.6) Late effects of cerebrovascular disease, alterations of sensations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\(438.6) Late effects of cerebrovascular disease, alterations of sensations\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.6''', NULL,
+ '(438.6) Late effects of cerebrovascular disease, alterations of sensations', '(438.6) Late effects of cerebrovascular disease, alterations of sensations', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\(438.7) Late effects of cerebrovascular disease, disturbances of vision\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\(438.7) Late effects of cerebrovascular disease, disturbances of vision\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.7''', NULL,
+ '(438.7) Late effects of cerebrovascular disease, disturbances of vision', '(438.7) Late effects of cerebrovascular disease, disturbances of vision', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\(438.9) Unspecified late effects of cerebrovascular disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\(438.9) Unspecified late effects of cerebrovascular disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.9''', NULL,
+ '(438.9) Unspecified late effects of cerebrovascular disease', '(438.9) Unspecified late effects of cerebrovascular disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.2''', NULL,
+ 'Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)', 'Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)\(438.20) Late effects of cerebrovascular disease, hemiplegia affecting unspecified side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)\(438.20) Late effects of cerebrovascular disease, hemiplegia affecting unspecified side\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.20''', NULL,
+ '(438.20) Late effects of cerebrovascular disease, hemiplegia affecting unspecified side', '(438.20) Late effects of cerebrovascular disease, hemiplegia affecting unspecified side', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)\(438.21) Late effects of cerebrovascular disease, hemiplegia affecting dominant side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)\(438.21) Late effects of cerebrovascular disease, hemiplegia affecting dominant side\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.21''', NULL,
+ '(438.21) Late effects of cerebrovascular disease, hemiplegia affecting dominant side', '(438.21) Late effects of cerebrovascular disease, hemiplegia affecting dominant side', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)\(438.22) Late effects of cerebrovascular disease, hemiplegia affecting nondominant side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Hemiplegia/hemiparesis as late effect of cerebrovascular disease (438.2)\(438.22) Late effects of cerebrovascular disease, hemiplegia affecting nondominant side\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.22''', NULL,
+ '(438.22) Late effects of cerebrovascular disease, hemiplegia affecting nondominant side', '(438.22) Late effects of cerebrovascular disease, hemiplegia affecting nondominant side', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.4''', NULL,
+ 'Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)', 'Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)\(438.40) Late effects of cerebrovascular disease, monoplegia of lower limb affecting unspecified side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)\(438.40) Late effects of cerebrovascular disease, monoplegia of lower limb affecting unspecified side\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.40''', NULL,
+ '(438.40) Late effects of cerebrovascular disease, monoplegia of lower limb affecting unspecified side', '(438.40) Late effects of cerebrovascular disease, monoplegia of lower limb affecting unspecified side', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)\(438.41) Late effects of cerebrovascular disease, monoplegia of lower limb affecting dominant side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)\(438.41) Late effects of cerebrovascular disease, monoplegia of lower limb affecting dominant side\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.41''', NULL,
+ '(438.41) Late effects of cerebrovascular disease, monoplegia of lower limb affecting dominant side', '(438.41) Late effects of cerebrovascular disease, monoplegia of lower limb affecting dominant side', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)\(438.42) Late effects of cerebrovascular disease, monoplegia of lower limb affecting nondominant side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of lower limb as late effect of cerebrovascular disease (438.4)\(438.42) Late effects of cerebrovascular disease, monoplegia of lower limb affecting nondominant side\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.42''', NULL,
+ '(438.42) Late effects of cerebrovascular disease, monoplegia of lower limb affecting nondominant side', '(438.42) Late effects of cerebrovascular disease, monoplegia of lower limb affecting nondominant side', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.3''', NULL,
+ 'Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)', 'Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)\(438.30) Late effects of cerebrovascular disease, monoplegia of upper limb affecting unspecified side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)\(438.30) Late effects of cerebrovascular disease, monoplegia of upper limb affecting unspecified side\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.30''', NULL,
+ '(438.30) Late effects of cerebrovascular disease, monoplegia of upper limb affecting unspecified side', '(438.30) Late effects of cerebrovascular disease, monoplegia of upper limb affecting unspecified side', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)\(438.31) Late effects of cerebrovascular disease, monoplegia of upper limb affecting dominant side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)\(438.31) Late effects of cerebrovascular disease, monoplegia of upper limb affecting dominant side\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.31''', NULL,
+ '(438.31) Late effects of cerebrovascular disease, monoplegia of upper limb affecting dominant side', '(438.31) Late effects of cerebrovascular disease, monoplegia of upper limb affecting dominant side', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)\(438.32) Late effects of cerebrovascular disease, monoplegia of upper limb affecting nondominant side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Monoplegia of upper limb as late effect of cerebrovascular disease (438.3)\(438.32) Late effects of cerebrovascular disease, monoplegia of upper limb affecting nondominant side\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.32''', NULL,
+ '(438.32) Late effects of cerebrovascular disease, monoplegia of upper limb affecting nondominant side', '(438.32) Late effects of cerebrovascular disease, monoplegia of upper limb affecting nondominant side', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.8''', NULL,
+ 'Other late effects of cerebrovascular disease (438.8)', 'Other late effects of cerebrovascular disease (438.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\(438.81) Other late effects of cerebrovascular disease, apraxia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\(438.81) Other late effects of cerebrovascular disease, apraxia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.81''', NULL,
+ '(438.81) Other late effects of cerebrovascular disease, apraxia', '(438.81) Other late effects of cerebrovascular disease, apraxia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\(438.82) Other late effects of cerebrovascular disease, dysphagia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\(438.82) Other late effects of cerebrovascular disease, dysphagia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.82''', NULL,
+ '(438.82) Other late effects of cerebrovascular disease, dysphagia', '(438.82) Other late effects of cerebrovascular disease, dysphagia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\(438.83) Other late effects of cerebrovascular disease, facial weakness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\(438.83) Other late effects of cerebrovascular disease, facial weakness\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.83''', NULL,
+ '(438.83) Other late effects of cerebrovascular disease, facial weakness', '(438.83) Other late effects of cerebrovascular disease, facial weakness', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\(438.84) Other late effects of cerebrovascular disease, ataxia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\(438.84) Other late effects of cerebrovascular disease, ataxia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.84''', NULL,
+ '(438.84) Other late effects of cerebrovascular disease, ataxia', '(438.84) Other late effects of cerebrovascular disease, ataxia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\(438.85) Other late effects of cerebrovascular disease, vertigo\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\(438.85) Other late effects of cerebrovascular disease, vertigo\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.85''', NULL,
+ '(438.85) Other late effects of cerebrovascular disease, vertigo', '(438.85) Other late effects of cerebrovascular disease, vertigo', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\(438.89) Other late effects of cerebrovascular disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other late effects of cerebrovascular disease (438.8)\(438.89) Other late effects of cerebrovascular disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.89''', NULL,
+ '(438.89) Other late effects of cerebrovascular disease', '(438.89) Other late effects of cerebrovascular disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.5''', NULL,
+ 'Other paralytic syndrome as late effect of cerebrovascular disease (438.5)', 'Other paralytic syndrome as late effect of cerebrovascular disease (438.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\(438.50) Late effects of cerebrovascular disease, other paralytic syndrome affecting unspecified side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\(438.50) Late effects of cerebrovascular disease, other paralytic syndrome affecting unspecified side\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.50''', NULL,
+ '(438.50) Late effects of cerebrovascular disease, other paralytic syndrome affecting unspecified side', '(438.50) Late effects of cerebrovascular disease, other paralytic syndrome affecting unspecified side', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\(438.51) Late effects of cerebrovascular disease, other paralytic syndrome affecting dominant side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\(438.51) Late effects of cerebrovascular disease, other paralytic syndrome affecting dominant side\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.51''', NULL,
+ '(438.51) Late effects of cerebrovascular disease, other paralytic syndrome affecting dominant side', '(438.51) Late effects of cerebrovascular disease, other paralytic syndrome affecting dominant side', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\(438.52) Late effects of cerebrovascular disease, other paralytic syndrome affecting nondominant side\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\(438.52) Late effects of cerebrovascular disease, other paralytic syndrome affecting nondominant side\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.52''', NULL,
+ '(438.52) Late effects of cerebrovascular disease, other paralytic syndrome affecting nondominant side', '(438.52) Late effects of cerebrovascular disease, other paralytic syndrome affecting nondominant side', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\(438.53) Late effects of cerebrovascular disease, other paralytic syndrome, bilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Other paralytic syndrome as late effect of cerebrovascular disease (438.5)\(438.53) Late effects of cerebrovascular disease, other paralytic syndrome, bilateral\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.53''', NULL,
+ '(438.53) Late effects of cerebrovascular disease, other paralytic syndrome, bilateral', '(438.53) Late effects of cerebrovascular disease, other paralytic syndrome, bilateral', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.1''', NULL,
+ 'Speech and language deficits as late effect of cerebrovascular disease (438.1)', 'Speech and language deficits as late effect of cerebrovascular disease (438.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\(438.10) Late effects of cerebrovascular disease, speech and language deficit, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\(438.10) Late effects of cerebrovascular disease, speech and language deficit, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.10''', NULL,
+ '(438.10) Late effects of cerebrovascular disease, speech and language deficit, unspecified', '(438.10) Late effects of cerebrovascular disease, speech and language deficit, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\(438.11) Late effects of cerebrovascular disease, aphasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\(438.11) Late effects of cerebrovascular disease, aphasia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.11''', NULL,
+ '(438.11) Late effects of cerebrovascular disease, aphasia', '(438.11) Late effects of cerebrovascular disease, aphasia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\(438.12) Late effects of cerebrovascular disease, dysphasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\(438.12) Late effects of cerebrovascular disease, dysphasia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.12''', NULL,
+ '(438.12) Late effects of cerebrovascular disease, dysphasia', '(438.12) Late effects of cerebrovascular disease, dysphasia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\(438.13) Late effects of cerebrovascular disease, dysarthria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\(438.13) Late effects of cerebrovascular disease, dysarthria\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.13''', NULL,
+ '(438.13) Late effects of cerebrovascular disease, dysarthria', '(438.13) Late effects of cerebrovascular disease, dysarthria', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\(438.19) Late effects of cerebrovascular disease, other speech and language deficits\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Late effects of cerebrovascular disease (438)\Speech and language deficits as late effect of cerebrovascular disease (438.1)\(438.19) Late effects of cerebrovascular disease, other speech and language deficits\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''438.19''', NULL,
+ '(438.19) Late effects of cerebrovascular disease, other speech and language deficits', '(438.19) Late effects of cerebrovascular disease, other speech and language deficits', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433''', NULL,
+ 'Occlusion and stenosis of precerebral arteries (433)', 'Occlusion and stenosis of precerebral arteries (433)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of basilar artery (433.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of basilar artery (433.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.0''', NULL,
+ 'Occlusion and stenosis of basilar artery (433.0)', 'Occlusion and stenosis of basilar artery (433.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of basilar artery (433.0)\(433.00) Occlusion and stenosis of basilar artery without mention of cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of basilar artery (433.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of basilar artery (433.0)\(433.00) Occlusion and stenosis of basilar artery without mention of cerebral infarction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.00''', NULL,
+ '(433.00) Occlusion and stenosis of basilar artery without mention of cerebral infarction', '(433.00) Occlusion and stenosis of basilar artery without mention of cerebral infarction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of basilar artery (433.0)\(433.01) Occlusion and stenosis of basilar artery with cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of basilar artery (433.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of basilar artery (433.0)\(433.01) Occlusion and stenosis of basilar artery with cerebral infarction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.01''', NULL,
+ '(433.01) Occlusion and stenosis of basilar artery with cerebral infarction', '(433.01) Occlusion and stenosis of basilar artery with cerebral infarction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of carotid artery (433.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of carotid artery (433.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.1''', NULL,
+ 'Occlusion and stenosis of carotid artery (433.1)', 'Occlusion and stenosis of carotid artery (433.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of carotid artery (433.1)\(433.10) Occlusion and stenosis of carotid artery without mention of cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of carotid artery (433.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of carotid artery (433.1)\(433.10) Occlusion and stenosis of carotid artery without mention of cerebral infarction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.10''', NULL,
+ '(433.10) Occlusion and stenosis of carotid artery without mention of cerebral infarction', '(433.10) Occlusion and stenosis of carotid artery without mention of cerebral infarction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of carotid artery (433.1)\(433.11) Occlusion and stenosis of carotid artery with cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of carotid artery (433.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of carotid artery (433.1)\(433.11) Occlusion and stenosis of carotid artery with cerebral infarction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.11''', NULL,
+ '(433.11) Occlusion and stenosis of carotid artery with cerebral infarction', '(433.11) Occlusion and stenosis of carotid artery with cerebral infarction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of multiple and bilateral precerebral arteries (433.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of multiple and bilateral precerebral arteries (433.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.3''', NULL,
+ 'Occlusion and stenosis of multiple and bilateral precerebral arteries (433.3)', 'Occlusion and stenosis of multiple and bilateral precerebral arteries (433.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of multiple and bilateral precerebral arteries (433.3)\(433.30) Occlusion and stenosis of multiple and bilateral precerebral arteries without mention of cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of multiple and bilateral precerebral arteries (433.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of multiple and bilateral precerebral arteries (433.3)\(433.30) Occlusion and stenosis of multiple and bilateral precerebral arteries without mention of cerebral infarction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.30''', NULL,
+ '(433.30) Occlusion and stenosis of multiple and bilateral precerebral arteries without mention of cerebral infarction', '(433.30) Occlusion and stenosis of multiple and bilateral precerebral arteries without mention of cerebral infarction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of multiple and bilateral precerebral arteries (433.3)\(433.31) Occlusion and stenosis of multiple and bilateral precerebral arteries with cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of multiple and bilateral precerebral arteries (433.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of multiple and bilateral precerebral arteries (433.3)\(433.31) Occlusion and stenosis of multiple and bilateral precerebral arteries with cerebral infarction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.31''', NULL,
+ '(433.31) Occlusion and stenosis of multiple and bilateral precerebral arteries with cerebral infarction', '(433.31) Occlusion and stenosis of multiple and bilateral precerebral arteries with cerebral infarction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of other specified precerebral artery (433.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of other specified precerebral artery (433.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.8''', NULL,
+ 'Occlusion and stenosis of other specified precerebral artery (433.8)', 'Occlusion and stenosis of other specified precerebral artery (433.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of other specified precerebral artery (433.8)\(433.80) Occlusion and stenosis of other specified precerebral artery without mention of cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of other specified precerebral artery (433.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of other specified precerebral artery (433.8)\(433.80) Occlusion and stenosis of other specified precerebral artery without mention of cerebral infarction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.80''', NULL,
+ '(433.80) Occlusion and stenosis of other specified precerebral artery without mention of cerebral infarction', '(433.80) Occlusion and stenosis of other specified precerebral artery without mention of cerebral infarction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of other specified precerebral artery (433.8)\(433.81) Occlusion and stenosis of other specified precerebral artery with cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of other specified precerebral artery (433.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of other specified precerebral artery (433.8)\(433.81) Occlusion and stenosis of other specified precerebral artery with cerebral infarction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.81''', NULL,
+ '(433.81) Occlusion and stenosis of other specified precerebral artery with cerebral infarction', '(433.81) Occlusion and stenosis of other specified precerebral artery with cerebral infarction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of unspecified precerebral artery (433.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of unspecified precerebral artery (433.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.9''', NULL,
+ 'Occlusion and stenosis of unspecified precerebral artery (433.9)', 'Occlusion and stenosis of unspecified precerebral artery (433.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of unspecified precerebral artery (433.9)\(433.90) Occlusion and stenosis of unspecified precerebral artery without mention of cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of unspecified precerebral artery (433.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of unspecified precerebral artery (433.9)\(433.90) Occlusion and stenosis of unspecified precerebral artery without mention of cerebral infarction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.90''', NULL,
+ '(433.90) Occlusion and stenosis of unspecified precerebral artery without mention of cerebral infarction', '(433.90) Occlusion and stenosis of unspecified precerebral artery without mention of cerebral infarction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of unspecified precerebral artery (433.9)\(433.91) Occlusion and stenosis of unspecified precerebral artery with cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of unspecified precerebral artery (433.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of unspecified precerebral artery (433.9)\(433.91) Occlusion and stenosis of unspecified precerebral artery with cerebral infarction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.91''', NULL,
+ '(433.91) Occlusion and stenosis of unspecified precerebral artery with cerebral infarction', '(433.91) Occlusion and stenosis of unspecified precerebral artery with cerebral infarction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of vertebral artery (433.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of vertebral artery (433.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.2''', NULL,
+ 'Occlusion and stenosis of vertebral artery (433.2)', 'Occlusion and stenosis of vertebral artery (433.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of vertebral artery (433.2)\(433.20) Occlusion and stenosis of vertebral artery without mention of cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of vertebral artery (433.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of vertebral artery (433.2)\(433.20) Occlusion and stenosis of vertebral artery without mention of cerebral infarction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.20''', NULL,
+ '(433.20) Occlusion and stenosis of vertebral artery without mention of cerebral infarction', '(433.20) Occlusion and stenosis of vertebral artery without mention of cerebral infarction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of vertebral artery (433.2)\(433.21) Occlusion and stenosis of vertebral artery with cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of vertebral artery (433.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion and stenosis of precerebral arteries (433)\Occlusion and stenosis of vertebral artery (433.2)\(433.21) Occlusion and stenosis of vertebral artery with cerebral infarction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''433.21''', NULL,
+ '(433.21) Occlusion and stenosis of vertebral artery with cerebral infarction', '(433.21) Occlusion and stenosis of vertebral artery with cerebral infarction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''434''', NULL,
+ 'Occlusion of cerebral arteries (434)', 'Occlusion of cerebral arteries (434)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral artery occlusion, unspecified (434.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral artery occlusion, unspecified (434.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''434.9''', NULL,
+ 'Cerebral artery occlusion, unspecified (434.9)', 'Cerebral artery occlusion, unspecified (434.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral artery occlusion, unspecified (434.9)\(434.90) Cerebral artery occlusion, unspecified without mention of cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral artery occlusion, unspecified (434.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral artery occlusion, unspecified (434.9)\(434.90) Cerebral artery occlusion, unspecified without mention of cerebral infarction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''434.90''', NULL,
+ '(434.90) Cerebral artery occlusion, unspecified without mention of cerebral infarction', '(434.90) Cerebral artery occlusion, unspecified without mention of cerebral infarction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral artery occlusion, unspecified (434.9)\(434.91) Cerebral artery occlusion, unspecified with cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral artery occlusion, unspecified (434.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral artery occlusion, unspecified (434.9)\(434.91) Cerebral artery occlusion, unspecified with cerebral infarction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''434.91''', NULL,
+ '(434.91) Cerebral artery occlusion, unspecified with cerebral infarction', '(434.91) Cerebral artery occlusion, unspecified with cerebral infarction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral embolism (434.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral embolism (434.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''434.1''', NULL,
+ 'Cerebral embolism (434.1)', 'Cerebral embolism (434.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral embolism (434.1)\(434.10) Cerebral embolism without mention of cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral embolism (434.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral embolism (434.1)\(434.10) Cerebral embolism without mention of cerebral infarction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''434.10''', NULL,
+ '(434.10) Cerebral embolism without mention of cerebral infarction', '(434.10) Cerebral embolism without mention of cerebral infarction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral embolism (434.1)\(434.11) Cerebral embolism with cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral embolism (434.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral embolism (434.1)\(434.11) Cerebral embolism with cerebral infarction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''434.11''', NULL,
+ '(434.11) Cerebral embolism with cerebral infarction', '(434.11) Cerebral embolism with cerebral infarction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral thrombosis (434.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral thrombosis (434.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''434.0''', NULL,
+ 'Cerebral thrombosis (434.0)', 'Cerebral thrombosis (434.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral thrombosis (434.0)\(434.00) Cerebral thrombosis without mention of cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral thrombosis (434.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral thrombosis (434.0)\(434.00) Cerebral thrombosis without mention of cerebral infarction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''434.00''', NULL,
+ '(434.00) Cerebral thrombosis without mention of cerebral infarction', '(434.00) Cerebral thrombosis without mention of cerebral infarction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral thrombosis (434.0)\(434.01) Cerebral thrombosis with cerebral infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral thrombosis (434.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Occlusion of cerebral arteries (434)\Cerebral thrombosis (434.0)\(434.01) Cerebral thrombosis with cerebral infarction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''434.01''', NULL,
+ '(434.01) Cerebral thrombosis with cerebral infarction', '(434.01) Cerebral thrombosis with cerebral infarction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''437''', NULL,
+ 'Other and ill-defined cerebrovascular disease (437)', 'Other and ill-defined cerebrovascular disease (437)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.0) Cerebral atherosclerosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.0) Cerebral atherosclerosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''437.0''', NULL,
+ '(437.0) Cerebral atherosclerosis', '(437.0) Cerebral atherosclerosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.1) Other generalized ischemic cerebrovascular disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.1) Other generalized ischemic cerebrovascular disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''437.1''', NULL,
+ '(437.1) Other generalized ischemic cerebrovascular disease', '(437.1) Other generalized ischemic cerebrovascular disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.2) Hypertensive encephalopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.2) Hypertensive encephalopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''437.2''', NULL,
+ '(437.2) Hypertensive encephalopathy', '(437.2) Hypertensive encephalopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.3) Cerebral aneurysm, nonruptured\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.3) Cerebral aneurysm, nonruptured\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''437.3''', NULL,
+ '(437.3) Cerebral aneurysm, nonruptured', '(437.3) Cerebral aneurysm, nonruptured', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.4) Cerebral arteritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.4) Cerebral arteritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''437.4''', NULL,
+ '(437.4) Cerebral arteritis', '(437.4) Cerebral arteritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.5) Moyamoya disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.5) Moyamoya disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''437.5''', NULL,
+ '(437.5) Moyamoya disease', '(437.5) Moyamoya disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.6) Nonpyogenic thrombosis of intracranial venous sinus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.6) Nonpyogenic thrombosis of intracranial venous sinus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''437.6''', NULL,
+ '(437.6) Nonpyogenic thrombosis of intracranial venous sinus', '(437.6) Nonpyogenic thrombosis of intracranial venous sinus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.7) Transient global amnesia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.7) Transient global amnesia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''437.7''', NULL,
+ '(437.7) Transient global amnesia', '(437.7) Transient global amnesia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.8) Other ill-defined cerebrovascular disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.8) Other ill-defined cerebrovascular disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''437.8''', NULL,
+ '(437.8) Other ill-defined cerebrovascular disease', '(437.8) Other ill-defined cerebrovascular disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.9) Unspecified cerebrovascular disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and ill-defined cerebrovascular disease (437)\(437.9) Unspecified cerebrovascular disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''437.9''', NULL,
+ '(437.9) Unspecified cerebrovascular disease', '(437.9) Unspecified cerebrovascular disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and unspecified intracranial hemorrhage (432)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and unspecified intracranial hemorrhage (432)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''432''', NULL,
+ 'Other and unspecified intracranial hemorrhage (432)', 'Other and unspecified intracranial hemorrhage (432)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and unspecified intracranial hemorrhage (432)\(432.0) Nontraumatic extradural hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and unspecified intracranial hemorrhage (432)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and unspecified intracranial hemorrhage (432)\(432.0) Nontraumatic extradural hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''432.0''', NULL,
+ '(432.0) Nontraumatic extradural hemorrhage', '(432.0) Nontraumatic extradural hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and unspecified intracranial hemorrhage (432)\(432.1) Subdural hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and unspecified intracranial hemorrhage (432)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and unspecified intracranial hemorrhage (432)\(432.1) Subdural hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''432.1''', NULL,
+ '(432.1) Subdural hemorrhage', '(432.1) Subdural hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and unspecified intracranial hemorrhage (432)\(432.9) Unspecified intracranial hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and unspecified intracranial hemorrhage (432)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Other and unspecified intracranial hemorrhage (432)\(432.9) Unspecified intracranial hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''432.9''', NULL,
+ '(432.9) Unspecified intracranial hemorrhage', '(432.9) Unspecified intracranial hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''435''', NULL,
+ 'Transient cerebral ischemia (435)', 'Transient cerebral ischemia (435)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\(435.0) Basilar artery syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\(435.0) Basilar artery syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''435.0''', NULL,
+ '(435.0) Basilar artery syndrome', '(435.0) Basilar artery syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\(435.1) Vertebral artery syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\(435.1) Vertebral artery syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''435.1''', NULL,
+ '(435.1) Vertebral artery syndrome', '(435.1) Vertebral artery syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\(435.2) Subclavian steal syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\(435.2) Subclavian steal syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''435.2''', NULL,
+ '(435.2) Subclavian steal syndrome', '(435.2) Subclavian steal syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\(435.3) Vertebrobasilar artery syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\(435.3) Vertebrobasilar artery syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''435.3''', NULL,
+ '(435.3) Vertebrobasilar artery syndrome', '(435.3) Vertebrobasilar artery syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\(435.8) Other specified transient cerebral ischemias\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\(435.8) Other specified transient cerebral ischemias\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''435.8''', NULL,
+ '(435.8) Other specified transient cerebral ischemias', '(435.8) Other specified transient cerebral ischemias', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\(435.9) Unspecified transient cerebral ischemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Cerebrovascular disease (430-438.99)\Transient cerebral ischemia (435)\(435.9) Unspecified transient cerebral ischemia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''435.9''', NULL,
+ '(435.9) Unspecified transient cerebral ischemia', '(435.9) Unspecified transient cerebral ischemia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''393'' AND ''398.99''', NULL,
+ 'Chronic rheumatic heart disease (393-398.99)', 'Chronic rheumatic heart disease (393-398.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\(393) Chronic rheumatic pericarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\(393) Chronic rheumatic pericarditis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''393''', NULL,
+ '(393) Chronic rheumatic pericarditis', '(393) Chronic rheumatic pericarditis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of aortic valve (395)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of aortic valve (395)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''395''', NULL,
+ 'Diseases of aortic valve (395)', 'Diseases of aortic valve (395)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of aortic valve (395)\(395.0) Rheumatic aortic stenosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of aortic valve (395)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of aortic valve (395)\(395.0) Rheumatic aortic stenosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''395.0''', NULL,
+ '(395.0) Rheumatic aortic stenosis', '(395.0) Rheumatic aortic stenosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of aortic valve (395)\(395.1) Rheumatic aortic insufficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of aortic valve (395)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of aortic valve (395)\(395.1) Rheumatic aortic insufficiency\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''395.1''', NULL,
+ '(395.1) Rheumatic aortic insufficiency', '(395.1) Rheumatic aortic insufficiency', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of aortic valve (395)\(395.2) Rheumatic aortic stenosis with insufficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of aortic valve (395)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of aortic valve (395)\(395.2) Rheumatic aortic stenosis with insufficiency\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''395.2''', NULL,
+ '(395.2) Rheumatic aortic stenosis with insufficiency', '(395.2) Rheumatic aortic stenosis with insufficiency', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of aortic valve (395)\(395.9) Other and unspecified rheumatic aortic diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of aortic valve (395)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of aortic valve (395)\(395.9) Other and unspecified rheumatic aortic diseases\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''395.9''', NULL,
+ '(395.9) Other and unspecified rheumatic aortic diseases', '(395.9) Other and unspecified rheumatic aortic diseases', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''396''', NULL,
+ 'Diseases of mitral and aortic valves (396)', 'Diseases of mitral and aortic valves (396)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\(396.0) Mitral valve stenosis and aortic valve stenosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\(396.0) Mitral valve stenosis and aortic valve stenosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''396.0''', NULL,
+ '(396.0) Mitral valve stenosis and aortic valve stenosis', '(396.0) Mitral valve stenosis and aortic valve stenosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\(396.1) Mitral valve stenosis and aortic valve insufficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\(396.1) Mitral valve stenosis and aortic valve insufficiency\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''396.1''', NULL,
+ '(396.1) Mitral valve stenosis and aortic valve insufficiency', '(396.1) Mitral valve stenosis and aortic valve insufficiency', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\(396.2) Mitral valve insufficiency and aortic valve stenosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\(396.2) Mitral valve insufficiency and aortic valve stenosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''396.2''', NULL,
+ '(396.2) Mitral valve insufficiency and aortic valve stenosis', '(396.2) Mitral valve insufficiency and aortic valve stenosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\(396.3) Mitral valve insufficiency and aortic valve insufficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\(396.3) Mitral valve insufficiency and aortic valve insufficiency\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''396.3''', NULL,
+ '(396.3) Mitral valve insufficiency and aortic valve insufficiency', '(396.3) Mitral valve insufficiency and aortic valve insufficiency', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\(396.8) Multiple involvement of mitral and aortic valves\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\(396.8) Multiple involvement of mitral and aortic valves\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''396.8''', NULL,
+ '(396.8) Multiple involvement of mitral and aortic valves', '(396.8) Multiple involvement of mitral and aortic valves', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\(396.9) Mitral and aortic valve diseases, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral and aortic valves (396)\(396.9) Mitral and aortic valve diseases, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''396.9''', NULL,
+ '(396.9) Mitral and aortic valve diseases, unspecified', '(396.9) Mitral and aortic valve diseases, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral valve (394)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral valve (394)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''394''', NULL,
+ 'Diseases of mitral valve (394)', 'Diseases of mitral valve (394)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral valve (394)\(394.0) Mitral stenosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral valve (394)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral valve (394)\(394.0) Mitral stenosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''394.0''', NULL,
+ '(394.0) Mitral stenosis', '(394.0) Mitral stenosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral valve (394)\(394.1) Rheumatic mitral insufficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral valve (394)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral valve (394)\(394.1) Rheumatic mitral insufficiency\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''394.1''', NULL,
+ '(394.1) Rheumatic mitral insufficiency', '(394.1) Rheumatic mitral insufficiency', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral valve (394)\(394.2) Mitral stenosis with insufficiency\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral valve (394)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral valve (394)\(394.2) Mitral stenosis with insufficiency\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''394.2''', NULL,
+ '(394.2) Mitral stenosis with insufficiency', '(394.2) Mitral stenosis with insufficiency', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral valve (394)\(394.9) Other and unspecified mitral valve diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral valve (394)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of mitral valve (394)\(394.9) Other and unspecified mitral valve diseases\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''394.9''', NULL,
+ '(394.9) Other and unspecified mitral valve diseases', '(394.9) Other and unspecified mitral valve diseases', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of other endocardial structures (397)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of other endocardial structures (397)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''397''', NULL,
+ 'Diseases of other endocardial structures (397)', 'Diseases of other endocardial structures (397)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of other endocardial structures (397)\(397.0) Diseases of tricuspid valve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of other endocardial structures (397)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of other endocardial structures (397)\(397.0) Diseases of tricuspid valve\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''397.0''', NULL,
+ '(397.0) Diseases of tricuspid valve', '(397.0) Diseases of tricuspid valve', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of other endocardial structures (397)\(397.1) Rheumatic diseases of pulmonary valve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of other endocardial structures (397)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of other endocardial structures (397)\(397.1) Rheumatic diseases of pulmonary valve\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''397.1''', NULL,
+ '(397.1) Rheumatic diseases of pulmonary valve', '(397.1) Rheumatic diseases of pulmonary valve', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of other endocardial structures (397)\(397.9) Rheumatic diseases of endocardium, valve unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of other endocardial structures (397)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Diseases of other endocardial structures (397)\(397.9) Rheumatic diseases of endocardium, valve unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''397.9''', NULL,
+ '(397.9) Rheumatic diseases of endocardium, valve unspecified', '(397.9) Rheumatic diseases of endocardium, valve unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''398''', NULL,
+ 'Other rheumatic heart disease (398)', 'Other rheumatic heart disease (398)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\(398.0) Rheumatic myocarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\(398.0) Rheumatic myocarditis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''398.0''', NULL,
+ '(398.0) Rheumatic myocarditis', '(398.0) Rheumatic myocarditis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\Other and unspecified rheumatic heart diseases (398.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\Other and unspecified rheumatic heart diseases (398.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''398.9''', NULL,
+ 'Other and unspecified rheumatic heart diseases (398.9)', 'Other and unspecified rheumatic heart diseases (398.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\Other and unspecified rheumatic heart diseases (398.9)\(398.90) Rheumatic heart disease, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\Other and unspecified rheumatic heart diseases (398.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\Other and unspecified rheumatic heart diseases (398.9)\(398.90) Rheumatic heart disease, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''398.90''', NULL,
+ '(398.90) Rheumatic heart disease, unspecified', '(398.90) Rheumatic heart disease, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\Other and unspecified rheumatic heart diseases (398.9)\(398.91) Rheumatic heart failure (congestive)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\Other and unspecified rheumatic heart diseases (398.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\Other and unspecified rheumatic heart diseases (398.9)\(398.91) Rheumatic heart failure (congestive)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''398.91) Rheumatic heart failure (congestive''', NULL,
+ '(398.91) Rheumatic heart failure (congestive)', '(398.91) Rheumatic heart failure (congestive)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\Other and unspecified rheumatic heart diseases (398.9)\(398.99) Other rheumatic heart diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\Other and unspecified rheumatic heart diseases (398.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Chronic rheumatic heart disease (393-398.99)\Other rheumatic heart disease (398)\Other and unspecified rheumatic heart diseases (398.9)\(398.99) Other rheumatic heart diseases\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''398.99''', NULL,
+ '(398.99) Other rheumatic heart diseases', '(398.99) Other rheumatic heart diseases', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''440'' AND ''449.99''', NULL,
+ 'Diseases of arteries, arterioles, and capillaries (440-449.99)', 'Diseases of arteries, arterioles, and capillaries (440-449.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\(449) Septic arterial embolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\(449) Septic arterial embolism\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''449''', NULL,
+ '(449) Septic arterial embolism', '(449) Septic arterial embolism', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''441''', NULL,
+ 'Aortic aneurysm and dissection (441)', 'Aortic aneurysm and dissection (441)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.1) Thoracic aneurysm, ruptured\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.1) Thoracic aneurysm, ruptured\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''441.1''', NULL,
+ '(441.1) Thoracic aneurysm, ruptured', '(441.1) Thoracic aneurysm, ruptured', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.2) Thoracic aneurysm without mention of rupture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.2) Thoracic aneurysm without mention of rupture\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''441.2''', NULL,
+ '(441.2) Thoracic aneurysm without mention of rupture', '(441.2) Thoracic aneurysm without mention of rupture', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.3) Abdominal aneurysm, ruptured\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.3) Abdominal aneurysm, ruptured\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''441.3''', NULL,
+ '(441.3) Abdominal aneurysm, ruptured', '(441.3) Abdominal aneurysm, ruptured', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.4) Abdominal aneurysm without mention of rupture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.4) Abdominal aneurysm without mention of rupture\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''441.4''', NULL,
+ '(441.4) Abdominal aneurysm without mention of rupture', '(441.4) Abdominal aneurysm without mention of rupture', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.5) Aortic aneurysm of unspecified site, ruptured\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.5) Aortic aneurysm of unspecified site, ruptured\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''441.5''', NULL,
+ '(441.5) Aortic aneurysm of unspecified site, ruptured', '(441.5) Aortic aneurysm of unspecified site, ruptured', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.6) Thoracoabdominal aneurysm, ruptured\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.6) Thoracoabdominal aneurysm, ruptured\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''441.6''', NULL,
+ '(441.6) Thoracoabdominal aneurysm, ruptured', '(441.6) Thoracoabdominal aneurysm, ruptured', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.7) Thoracoabdominal aneurysm, without mention of rupture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.7) Thoracoabdominal aneurysm, without mention of rupture\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''441.7''', NULL,
+ '(441.7) Thoracoabdominal aneurysm, without mention of rupture', '(441.7) Thoracoabdominal aneurysm, without mention of rupture', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.9) Aortic aneurysm of unspecified site without mention of rupture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\(441.9) Aortic aneurysm of unspecified site without mention of rupture\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''441.9''', NULL,
+ '(441.9) Aortic aneurysm of unspecified site without mention of rupture', '(441.9) Aortic aneurysm of unspecified site without mention of rupture', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\Dissecting aneurysm of aorta (441.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\Dissecting aneurysm of aorta (441.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''441.0''', NULL,
+ 'Dissecting aneurysm of aorta (441.0)', 'Dissecting aneurysm of aorta (441.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\Dissecting aneurysm of aorta (441.0)\(441.00) Dissection of aorta, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\Dissecting aneurysm of aorta (441.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\Dissecting aneurysm of aorta (441.0)\(441.00) Dissection of aorta, unspecified site\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''441.00''', NULL,
+ '(441.00) Dissection of aorta, unspecified site', '(441.00) Dissection of aorta, unspecified site', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\Dissecting aneurysm of aorta (441.0)\(441.01) Dissection of aorta, thoracic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\Dissecting aneurysm of aorta (441.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\Dissecting aneurysm of aorta (441.0)\(441.01) Dissection of aorta, thoracic\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''441.01''', NULL,
+ '(441.01) Dissection of aorta, thoracic', '(441.01) Dissection of aorta, thoracic', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\Dissecting aneurysm of aorta (441.0)\(441.02) Dissection of aorta, abdominal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\Dissecting aneurysm of aorta (441.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\Dissecting aneurysm of aorta (441.0)\(441.02) Dissection of aorta, abdominal\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''441.02''', NULL,
+ '(441.02) Dissection of aorta, abdominal', '(441.02) Dissection of aorta, abdominal', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\Dissecting aneurysm of aorta (441.0)\(441.03) Dissection of aorta, thoracoabdominal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\Dissecting aneurysm of aorta (441.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Aortic aneurysm and dissection (441)\Dissecting aneurysm of aorta (441.0)\(441.03) Dissection of aorta, thoracoabdominal\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''441.03''', NULL,
+ '(441.03) Dissection of aorta, thoracoabdominal', '(441.03) Dissection of aorta, thoracoabdominal', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''444''', NULL,
+ 'Arterial embolism and thrombosis (444)', 'Arterial embolism and thrombosis (444)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\(444.1) Embolism and thrombosis of thoracic aorta\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\(444.1) Embolism and thrombosis of thoracic aorta\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''444.1''', NULL,
+ '(444.1) Embolism and thrombosis of thoracic aorta', '(444.1) Embolism and thrombosis of thoracic aorta', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\(444.9) Embolism and thrombosis of unspecified artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\(444.9) Embolism and thrombosis of unspecified artery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''444.9''', NULL,
+ '(444.9) Embolism and thrombosis of unspecified artery', '(444.9) Embolism and thrombosis of unspecified artery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of abdominal aorta (444.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of abdominal aorta (444.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''444.0''', NULL,
+ 'Embolism and thrombosis of abdominal aorta (444.0)', 'Embolism and thrombosis of abdominal aorta (444.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of abdominal aorta (444.0)\(444.09) Other arterial embolism and thrombosis of abdominal aorta\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of abdominal aorta (444.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of abdominal aorta (444.0)\(444.09) Other arterial embolism and thrombosis of abdominal aorta\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''444.09''', NULL,
+ '(444.09) Other arterial embolism and thrombosis of abdominal aorta', '(444.09) Other arterial embolism and thrombosis of abdominal aorta', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of arteries of the extremities (444.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of arteries of the extremities (444.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''444.2''', NULL,
+ 'Embolism and thrombosis of arteries of the extremities (444.2)', 'Embolism and thrombosis of arteries of the extremities (444.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of arteries of the extremities (444.2)\(444.21) Arterial embolism and thrombosis of upper extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of arteries of the extremities (444.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of arteries of the extremities (444.2)\(444.21) Arterial embolism and thrombosis of upper extremity\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''444.21''', NULL,
+ '(444.21) Arterial embolism and thrombosis of upper extremity', '(444.21) Arterial embolism and thrombosis of upper extremity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of arteries of the extremities (444.2)\(444.22) Arterial embolism and thrombosis of lower extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of arteries of the extremities (444.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of arteries of the extremities (444.2)\(444.22) Arterial embolism and thrombosis of lower extremity\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''444.22''', NULL,
+ '(444.22) Arterial embolism and thrombosis of lower extremity', '(444.22) Arterial embolism and thrombosis of lower extremity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of other specified artery (444.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of other specified artery (444.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''444.8''', NULL,
+ 'Embolism and thrombosis of other specified artery (444.8)', 'Embolism and thrombosis of other specified artery (444.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of other specified artery (444.8)\(444.81) Embolism and thrombosis of iliac artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of other specified artery (444.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of other specified artery (444.8)\(444.81) Embolism and thrombosis of iliac artery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''444.81''', NULL,
+ '(444.81) Embolism and thrombosis of iliac artery', '(444.81) Embolism and thrombosis of iliac artery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of other specified artery (444.8)\(444.89) Embolism and thrombosis of other specified artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of other specified artery (444.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Arterial embolism and thrombosis (444)\Embolism and thrombosis of other specified artery (444.8)\(444.89) Embolism and thrombosis of other specified artery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''444.89''', NULL,
+ '(444.89) Embolism and thrombosis of other specified artery', '(444.89) Embolism and thrombosis of other specified artery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''445''', NULL,
+ 'Atheroembolism (445)', 'Atheroembolism (445)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism Of extremities (445.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism Of extremities (445.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''445.0''', NULL,
+ 'Atheroembolism Of extremities (445.0)', 'Atheroembolism Of extremities (445.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism Of extremities (445.0)\(445.01) Atheroembolism of upper extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism Of extremities (445.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism Of extremities (445.0)\(445.01) Atheroembolism of upper extremity\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''445.01''', NULL,
+ '(445.01) Atheroembolism of upper extremity', '(445.01) Atheroembolism of upper extremity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism Of extremities (445.0)\(445.02) Atheroembolism of lower extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism Of extremities (445.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism Of extremities (445.0)\(445.02) Atheroembolism of lower extremity\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''445.02''', NULL,
+ '(445.02) Atheroembolism of lower extremity', '(445.02) Atheroembolism of lower extremity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism of other sites (445.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism of other sites (445.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''445.8''', NULL,
+ 'Atheroembolism of other sites (445.8)', 'Atheroembolism of other sites (445.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism of other sites (445.8)\(445.81) Atheroembolism of kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism of other sites (445.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism of other sites (445.8)\(445.81) Atheroembolism of kidney\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''445.81''', NULL,
+ '(445.81) Atheroembolism of kidney', '(445.81) Atheroembolism of kidney', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism of other sites (445.8)\(445.89) Atheroembolism of other site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism of other sites (445.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atheroembolism (445)\Atheroembolism of other sites (445.8)\(445.89) Atheroembolism of other site\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''445.89''', NULL,
+ '(445.89) Atheroembolism of other site', '(445.89) Atheroembolism of other site', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440''', NULL,
+ 'Atherosclerosis (440)', 'Atherosclerosis (440)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\(440.0) Atherosclerosis of aorta\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\(440.0) Atherosclerosis of aorta\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.0''', NULL,
+ '(440.0) Atherosclerosis of aorta', '(440.0) Atherosclerosis of aorta', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\(440.1) Atherosclerosis of renal artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\(440.1) Atherosclerosis of renal artery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.1''', NULL,
+ '(440.1) Atherosclerosis of renal artery', '(440.1) Atherosclerosis of renal artery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\(440.4) Chronic total occlusion of artery of the extremities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\(440.4) Chronic total occlusion of artery of the extremities\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.4''', NULL,
+ '(440.4) Chronic total occlusion of artery of the extremities', '(440.4) Chronic total occlusion of artery of the extremities', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\(440.8) Atherosclerosis of other specified arteries\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\(440.8) Atherosclerosis of other specified arteries\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.8''', NULL,
+ '(440.8) Atherosclerosis of other specified arteries', '(440.8) Atherosclerosis of other specified arteries', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\(440.9) Generalized and unspecified atherosclerosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\(440.9) Generalized and unspecified atherosclerosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.9''', NULL,
+ '(440.9) Generalized and unspecified atherosclerosis', '(440.9) Generalized and unspecified atherosclerosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.2''', NULL,
+ 'Atherosclerosis of native arteries of the extremities (440.2)', 'Atherosclerosis of native arteries of the extremities (440.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\(440.20) Atherosclerosis of native arteries of the extremities, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\(440.20) Atherosclerosis of native arteries of the extremities, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.20''', NULL,
+ '(440.20) Atherosclerosis of native arteries of the extremities, unspecified', '(440.20) Atherosclerosis of native arteries of the extremities, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\(440.21) Atherosclerosis of native arteries of the extremities with intermittent claudication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\(440.21) Atherosclerosis of native arteries of the extremities with intermittent claudication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.21''', NULL,
+ '(440.21) Atherosclerosis of native arteries of the extremities with intermittent claudication', '(440.21) Atherosclerosis of native arteries of the extremities with intermittent claudication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\(440.22) Atherosclerosis of native arteries of the extremities with rest pain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\(440.22) Atherosclerosis of native arteries of the extremities with rest pain\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.22''', NULL,
+ '(440.22) Atherosclerosis of native arteries of the extremities with rest pain', '(440.22) Atherosclerosis of native arteries of the extremities with rest pain', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\(440.23) Atherosclerosis of native arteries of the extremities with ulceration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\(440.23) Atherosclerosis of native arteries of the extremities with ulceration\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.23''', NULL,
+ '(440.23) Atherosclerosis of native arteries of the extremities with ulceration', '(440.23) Atherosclerosis of native arteries of the extremities with ulceration', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\(440.24) Atherosclerosis of native arteries of the extremities with gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\(440.24) Atherosclerosis of native arteries of the extremities with gangrene\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.24''', NULL,
+ '(440.24) Atherosclerosis of native arteries of the extremities with gangrene', '(440.24) Atherosclerosis of native arteries of the extremities with gangrene', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\(440.29) Other atherosclerosis of native arteries of the extremities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Atherosclerosis of native arteries of the extremities (440.2)\(440.29) Other atherosclerosis of native arteries of the extremities\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.29''', NULL,
+ '(440.29) Other atherosclerosis of native arteries of the extremities', '(440.29) Other atherosclerosis of native arteries of the extremities', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Of bypass graft of the extremities (440.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Of bypass graft of the extremities (440.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.3''', NULL,
+ 'Of bypass graft of the extremities (440.3)', 'Of bypass graft of the extremities (440.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Of bypass graft of the extremities (440.3)\(440.30) Atherosclerosis of unspecified bypass graft of the extremities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Of bypass graft of the extremities (440.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Of bypass graft of the extremities (440.3)\(440.30) Atherosclerosis of unspecified bypass graft of the extremities\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.30''', NULL,
+ '(440.30) Atherosclerosis of unspecified bypass graft of the extremities', '(440.30) Atherosclerosis of unspecified bypass graft of the extremities', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Of bypass graft of the extremities (440.3)\(440.31) Atherosclerosis of autologous vein bypass graft of the extremities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Of bypass graft of the extremities (440.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Of bypass graft of the extremities (440.3)\(440.31) Atherosclerosis of autologous vein bypass graft of the extremities\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.31''', NULL,
+ '(440.31) Atherosclerosis of autologous vein bypass graft of the extremities', '(440.31) Atherosclerosis of autologous vein bypass graft of the extremities', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Of bypass graft of the extremities (440.3)\(440.32) Atherosclerosis of nonautologous biological bypass graft of the extremities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Of bypass graft of the extremities (440.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Atherosclerosis (440)\Of bypass graft of the extremities (440.3)\(440.32) Atherosclerosis of nonautologous biological bypass graft of the extremities\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''440.32''', NULL,
+ '(440.32) Atherosclerosis of nonautologous biological bypass graft of the extremities', '(440.32) Atherosclerosis of nonautologous biological bypass graft of the extremities', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Disease of capillaries (448)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Disease of capillaries (448)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''448''', NULL,
+ 'Disease of capillaries (448)', 'Disease of capillaries (448)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Disease of capillaries (448)\(448.0) Hereditary hemorrhagic telangiectasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Disease of capillaries (448)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Disease of capillaries (448)\(448.0) Hereditary hemorrhagic telangiectasia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''448.0''', NULL,
+ '(448.0) Hereditary hemorrhagic telangiectasia', '(448.0) Hereditary hemorrhagic telangiectasia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Disease of capillaries (448)\(448.1) Nevus, non-neoplastic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Disease of capillaries (448)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Disease of capillaries (448)\(448.1) Nevus, non-neoplastic\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''448.1''', NULL,
+ '(448.1) Nevus, non-neoplastic', '(448.1) Nevus, non-neoplastic', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Disease of capillaries (448)\(448.9) Other and unspecified capillary diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Disease of capillaries (448)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Disease of capillaries (448)\(448.9) Other and unspecified capillary diseases\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''448.9''', NULL,
+ '(448.9) Other and unspecified capillary diseases', '(448.9) Other and unspecified capillary diseases', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''442''', NULL,
+ 'Other aneurysm (442)', 'Other aneurysm (442)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\(442.0) Aneurysm of artery of upper extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\(442.0) Aneurysm of artery of upper extremity\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''442.0''', NULL,
+ '(442.0) Aneurysm of artery of upper extremity', '(442.0) Aneurysm of artery of upper extremity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\(442.1) Aneurysm of renal artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\(442.1) Aneurysm of renal artery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''442.1''', NULL,
+ '(442.1) Aneurysm of renal artery', '(442.1) Aneurysm of renal artery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\(442.2) Aneurysm of iliac artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\(442.2) Aneurysm of iliac artery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''442.2''', NULL,
+ '(442.2) Aneurysm of iliac artery', '(442.2) Aneurysm of iliac artery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\(442.3) Aneurysm of artery of lower extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\(442.3) Aneurysm of artery of lower extremity\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''442.3''', NULL,
+ '(442.3) Aneurysm of artery of lower extremity', '(442.3) Aneurysm of artery of lower extremity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\(442.9) Aneurysm of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\(442.9) Aneurysm of unspecified site\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''442.9''', NULL,
+ '(442.9) Aneurysm of unspecified site', '(442.9) Aneurysm of unspecified site', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''442.8''', NULL,
+ 'Aneurysm of other specified artery (442.8)', 'Aneurysm of other specified artery (442.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\(442.81) Aneurysm of artery of neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\(442.81) Aneurysm of artery of neck\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''442.81''', NULL,
+ '(442.81) Aneurysm of artery of neck', '(442.81) Aneurysm of artery of neck', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\(442.82) Aneurysm of subclavian artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\(442.82) Aneurysm of subclavian artery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''442.82''', NULL,
+ '(442.82) Aneurysm of subclavian artery', '(442.82) Aneurysm of subclavian artery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\(442.83) Aneurysm of splenic artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\(442.83) Aneurysm of splenic artery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''442.83''', NULL,
+ '(442.83) Aneurysm of splenic artery', '(442.83) Aneurysm of splenic artery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\(442.84) Aneurysm of other visceral artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\(442.84) Aneurysm of other visceral artery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''442.84''', NULL,
+ '(442.84) Aneurysm of other visceral artery', '(442.84) Aneurysm of other visceral artery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\(442.89) Aneurysm of other specified artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other aneurysm (442)\Aneurysm of other specified artery (442.8)\(442.89) Aneurysm of other specified artery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''442.89''', NULL,
+ '(442.89) Aneurysm of other specified artery', '(442.89) Aneurysm of other specified artery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''447''', NULL,
+ 'Other disorders of arteries and arterioles (447)', 'Other disorders of arteries and arterioles (447)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.0) Arteriovenous fistula, acquired\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.0) Arteriovenous fistula, acquired\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''447.0''', NULL,
+ '(447.0) Arteriovenous fistula, acquired', '(447.0) Arteriovenous fistula, acquired', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.1) Stricture of artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.1) Stricture of artery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''447.1''', NULL,
+ '(447.1) Stricture of artery', '(447.1) Stricture of artery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.2) Rupture of artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.2) Rupture of artery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''447.2''', NULL,
+ '(447.2) Rupture of artery', '(447.2) Rupture of artery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.3) Hyperplasia of renal artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.3) Hyperplasia of renal artery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''447.3''', NULL,
+ '(447.3) Hyperplasia of renal artery', '(447.3) Hyperplasia of renal artery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.4) Celiac artery compression syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.4) Celiac artery compression syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''447.4''', NULL,
+ '(447.4) Celiac artery compression syndrome', '(447.4) Celiac artery compression syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.5) Necrosis of artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.5) Necrosis of artery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''447.5''', NULL,
+ '(447.5) Necrosis of artery', '(447.5) Necrosis of artery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.6) Arteritis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.6) Arteritis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''447.6''', NULL,
+ '(447.6) Arteritis, unspecified', '(447.6) Arteritis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.8) Other specified disorders of arteries and arterioles\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.8) Other specified disorders of arteries and arterioles\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''447.8''', NULL,
+ '(447.8) Other specified disorders of arteries and arterioles', '(447.8) Other specified disorders of arteries and arterioles', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.9) Unspecified disorders of arteries and arterioles\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\(447.9) Unspecified disorders of arteries and arterioles\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''447.9''', NULL,
+ '(447.9) Unspecified disorders of arteries and arterioles', '(447.9) Unspecified disorders of arteries and arterioles', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\Aortic ectasia (447.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\Aortic ectasia (447.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''447.7''', NULL,
+ 'Aortic ectasia (447.7)', 'Aortic ectasia (447.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\Aortic ectasia (447.7)\(447.70) Aortic ectasia, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\Aortic ectasia (447.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\Aortic ectasia (447.7)\(447.70) Aortic ectasia, unspecified site\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''447.70''', NULL,
+ '(447.70) Aortic ectasia, unspecified site', '(447.70) Aortic ectasia, unspecified site', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\Aortic ectasia (447.7)\(447.71) Thoracic aortic ectasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\Aortic ectasia (447.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\Aortic ectasia (447.7)\(447.71) Thoracic aortic ectasia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''447.71''', NULL,
+ '(447.71) Thoracic aortic ectasia', '(447.71) Thoracic aortic ectasia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\Aortic ectasia (447.7)\(447.72) Abdominal aortic ectasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\Aortic ectasia (447.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\Aortic ectasia (447.7)\(447.72) Abdominal aortic ectasia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''447.72''', NULL,
+ '(447.72) Abdominal aortic ectasia', '(447.72) Abdominal aortic ectasia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\Aortic ectasia (447.7)\(447.73) Thoracoabdominal aortic ectasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\Aortic ectasia (447.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other disorders of arteries and arterioles (447)\Aortic ectasia (447.7)\(447.73) Thoracoabdominal aortic ectasia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''447.73''', NULL,
+ '(447.73) Thoracoabdominal aortic ectasia', '(447.73) Thoracoabdominal aortic ectasia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''443''', NULL,
+ 'Other peripheral vascular disease (443)', 'Other peripheral vascular disease (443)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\(443.0) Raynaud''s syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\(443.0) Raynaud''s syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''443.0''', NULL,
+ '(443.0) Raynaud''s syndrome', '(443.0) Raynaud''s syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\(443.1) Thromboangiitis obliterans [Buerger''s disease]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\(443.1) Thromboangiitis obliterans [Buerger''s disease]\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''443.1''', NULL,
+ '(443.1) Thromboangiitis obliterans [Buerger''s disease]', '(443.1) Thromboangiitis obliterans [Buerger''s disease]', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\(443.9) Peripheral vascular disease, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\(443.9) Peripheral vascular disease, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''443.9''', NULL,
+ '(443.9) Peripheral vascular disease, unspecified', '(443.9) Peripheral vascular disease, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''443.2''', NULL,
+ 'Other arterial dissection (443.2)', 'Other arterial dissection (443.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\(443.21) Dissection of carotid artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\(443.21) Dissection of carotid artery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''443.21''', NULL,
+ '(443.21) Dissection of carotid artery', '(443.21) Dissection of carotid artery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\(443.22) Dissection of iliac artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\(443.22) Dissection of iliac artery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''443.22''', NULL,
+ '(443.22) Dissection of iliac artery', '(443.22) Dissection of iliac artery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\(443.23) Dissection of renal artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\(443.23) Dissection of renal artery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''443.23''', NULL,
+ '(443.23) Dissection of renal artery', '(443.23) Dissection of renal artery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\(443.24) Dissection of vertebral artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\(443.24) Dissection of vertebral artery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''443.24''', NULL,
+ '(443.24) Dissection of vertebral artery', '(443.24) Dissection of vertebral artery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\(443.29) Dissection of other artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other arterial dissection (443.2)\(443.29) Dissection of other artery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''443.29''', NULL,
+ '(443.29) Dissection of other artery', '(443.29) Dissection of other artery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other specified peripheral vascular diseases (443.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other specified peripheral vascular diseases (443.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''443.8''', NULL,
+ 'Other specified peripheral vascular diseases (443.8)', 'Other specified peripheral vascular diseases (443.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other specified peripheral vascular diseases (443.8)\(443.81) Peripheral angiopathy in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other specified peripheral vascular diseases (443.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other specified peripheral vascular diseases (443.8)\(443.81) Peripheral angiopathy in diseases classified elsewhere\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''443.81''', NULL,
+ '(443.81) Peripheral angiopathy in diseases classified elsewhere', '(443.81) Peripheral angiopathy in diseases classified elsewhere', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other specified peripheral vascular diseases (443.8)\(443.82) Erythromelalgia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other specified peripheral vascular diseases (443.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other specified peripheral vascular diseases (443.8)\(443.82) Erythromelalgia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''443.82''', NULL,
+ '(443.82) Erythromelalgia', '(443.82) Erythromelalgia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other specified peripheral vascular diseases (443.8)\(443.89) Other specified peripheral vascular diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other specified peripheral vascular diseases (443.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Other peripheral vascular disease (443)\Other specified peripheral vascular diseases (443.8)\(443.89) Other specified peripheral vascular diseases\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''443.89''', NULL,
+ '(443.89) Other specified peripheral vascular diseases', '(443.89) Other specified peripheral vascular diseases', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''446''', NULL,
+ 'Polyarteritis nodosa and allied conditions (446)', 'Polyarteritis nodosa and allied conditions (446)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\(446.0) Polyarteritis nodosa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\(446.0) Polyarteritis nodosa\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''446.0''', NULL,
+ '(446.0) Polyarteritis nodosa', '(446.0) Polyarteritis nodosa', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\(446.1) Acute febrile mucocutaneous lymph node syndrome [MCLS]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\(446.1) Acute febrile mucocutaneous lymph node syndrome [MCLS]\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''446.1''', NULL,
+ '(446.1) Acute febrile mucocutaneous lymph node syndrome [MCLS]', '(446.1) Acute febrile mucocutaneous lymph node syndrome [MCLS]', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\(446.3) Lethal midline granuloma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\(446.3) Lethal midline granuloma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''446.3''', NULL,
+ '(446.3) Lethal midline granuloma', '(446.3) Lethal midline granuloma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\(446.4) Wegener''s granulomatosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\(446.4) Wegener''s granulomatosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''446.4''', NULL,
+ '(446.4) Wegener''s granulomatosis', '(446.4) Wegener''s granulomatosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\(446.5) Giant cell arteritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\(446.5) Giant cell arteritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''446.5''', NULL,
+ '(446.5) Giant cell arteritis', '(446.5) Giant cell arteritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\(446.6) Thrombotic microangiopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\(446.6) Thrombotic microangiopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''446.6''', NULL,
+ '(446.6) Thrombotic microangiopathy', '(446.6) Thrombotic microangiopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\(446.7) Takayasu''s disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\(446.7) Takayasu''s disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''446.7''', NULL,
+ '(446.7) Takayasu''s disease', '(446.7) Takayasu''s disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\Hypersensitivity angiitis (446.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\Hypersensitivity angiitis (446.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''446.2''', NULL,
+ 'Hypersensitivity angiitis (446.2)', 'Hypersensitivity angiitis (446.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\Hypersensitivity angiitis (446.2)\(446.20) Hypersensitivity angiitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\Hypersensitivity angiitis (446.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\Hypersensitivity angiitis (446.2)\(446.20) Hypersensitivity angiitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''446.20''', NULL,
+ '(446.20) Hypersensitivity angiitis, unspecified', '(446.20) Hypersensitivity angiitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\Hypersensitivity angiitis (446.2)\(446.21) Goodpasture''s syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\Hypersensitivity angiitis (446.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\Hypersensitivity angiitis (446.2)\(446.21) Goodpasture''s syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''446.21''', NULL,
+ '(446.21) Goodpasture''s syndrome', '(446.21) Goodpasture''s syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\Hypersensitivity angiitis (446.2)\(446.29) Other specified hypersensitivity angiitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\Hypersensitivity angiitis (446.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of arteries, arterioles, and capillaries (440-449.99)\Polyarteritis nodosa and allied conditions (446)\Hypersensitivity angiitis (446.2)\(446.29) Other specified hypersensitivity angiitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''446.29''', NULL,
+ '(446.29) Other specified hypersensitivity angiitis', '(446.29) Other specified hypersensitivity angiitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''415'' AND ''417.99''', NULL,
+ 'Diseases of pulmonary circulation (415-417.99)', 'Diseases of pulmonary circulation (415-417.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''415''', NULL,
+ 'Acute pulmonary heart disease (415)', 'Acute pulmonary heart disease (415)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\(415.0) Acute cor pulmonale\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\(415.0) Acute cor pulmonale\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''415.0''', NULL,
+ '(415.0) Acute cor pulmonale', '(415.0) Acute cor pulmonale', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\Pulmonary embolism and infarction (415.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\Pulmonary embolism and infarction (415.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''415.1''', NULL,
+ 'Pulmonary embolism and infarction (415.1)', 'Pulmonary embolism and infarction (415.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\Pulmonary embolism and infarction (415.1)\(415.11) Iatrogenic pulmonary embolism and infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\Pulmonary embolism and infarction (415.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\Pulmonary embolism and infarction (415.1)\(415.11) Iatrogenic pulmonary embolism and infarction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''415.11''', NULL,
+ '(415.11) Iatrogenic pulmonary embolism and infarction', '(415.11) Iatrogenic pulmonary embolism and infarction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\Pulmonary embolism and infarction (415.1)\(415.12) Septic pulmonary embolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\Pulmonary embolism and infarction (415.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\Pulmonary embolism and infarction (415.1)\(415.12) Septic pulmonary embolism\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''415.12''', NULL,
+ '(415.12) Septic pulmonary embolism', '(415.12) Septic pulmonary embolism', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\Pulmonary embolism and infarction (415.1)\(415.13) Saddle embolus of pulmonary artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\Pulmonary embolism and infarction (415.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\Pulmonary embolism and infarction (415.1)\(415.13) Saddle embolus of pulmonary artery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''415.13''', NULL,
+ '(415.13) Saddle embolus of pulmonary artery', '(415.13) Saddle embolus of pulmonary artery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\Pulmonary embolism and infarction (415.1)\(415.19) Other pulmonary embolism and infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\Pulmonary embolism and infarction (415.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Acute pulmonary heart disease (415)\Pulmonary embolism and infarction (415.1)\(415.19) Other pulmonary embolism and infarction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''415.19''', NULL,
+ '(415.19) Other pulmonary embolism and infarction', '(415.19) Other pulmonary embolism and infarction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''416''', NULL,
+ 'Chronic pulmonary heart disease (416)', 'Chronic pulmonary heart disease (416)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\(416.0) Primary pulmonary hypertension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\(416.0) Primary pulmonary hypertension\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''416.0''', NULL,
+ '(416.0) Primary pulmonary hypertension', '(416.0) Primary pulmonary hypertension', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\(416.1) Kyphoscoliotic heart disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\(416.1) Kyphoscoliotic heart disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''416.1''', NULL,
+ '(416.1) Kyphoscoliotic heart disease', '(416.1) Kyphoscoliotic heart disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\(416.2) Chronic pulmonary embolism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\(416.2) Chronic pulmonary embolism\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''416.2''', NULL,
+ '(416.2) Chronic pulmonary embolism', '(416.2) Chronic pulmonary embolism', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\(416.8) Other chronic pulmonary heart diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\(416.8) Other chronic pulmonary heart diseases\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''416.8''', NULL,
+ '(416.8) Other chronic pulmonary heart diseases', '(416.8) Other chronic pulmonary heart diseases', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\(416.9) Chronic pulmonary heart disease, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Chronic pulmonary heart disease (416)\(416.9) Chronic pulmonary heart disease, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''416.9''', NULL,
+ '(416.9) Chronic pulmonary heart disease, unspecified', '(416.9) Chronic pulmonary heart disease, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Other diseases of pulmonary circulation (417)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Other diseases of pulmonary circulation (417)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''417''', NULL,
+ 'Other diseases of pulmonary circulation (417)', 'Other diseases of pulmonary circulation (417)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Other diseases of pulmonary circulation (417)\(417.0) Arteriovenous fistula of pulmonary vessels\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Other diseases of pulmonary circulation (417)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Other diseases of pulmonary circulation (417)\(417.0) Arteriovenous fistula of pulmonary vessels\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''417.0''', NULL,
+ '(417.0) Arteriovenous fistula of pulmonary vessels', '(417.0) Arteriovenous fistula of pulmonary vessels', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Other diseases of pulmonary circulation (417)\(417.1) Aneurysm of pulmonary artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Other diseases of pulmonary circulation (417)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Other diseases of pulmonary circulation (417)\(417.1) Aneurysm of pulmonary artery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''417.1''', NULL,
+ '(417.1) Aneurysm of pulmonary artery', '(417.1) Aneurysm of pulmonary artery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Other diseases of pulmonary circulation (417)\(417.8) Other specified diseases of pulmonary circulation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Other diseases of pulmonary circulation (417)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Other diseases of pulmonary circulation (417)\(417.8) Other specified diseases of pulmonary circulation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''417.8''', NULL,
+ '(417.8) Other specified diseases of pulmonary circulation', '(417.8) Other specified diseases of pulmonary circulation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Other diseases of pulmonary circulation (417)\(417.9) Unspecified disease of pulmonary circulation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Other diseases of pulmonary circulation (417)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of pulmonary circulation (415-417.99)\Other diseases of pulmonary circulation (417)\(417.9) Unspecified disease of pulmonary circulation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''417.9''', NULL,
+ '(417.9) Unspecified disease of pulmonary circulation', '(417.9) Unspecified disease of pulmonary circulation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''451'' AND ''459.99''', NULL,
+ 'Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)', 'Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\(452) Portal vein thrombosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\(452) Portal vein thrombosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''452''', NULL,
+ '(452) Portal vein thrombosis', '(452) Portal vein thrombosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''455''', NULL,
+ 'Hemorrhoids (455)', 'Hemorrhoids (455)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.0) Internal hemorrhoids without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.0) Internal hemorrhoids without mention of complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''455.0''', NULL,
+ '(455.0) Internal hemorrhoids without mention of complication', '(455.0) Internal hemorrhoids without mention of complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.1) Internal thrombosed hemorrhoids\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.1) Internal thrombosed hemorrhoids\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''455.1''', NULL,
+ '(455.1) Internal thrombosed hemorrhoids', '(455.1) Internal thrombosed hemorrhoids', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.2) Internal hemorrhoids with other complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.2) Internal hemorrhoids with other complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''455.2''', NULL,
+ '(455.2) Internal hemorrhoids with other complication', '(455.2) Internal hemorrhoids with other complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.3) External hemorrhoids without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.3) External hemorrhoids without mention of complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''455.3''', NULL,
+ '(455.3) External hemorrhoids without mention of complication', '(455.3) External hemorrhoids without mention of complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.4) External thrombosed hemorrhoids\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.4) External thrombosed hemorrhoids\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''455.4''', NULL,
+ '(455.4) External thrombosed hemorrhoids', '(455.4) External thrombosed hemorrhoids', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.5) External hemorrhoids with other complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.5) External hemorrhoids with other complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''455.5''', NULL,
+ '(455.5) External hemorrhoids with other complication', '(455.5) External hemorrhoids with other complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.6) Unspecified hemorrhoids without mention of complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.6) Unspecified hemorrhoids without mention of complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''455.6''', NULL,
+ '(455.6) Unspecified hemorrhoids without mention of complication', '(455.6) Unspecified hemorrhoids without mention of complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.7) Unspecified thrombosed hemorrhoids\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.7) Unspecified thrombosed hemorrhoids\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''455.7''', NULL,
+ '(455.7) Unspecified thrombosed hemorrhoids', '(455.7) Unspecified thrombosed hemorrhoids', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.8) Unspecified hemorrhoids with other complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.8) Unspecified hemorrhoids with other complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''455.8''', NULL,
+ '(455.8) Unspecified hemorrhoids with other complication', '(455.8) Unspecified hemorrhoids with other complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.9) Residual hemorrhoidal skin tags\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hemorrhoids (455)\(455.9) Residual hemorrhoidal skin tags\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''455.9''', NULL,
+ '(455.9) Residual hemorrhoidal skin tags', '(455.9) Residual hemorrhoidal skin tags', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''458''', NULL,
+ 'Hypotension (458)', 'Hypotension (458)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\(458.0) Orthostatic hypotension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\(458.0) Orthostatic hypotension\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''458.0''', NULL,
+ '(458.0) Orthostatic hypotension', '(458.0) Orthostatic hypotension', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\(458.1) Chronic hypotension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\(458.1) Chronic hypotension\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''458.1''', NULL,
+ '(458.1) Chronic hypotension', '(458.1) Chronic hypotension', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\(458.8) Other specified hypotension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\(458.8) Other specified hypotension\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''458.8''', NULL,
+ '(458.8) Other specified hypotension', '(458.8) Other specified hypotension', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\(458.9) Hypotension, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\(458.9) Hypotension, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''458.9''', NULL,
+ '(458.9) Hypotension, unspecified', '(458.9) Hypotension, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\Iatrogenic hypotension (458.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\Iatrogenic hypotension (458.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''458.2''', NULL,
+ 'Iatrogenic hypotension (458.2)', 'Iatrogenic hypotension (458.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\Iatrogenic hypotension (458.2)\(458.21) Hypotension of hemodialysis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\Iatrogenic hypotension (458.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\Iatrogenic hypotension (458.2)\(458.21) Hypotension of hemodialysis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''458.21''', NULL,
+ '(458.21) Hypotension of hemodialysis', '(458.21) Hypotension of hemodialysis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\Iatrogenic hypotension (458.2)\(458.29) Other iatrogenic hypotension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\Iatrogenic hypotension (458.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Hypotension (458)\Iatrogenic hypotension (458.2)\(458.29) Other iatrogenic hypotension\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''458.29''', NULL,
+ '(458.29) Other iatrogenic hypotension', '(458.29) Other iatrogenic hypotension', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''457''', NULL,
+ 'Noninfectious disorders of lymphatic channels (457)', 'Noninfectious disorders of lymphatic channels (457)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\(457.0) Postmastectomy lymphedema syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\(457.0) Postmastectomy lymphedema syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''457.0''', NULL,
+ '(457.0) Postmastectomy lymphedema syndrome', '(457.0) Postmastectomy lymphedema syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\(457.1) Other lymphedema\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\(457.1) Other lymphedema\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''457.1''', NULL,
+ '(457.1) Other lymphedema', '(457.1) Other lymphedema', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\(457.2) Lymphangitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\(457.2) Lymphangitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''457.2''', NULL,
+ '(457.2) Lymphangitis', '(457.2) Lymphangitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\(457.8) Other noninfectious disorders of lymphatic channels\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\(457.8) Other noninfectious disorders of lymphatic channels\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''457.8''', NULL,
+ '(457.8) Other noninfectious disorders of lymphatic channels', '(457.8) Other noninfectious disorders of lymphatic channels', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\(457.9) Unspecified noninfectious disorder of lymphatic channels\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Noninfectious disorders of lymphatic channels (457)\(457.9) Unspecified noninfectious disorder of lymphatic channels\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''457.9''', NULL,
+ '(457.9) Unspecified noninfectious disorder of lymphatic channels', '(457.9) Unspecified noninfectious disorder of lymphatic channels', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459''', NULL,
+ 'Other disorders of circulatory system (459)', 'Other disorders of circulatory system (459)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\(459.0) Hemorrhage, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\(459.0) Hemorrhage, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.0''', NULL,
+ '(459.0) Hemorrhage, unspecified', '(459.0) Hemorrhage, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\(459.2) Compression of vein\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\(459.2) Compression of vein\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.2''', NULL,
+ '(459.2) Compression of vein', '(459.2) Compression of vein', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\(459.9) Unspecified circulatory system disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\(459.9) Unspecified circulatory system disorder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.9''', NULL,
+ '(459.9) Unspecified circulatory system disorder', '(459.9) Unspecified circulatory system disorder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''idiopathic) (459.3''', NULL,
+ 'Chronic venous hypertension (idiopathic) (459.3)', 'Chronic venous hypertension (idiopathic) (459.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\(459.30) Chronic venous hypertension without complications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\(459.30) Chronic venous hypertension without complications\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.30''', NULL,
+ '(459.30) Chronic venous hypertension without complications', '(459.30) Chronic venous hypertension without complications', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\(459.31) Chronic venous hypertension with ulcer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\(459.31) Chronic venous hypertension with ulcer\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.31''', NULL,
+ '(459.31) Chronic venous hypertension with ulcer', '(459.31) Chronic venous hypertension with ulcer', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\(459.32) Chronic venous hypertension with inflammation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\(459.32) Chronic venous hypertension with inflammation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.32''', NULL,
+ '(459.32) Chronic venous hypertension with inflammation', '(459.32) Chronic venous hypertension with inflammation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\(459.33) Chronic venous hypertension with ulcer and inflammation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\(459.33) Chronic venous hypertension with ulcer and inflammation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.33''', NULL,
+ '(459.33) Chronic venous hypertension with ulcer and inflammation', '(459.33) Chronic venous hypertension with ulcer and inflammation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\(459.39) Chronic venous hypertension with other complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Chronic venous hypertension (idiopathic) (459.3)\(459.39) Chronic venous hypertension with other complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.39''', NULL,
+ '(459.39) Chronic venous hypertension with other complication', '(459.39) Chronic venous hypertension with other complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Other specified disorders of circulatory system (459.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Other specified disorders of circulatory system (459.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.8''', NULL,
+ 'Other specified disorders of circulatory system (459.8)', 'Other specified disorders of circulatory system (459.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Other specified disorders of circulatory system (459.8)\(459.81) Venous (peripheral) insufficiency, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Other specified disorders of circulatory system (459.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Other specified disorders of circulatory system (459.8)\(459.81) Venous (peripheral) insufficiency, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.81) Venous (peripheral''', NULL,
+ '(459.81) Venous (peripheral) insufficiency, unspecified', '(459.81) Venous (peripheral) insufficiency, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Other specified disorders of circulatory system (459.8)\(459.89) Other specified disorders of circulatory system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Other specified disorders of circulatory system (459.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Other specified disorders of circulatory system (459.8)\(459.89) Other specified disorders of circulatory system\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.89''', NULL,
+ '(459.89) Other specified disorders of circulatory system', '(459.89) Other specified disorders of circulatory system', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.1''', NULL,
+ 'Postphlebitic syndrome (459.1)', 'Postphlebitic syndrome (459.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\(459.10) Postphlebetic syndrome without complications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\(459.10) Postphlebetic syndrome without complications\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.10''', NULL,
+ '(459.10) Postphlebetic syndrome without complications', '(459.10) Postphlebetic syndrome without complications', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\(459.11) Postphlebetic syndrome with ulcer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\(459.11) Postphlebetic syndrome with ulcer\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.11''', NULL,
+ '(459.11) Postphlebetic syndrome with ulcer', '(459.11) Postphlebetic syndrome with ulcer', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\(459.12) Postphlebetic syndrome with inflammation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\(459.12) Postphlebetic syndrome with inflammation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.12''', NULL,
+ '(459.12) Postphlebetic syndrome with inflammation', '(459.12) Postphlebetic syndrome with inflammation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\(459.13) Postphlebetic syndrome with ulcer and inflammation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\(459.13) Postphlebetic syndrome with ulcer and inflammation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.13''', NULL,
+ '(459.13) Postphlebetic syndrome with ulcer and inflammation', '(459.13) Postphlebetic syndrome with ulcer and inflammation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\(459.19) Postphlebetic syndrome with other complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other disorders of circulatory system (459)\Postphlebitic syndrome (459.1)\(459.19) Postphlebetic syndrome with other complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''459.19''', NULL,
+ '(459.19) Postphlebetic syndrome with other complication', '(459.19) Postphlebetic syndrome with other complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453''', NULL,
+ 'Other venous embolism and thrombosis (453)', 'Other venous embolism and thrombosis (453)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\(453.0) Budd-chiari syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\(453.0) Budd-chiari syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.0''', NULL,
+ '(453.0) Budd-chiari syndrome', '(453.0) Budd-chiari syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\(453.1) Thrombophlebitis migrans\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\(453.1) Thrombophlebitis migrans\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.1''', NULL,
+ '(453.1) Thrombophlebitis migrans', '(453.1) Thrombophlebitis migrans', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\(453.2) Other venous embolism and thrombosis of inferior vena cava\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\(453.2) Other venous embolism and thrombosis of inferior vena cava\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.2''', NULL,
+ '(453.2) Other venous embolism and thrombosis of inferior vena cava', '(453.2) Other venous embolism and thrombosis of inferior vena cava', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\(453.3) Other venous embolism and thrombosis of renal vein\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\(453.3) Other venous embolism and thrombosis of renal vein\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.3''', NULL,
+ '(453.3) Other venous embolism and thrombosis of renal vein', '(453.3) Other venous embolism and thrombosis of renal vein', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\(453.6) Venous embolism and thrombosis of superficial vessels of lower extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\(453.6) Venous embolism and thrombosis of superficial vessels of lower extremity\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.6''', NULL,
+ '(453.6) Venous embolism and thrombosis of superficial vessels of lower extremity', '(453.6) Venous embolism and thrombosis of superficial vessels of lower extremity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\(453.9) Other venous embolism and thrombosis of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\(453.9) Other venous embolism and thrombosis of unspecified site\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.9''', NULL,
+ '(453.9) Other venous embolism and thrombosis of unspecified site', '(453.9) Other venous embolism and thrombosis of unspecified site', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.4''', NULL,
+ 'Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)', 'Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)\(453.40) Acute venous embolism and thrombosis of unspecified deep vessels of lower extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)\(453.40) Acute venous embolism and thrombosis of unspecified deep vessels of lower extremity\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.40''', NULL,
+ '(453.40) Acute venous embolism and thrombosis of unspecified deep vessels of lower extremity', '(453.40) Acute venous embolism and thrombosis of unspecified deep vessels of lower extremity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)\(453.41) Acute venous embolism and thrombosis of deep vessels of proximal lower extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)\(453.41) Acute venous embolism and thrombosis of deep vessels of proximal lower extremity\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.41''', NULL,
+ '(453.41) Acute venous embolism and thrombosis of deep vessels of proximal lower extremity', '(453.41) Acute venous embolism and thrombosis of deep vessels of proximal lower extremity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)\(453.42) Acute venous embolism and thrombosis of deep vessels of distal lower extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of deep vessels of lower extremity (453.4)\(453.42) Acute venous embolism and thrombosis of deep vessels of distal lower extremity\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.42''', NULL,
+ '(453.42) Acute venous embolism and thrombosis of deep vessels of distal lower extremity', '(453.42) Acute venous embolism and thrombosis of deep vessels of distal lower extremity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.8''', NULL,
+ 'Acute venous embolism and thrombosis of other specified veins (453.8)', 'Acute venous embolism and thrombosis of other specified veins (453.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.81) Acute venous embolism and thrombosis of superficial veins of upper extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.81) Acute venous embolism and thrombosis of superficial veins of upper extremity\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.81''', NULL,
+ '(453.81) Acute venous embolism and thrombosis of superficial veins of upper extremity', '(453.81) Acute venous embolism and thrombosis of superficial veins of upper extremity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.82) Acute venous embolism and thrombosis of deep veins of upper extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.82) Acute venous embolism and thrombosis of deep veins of upper extremity\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.82''', NULL,
+ '(453.82) Acute venous embolism and thrombosis of deep veins of upper extremity', '(453.82) Acute venous embolism and thrombosis of deep veins of upper extremity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.83) Acute venous embolism and thrombosis of upper extremity, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.83) Acute venous embolism and thrombosis of upper extremity, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.83''', NULL,
+ '(453.83) Acute venous embolism and thrombosis of upper extremity, unspecified', '(453.83) Acute venous embolism and thrombosis of upper extremity, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.84) Acute venous embolism and thrombosis of axillary veins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.84) Acute venous embolism and thrombosis of axillary veins\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.84''', NULL,
+ '(453.84) Acute venous embolism and thrombosis of axillary veins', '(453.84) Acute venous embolism and thrombosis of axillary veins', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.85) Acute venous embolism and thrombosis of subclavian veins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.85) Acute venous embolism and thrombosis of subclavian veins\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.85''', NULL,
+ '(453.85) Acute venous embolism and thrombosis of subclavian veins', '(453.85) Acute venous embolism and thrombosis of subclavian veins', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.86) Acute venous embolism and thrombosis of internal jugular veins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.86) Acute venous embolism and thrombosis of internal jugular veins\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.86''', NULL,
+ '(453.86) Acute venous embolism and thrombosis of internal jugular veins', '(453.86) Acute venous embolism and thrombosis of internal jugular veins', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.87) Acute venous embolism and thrombosis of other thoracic veins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.87) Acute venous embolism and thrombosis of other thoracic veins\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.87''', NULL,
+ '(453.87) Acute venous embolism and thrombosis of other thoracic veins', '(453.87) Acute venous embolism and thrombosis of other thoracic veins', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.89) Acute venous embolism and thrombosis of other specified veins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Acute venous embolism and thrombosis of other specified veins (453.8)\(453.89) Acute venous embolism and thrombosis of other specified veins\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.89''', NULL,
+ '(453.89) Acute venous embolism and thrombosis of other specified veins', '(453.89) Acute venous embolism and thrombosis of other specified veins', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.5''', NULL,
+ 'Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)', 'Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\(453.50) Chronic venous embolism and thrombosis of unspecified deep vessels of lower extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\(453.50) Chronic venous embolism and thrombosis of unspecified deep vessels of lower extremity\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.50''', NULL,
+ '(453.50) Chronic venous embolism and thrombosis of unspecified deep vessels of lower extremity', '(453.50) Chronic venous embolism and thrombosis of unspecified deep vessels of lower extremity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\(453.51) Chronic venous embolism and thrombosis of deep vessels of proximal lower extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\(453.51) Chronic venous embolism and thrombosis of deep vessels of proximal lower extremity\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.51''', NULL,
+ '(453.51) Chronic venous embolism and thrombosis of deep vessels of proximal lower extremity', '(453.51) Chronic venous embolism and thrombosis of deep vessels of proximal lower extremity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\(453.52) Chronic venous embolism and thrombosis of deep vessels of distal lower extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of deep vessels of lower extremity (453.5)\(453.52) Chronic venous embolism and thrombosis of deep vessels of distal lower extremity\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.52''', NULL,
+ '(453.52) Chronic venous embolism and thrombosis of deep vessels of distal lower extremity', '(453.52) Chronic venous embolism and thrombosis of deep vessels of distal lower extremity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.7''', NULL,
+ 'Chronic venous embolism and thrombosis of other specified vessels (453.7)', 'Chronic venous embolism and thrombosis of other specified vessels (453.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.71) Chronic venous embolism and thrombosis of superficial veins of upper extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.71) Chronic venous embolism and thrombosis of superficial veins of upper extremity\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.71''', NULL,
+ '(453.71) Chronic venous embolism and thrombosis of superficial veins of upper extremity', '(453.71) Chronic venous embolism and thrombosis of superficial veins of upper extremity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.72) Chronic venous embolism and thrombosis of deep veins of upper extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.72) Chronic venous embolism and thrombosis of deep veins of upper extremity\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.72''', NULL,
+ '(453.72) Chronic venous embolism and thrombosis of deep veins of upper extremity', '(453.72) Chronic venous embolism and thrombosis of deep veins of upper extremity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.73) Chronic venous embolism and thrombosis of upper extremity, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.73) Chronic venous embolism and thrombosis of upper extremity, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.73''', NULL,
+ '(453.73) Chronic venous embolism and thrombosis of upper extremity, unspecified', '(453.73) Chronic venous embolism and thrombosis of upper extremity, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.74) Chronic venous embolism and thrombosis of axillary veins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.74) Chronic venous embolism and thrombosis of axillary veins\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.74''', NULL,
+ '(453.74) Chronic venous embolism and thrombosis of axillary veins', '(453.74) Chronic venous embolism and thrombosis of axillary veins', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.75) Chronic venous embolism and thrombosis of subclavian veins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.75) Chronic venous embolism and thrombosis of subclavian veins\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.75''', NULL,
+ '(453.75) Chronic venous embolism and thrombosis of subclavian veins', '(453.75) Chronic venous embolism and thrombosis of subclavian veins', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.76) Chronic venous embolism and thrombosis of internal jugular veins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.76) Chronic venous embolism and thrombosis of internal jugular veins\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.76''', NULL,
+ '(453.76) Chronic venous embolism and thrombosis of internal jugular veins', '(453.76) Chronic venous embolism and thrombosis of internal jugular veins', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.77) Chronic venous embolism and thrombosis of other thoracic veins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.77) Chronic venous embolism and thrombosis of other thoracic veins\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.77''', NULL,
+ '(453.77) Chronic venous embolism and thrombosis of other thoracic veins', '(453.77) Chronic venous embolism and thrombosis of other thoracic veins', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.79) Chronic venous embolism and thrombosis of other specified veins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Other venous embolism and thrombosis (453)\Chronic venous embolism and thrombosis of other specified vessels (453.7)\(453.79) Chronic venous embolism and thrombosis of other specified veins\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''453.79''', NULL,
+ '(453.79) Chronic venous embolism and thrombosis of other specified veins', '(453.79) Chronic venous embolism and thrombosis of other specified veins', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''451''', NULL,
+ 'Phlebitis and thrombophlebitis (451)', 'Phlebitis and thrombophlebitis (451)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\(451.0) Phlebitis and thrombophlebitis of superficial vessels of lower extremities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\(451.0) Phlebitis and thrombophlebitis of superficial vessels of lower extremities\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''451.0''', NULL,
+ '(451.0) Phlebitis and thrombophlebitis of superficial vessels of lower extremities', '(451.0) Phlebitis and thrombophlebitis of superficial vessels of lower extremities', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\(451.2) Phlebitis and thrombophlebitis of lower extremities, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\(451.2) Phlebitis and thrombophlebitis of lower extremities, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''451.2''', NULL,
+ '(451.2) Phlebitis and thrombophlebitis of lower extremities, unspecified', '(451.2) Phlebitis and thrombophlebitis of lower extremities, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\(451.9) Phlebitis and thrombophlebitis of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\(451.9) Phlebitis and thrombophlebitis of unspecified site\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''451.9''', NULL,
+ '(451.9) Phlebitis and thrombophlebitis of unspecified site', '(451.9) Phlebitis and thrombophlebitis of unspecified site', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of deep vessels of lower extremities (451.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of deep vessels of lower extremities (451.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''451.1''', NULL,
+ 'Phlebitis and thrombophlebitis of deep vessels of lower extremities (451.1)', 'Phlebitis and thrombophlebitis of deep vessels of lower extremities (451.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of deep vessels of lower extremities (451.1)\(451.11) Phlebitis and thrombophlebitis of femoral vein (deep) (superficial)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of deep vessels of lower extremities (451.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of deep vessels of lower extremities (451.1)\(451.11) Phlebitis and thrombophlebitis of femoral vein (deep) (superficial)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''451.11) Phlebitis and thrombophlebitis of femoral vein (deep) (superficial''', NULL,
+ '(451.11) Phlebitis and thrombophlebitis of femoral vein (deep) (superficial)', '(451.11) Phlebitis and thrombophlebitis of femoral vein (deep) (superficial)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of deep vessels of lower extremities (451.1)\(451.19) Phlebitis and thrombophlebitis of deep veins of lower extremities, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of deep vessels of lower extremities (451.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of deep vessels of lower extremities (451.1)\(451.19) Phlebitis and thrombophlebitis of deep veins of lower extremities, other\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''451.19''', NULL,
+ '(451.19) Phlebitis and thrombophlebitis of deep veins of lower extremities, other', '(451.19) Phlebitis and thrombophlebitis of deep veins of lower extremities, other', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''451.8''', NULL,
+ 'Phlebitis and thrombophlebitis of other sites (451.8)', 'Phlebitis and thrombophlebitis of other sites (451.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\(451.81) Phlebitis and thrombophlebitis of iliac vein\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\(451.81) Phlebitis and thrombophlebitis of iliac vein\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''451.81''', NULL,
+ '(451.81) Phlebitis and thrombophlebitis of iliac vein', '(451.81) Phlebitis and thrombophlebitis of iliac vein', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\(451.82) Phlebitis and thrombophlebitis of superficial veins of upper extremities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\(451.82) Phlebitis and thrombophlebitis of superficial veins of upper extremities\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''451.82''', NULL,
+ '(451.82) Phlebitis and thrombophlebitis of superficial veins of upper extremities', '(451.82) Phlebitis and thrombophlebitis of superficial veins of upper extremities', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\(451.83) Phlebitis and thrombophlebitis of deep veins of upper extremities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\(451.83) Phlebitis and thrombophlebitis of deep veins of upper extremities\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''451.83''', NULL,
+ '(451.83) Phlebitis and thrombophlebitis of deep veins of upper extremities', '(451.83) Phlebitis and thrombophlebitis of deep veins of upper extremities', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\(451.84) Phlebitis and thrombophlebitis of upper extremities, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\(451.84) Phlebitis and thrombophlebitis of upper extremities, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''451.84''', NULL,
+ '(451.84) Phlebitis and thrombophlebitis of upper extremities, unspecified', '(451.84) Phlebitis and thrombophlebitis of upper extremities, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\(451.89) Phlebitis and thrombophlebitis of other sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Phlebitis and thrombophlebitis (451)\Phlebitis and thrombophlebitis of other sites (451.8)\(451.89) Phlebitis and thrombophlebitis of other sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''451.89''', NULL,
+ '(451.89) Phlebitis and thrombophlebitis of other sites', '(451.89) Phlebitis and thrombophlebitis of other sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''454''', NULL,
+ 'Varicose veins of lower extremities (454)', 'Varicose veins of lower extremities (454)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\(454.0) Varicose veins of lower extremities with ulcer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\(454.0) Varicose veins of lower extremities with ulcer\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''454.0''', NULL,
+ '(454.0) Varicose veins of lower extremities with ulcer', '(454.0) Varicose veins of lower extremities with ulcer', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\(454.1) Varicose veins of lower extremities with inflammation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\(454.1) Varicose veins of lower extremities with inflammation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''454.1''', NULL,
+ '(454.1) Varicose veins of lower extremities with inflammation', '(454.1) Varicose veins of lower extremities with inflammation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\(454.2) Varicose veins of lower extremities with ulcer and inflammation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\(454.2) Varicose veins of lower extremities with ulcer and inflammation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''454.2''', NULL,
+ '(454.2) Varicose veins of lower extremities with ulcer and inflammation', '(454.2) Varicose veins of lower extremities with ulcer and inflammation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\(454.8) Varicose veins of lower extremities with other complications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\(454.8) Varicose veins of lower extremities with other complications\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''454.8''', NULL,
+ '(454.8) Varicose veins of lower extremities with other complications', '(454.8) Varicose veins of lower extremities with other complications', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\(454.9) Asymptomatic varicose veins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of lower extremities (454)\(454.9) Asymptomatic varicose veins\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''454.9''', NULL,
+ '(454.9) Asymptomatic varicose veins', '(454.9) Asymptomatic varicose veins', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''456''', NULL,
+ 'Varicose veins of other sites (456)', 'Varicose veins of other sites (456)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\(456.0) Esophageal varices with bleeding\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\(456.0) Esophageal varices with bleeding\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''456.0''', NULL,
+ '(456.0) Esophageal varices with bleeding', '(456.0) Esophageal varices with bleeding', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\(456.1) Esophageal varices without mention of bleeding\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\(456.1) Esophageal varices without mention of bleeding\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''456.1''', NULL,
+ '(456.1) Esophageal varices without mention of bleeding', '(456.1) Esophageal varices without mention of bleeding', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\(456.3) Sublingual varices\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\(456.3) Sublingual varices\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''456.3''', NULL,
+ '(456.3) Sublingual varices', '(456.3) Sublingual varices', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\(456.4) Scrotal varices\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\(456.4) Scrotal varices\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''456.4''', NULL,
+ '(456.4) Scrotal varices', '(456.4) Scrotal varices', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\(456.5) Pelvic varices\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\(456.5) Pelvic varices\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''456.5''', NULL,
+ '(456.5) Pelvic varices', '(456.5) Pelvic varices', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\(456.6) Vulval varices\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\(456.6) Vulval varices\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''456.6''', NULL,
+ '(456.6) Vulval varices', '(456.6) Vulval varices', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\(456.8) Varices of other sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\(456.8) Varices of other sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''456.8''', NULL,
+ '(456.8) Varices of other sites', '(456.8) Varices of other sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\Esophageal varices in diseases classified elsewhere (456.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\Esophageal varices in diseases classified elsewhere (456.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''456.2''', NULL,
+ 'Esophageal varices in diseases classified elsewhere (456.2)', 'Esophageal varices in diseases classified elsewhere (456.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\Esophageal varices in diseases classified elsewhere (456.2)\(456.20) Esophageal varices in diseases classified elsewhere, with bleeding\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\Esophageal varices in diseases classified elsewhere (456.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\Esophageal varices in diseases classified elsewhere (456.2)\(456.20) Esophageal varices in diseases classified elsewhere, with bleeding\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''456.20''', NULL,
+ '(456.20) Esophageal varices in diseases classified elsewhere, with bleeding', '(456.20) Esophageal varices in diseases classified elsewhere, with bleeding', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\Esophageal varices in diseases classified elsewhere (456.2)\(456.21) Esophageal varices in diseases classified elsewhere, without mention of bleeding\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\Esophageal varices in diseases classified elsewhere (456.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Diseases of veins and lymphatics, and other diseases of circulatory system (451-459.99)\Varicose veins of other sites (456)\Esophageal varices in diseases classified elsewhere (456.2)\(456.21) Esophageal varices in diseases classified elsewhere, without mention of bleeding\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''456.21''', NULL,
+ '(456.21) Esophageal varices in diseases classified elsewhere, without mention of bleeding', '(456.21) Esophageal varices in diseases classified elsewhere, without mention of bleeding', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''401'' AND ''405.99''', NULL,
+ 'Hypertensive disease (401-405.99)', 'Hypertensive disease (401-405.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Essential hypertension (401)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Essential hypertension (401)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''401''', NULL,
+ 'Essential hypertension (401)', 'Essential hypertension (401)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Essential hypertension (401)\(401.0) Malignant essential hypertension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Essential hypertension (401)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Essential hypertension (401)\(401.0) Malignant essential hypertension\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''401.0''', NULL,
+ '(401.0) Malignant essential hypertension', '(401.0) Malignant essential hypertension', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Essential hypertension (401)\(401.1) Benign essential hypertension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Essential hypertension (401)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Essential hypertension (401)\(401.1) Benign essential hypertension\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''401.1''', NULL,
+ '(401.1) Benign essential hypertension', '(401.1) Benign essential hypertension', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Essential hypertension (401)\(401.9) Unspecified essential hypertension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Essential hypertension (401)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Essential hypertension (401)\(401.9) Unspecified essential hypertension\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''401.9''', NULL,
+ '(401.9) Unspecified essential hypertension', '(401.9) Unspecified essential hypertension', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''403''', NULL,
+ 'Hypertensive chronic kidney disease (403)', 'Hypertensive chronic kidney disease (403)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive chronic kidney disease, malignant (403.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive chronic kidney disease, malignant (403.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''403.0''', NULL,
+ 'Hypertensive chronic kidney disease, malignant (403.0)', 'Hypertensive chronic kidney disease, malignant (403.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive chronic kidney disease, malignant (403.0)\(403.00) Hypertensive chronic kidney disease, malignant, with chronic kidney disease stage I through stage IV, or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive chronic kidney disease, malignant (403.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive chronic kidney disease, malignant (403.0)\(403.00) Hypertensive chronic kidney disease, malignant, with chronic kidney disease stage I through stage IV, or unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''403.00''', NULL,
+ '(403.00) Hypertensive chronic kidney disease, malignant, with chronic kidney disease stage I through stage IV, or unspecified', '(403.00) Hypertensive chronic kidney disease, malignant, with chronic kidney disease stage I through stage IV, or unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive chronic kidney disease, malignant (403.0)\(403.01) Hypertensive chronic kidney disease, malignant, with chronic kidney disease stage V or end stage renal disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive chronic kidney disease, malignant (403.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive chronic kidney disease, malignant (403.0)\(403.01) Hypertensive chronic kidney disease, malignant, with chronic kidney disease stage V or end stage renal disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''403.01''', NULL,
+ '(403.01) Hypertensive chronic kidney disease, malignant, with chronic kidney disease stage V or end stage renal disease', '(403.01) Hypertensive chronic kidney disease, malignant, with chronic kidney disease stage V or end stage renal disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, benign (403.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, benign (403.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''403.1''', NULL,
+ 'Hypertensive renal disease, benign (403.1)', 'Hypertensive renal disease, benign (403.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, benign (403.1)\(403.10) Hypertensive chronic kidney disease, benign, with chronic kidney disease stage I through stage IV, or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, benign (403.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, benign (403.1)\(403.10) Hypertensive chronic kidney disease, benign, with chronic kidney disease stage I through stage IV, or unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''403.10''', NULL,
+ '(403.10) Hypertensive chronic kidney disease, benign, with chronic kidney disease stage I through stage IV, or unspecified', '(403.10) Hypertensive chronic kidney disease, benign, with chronic kidney disease stage I through stage IV, or unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, benign (403.1)\(403.11) Hypertensive chronic kidney disease, benign, with chronic kidney disease stage V or end stage renal disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, benign (403.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, benign (403.1)\(403.11) Hypertensive chronic kidney disease, benign, with chronic kidney disease stage V or end stage renal disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''403.11''', NULL,
+ '(403.11) Hypertensive chronic kidney disease, benign, with chronic kidney disease stage V or end stage renal disease', '(403.11) Hypertensive chronic kidney disease, benign, with chronic kidney disease stage V or end stage renal disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, unspecified (403.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, unspecified (403.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''403.9''', NULL,
+ 'Hypertensive renal disease, unspecified (403.9)', 'Hypertensive renal disease, unspecified (403.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, unspecified (403.9)\(403.90) Hypertensive chronic kidney disease, unspecified, with chronic kidney disease stage I through stage IV, or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, unspecified (403.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, unspecified (403.9)\(403.90) Hypertensive chronic kidney disease, unspecified, with chronic kidney disease stage I through stage IV, or unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''403.90''', NULL,
+ '(403.90) Hypertensive chronic kidney disease, unspecified, with chronic kidney disease stage I through stage IV, or unspecified', '(403.90) Hypertensive chronic kidney disease, unspecified, with chronic kidney disease stage I through stage IV, or unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, unspecified (403.9)\(403.91) Hypertensive chronic kidney disease, unspecified, with chronic kidney disease stage V or end stage renal disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, unspecified (403.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive chronic kidney disease (403)\Hypertensive renal disease, unspecified (403.9)\(403.91) Hypertensive chronic kidney disease, unspecified, with chronic kidney disease stage V or end stage renal disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''403.91''', NULL,
+ '(403.91) Hypertensive chronic kidney disease, unspecified, with chronic kidney disease stage V or end stage renal disease', '(403.91) Hypertensive chronic kidney disease, unspecified, with chronic kidney disease stage V or end stage renal disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404''', NULL,
+ 'Hypertensive heart and chronic kidney disease (404)', 'Hypertensive heart and chronic kidney disease (404)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and chronic kidney disease, malignant (404.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and chronic kidney disease, malignant (404.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404.0''', NULL,
+ 'Hypertensive heart and chronic kidney disease, malignant (404.0)', 'Hypertensive heart and chronic kidney disease, malignant (404.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and chronic kidney disease, malignant (404.0)\(404.00) Hypertensive heart and chronic kidney disease, malignant, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and chronic kidney disease, malignant (404.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and chronic kidney disease, malignant (404.0)\(404.00) Hypertensive heart and chronic kidney disease, malignant, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404.00''', NULL,
+ '(404.00) Hypertensive heart and chronic kidney disease, malignant, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified', '(404.00) Hypertensive heart and chronic kidney disease, malignant, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and chronic kidney disease, malignant (404.0)\(404.01) Hypertensive heart and chronic kidney disease, malignant, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and chronic kidney disease, malignant (404.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and chronic kidney disease, malignant (404.0)\(404.01) Hypertensive heart and chronic kidney disease, malignant, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404.01''', NULL,
+ '(404.01) Hypertensive heart and chronic kidney disease, malignant, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified', '(404.01) Hypertensive heart and chronic kidney disease, malignant, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and chronic kidney disease, malignant (404.0)\(404.02) Hypertensive heart and chronic kidney disease, malignant, without heart failure and with chronic kidney disease stage V or end stage renal disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and chronic kidney disease, malignant (404.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and chronic kidney disease, malignant (404.0)\(404.02) Hypertensive heart and chronic kidney disease, malignant, without heart failure and with chronic kidney disease stage V or end stage renal disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404.02''', NULL,
+ '(404.02) Hypertensive heart and chronic kidney disease, malignant, without heart failure and with chronic kidney disease stage V or end stage renal disease', '(404.02) Hypertensive heart and chronic kidney disease, malignant, without heart failure and with chronic kidney disease stage V or end stage renal disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and chronic kidney disease, malignant (404.0)\(404.03) Hypertensive heart and chronic kidney disease, malignant, with heart failure and with chronic kidney disease stage V or end stage renal disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and chronic kidney disease, malignant (404.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and chronic kidney disease, malignant (404.0)\(404.03) Hypertensive heart and chronic kidney disease, malignant, with heart failure and with chronic kidney disease stage V or end stage renal disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404.03''', NULL,
+ '(404.03) Hypertensive heart and chronic kidney disease, malignant, with heart failure and with chronic kidney disease stage V or end stage renal disease', '(404.03) Hypertensive heart and chronic kidney disease, malignant, with heart failure and with chronic kidney disease stage V or end stage renal disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, benign (404.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, benign (404.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404.1''', NULL,
+ 'Hypertensive heart and renal disease, benign (404.1)', 'Hypertensive heart and renal disease, benign (404.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, benign (404.1)\(404.10) Hypertensive heart and chronic kidney disease, benign, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, benign (404.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, benign (404.1)\(404.10) Hypertensive heart and chronic kidney disease, benign, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404.10''', NULL,
+ '(404.10) Hypertensive heart and chronic kidney disease, benign, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified', '(404.10) Hypertensive heart and chronic kidney disease, benign, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, benign (404.1)\(404.11) Hypertensive heart and chronic kidney disease, benign, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, benign (404.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, benign (404.1)\(404.11) Hypertensive heart and chronic kidney disease, benign, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404.11''', NULL,
+ '(404.11) Hypertensive heart and chronic kidney disease, benign, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified', '(404.11) Hypertensive heart and chronic kidney disease, benign, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, benign (404.1)\(404.12) Hypertensive heart and chronic kidney disease, benign, without heart failure and with chronic kidney disease stage V or end stage renal disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, benign (404.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, benign (404.1)\(404.12) Hypertensive heart and chronic kidney disease, benign, without heart failure and with chronic kidney disease stage V or end stage renal disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404.12''', NULL,
+ '(404.12) Hypertensive heart and chronic kidney disease, benign, without heart failure and with chronic kidney disease stage V or end stage renal disease', '(404.12) Hypertensive heart and chronic kidney disease, benign, without heart failure and with chronic kidney disease stage V or end stage renal disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, benign (404.1)\(404.13) Hypertensive heart and chronic kidney disease, benign, with heart failure and chronic kidney disease stage V or end stage renal disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, benign (404.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, benign (404.1)\(404.13) Hypertensive heart and chronic kidney disease, benign, with heart failure and chronic kidney disease stage V or end stage renal disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404.13''', NULL,
+ '(404.13) Hypertensive heart and chronic kidney disease, benign, with heart failure and chronic kidney disease stage V or end stage renal disease', '(404.13) Hypertensive heart and chronic kidney disease, benign, with heart failure and chronic kidney disease stage V or end stage renal disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, unspecified (404.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, unspecified (404.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404.9''', NULL,
+ 'Hypertensive heart and renal disease, unspecified (404.9)', 'Hypertensive heart and renal disease, unspecified (404.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, unspecified (404.9)\(404.90) Hypertensive heart and chronic kidney disease, unspecified, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, unspecified (404.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, unspecified (404.9)\(404.90) Hypertensive heart and chronic kidney disease, unspecified, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404.90''', NULL,
+ '(404.90) Hypertensive heart and chronic kidney disease, unspecified, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified', '(404.90) Hypertensive heart and chronic kidney disease, unspecified, without heart failure and with chronic kidney disease stage I through stage IV, or unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, unspecified (404.9)\(404.91) Hypertensive heart and chronic kidney disease, unspecified, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, unspecified (404.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, unspecified (404.9)\(404.91) Hypertensive heart and chronic kidney disease, unspecified, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404.91''', NULL,
+ '(404.91) Hypertensive heart and chronic kidney disease, unspecified, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified', '(404.91) Hypertensive heart and chronic kidney disease, unspecified, with heart failure and with chronic kidney disease stage I through stage IV, or unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, unspecified (404.9)\(404.92) Hypertensive heart and chronic kidney disease, unspecified, without heart failure and with chronic kidney disease stage V or end stage renal disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, unspecified (404.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, unspecified (404.9)\(404.92) Hypertensive heart and chronic kidney disease, unspecified, without heart failure and with chronic kidney disease stage V or end stage renal disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404.92''', NULL,
+ '(404.92) Hypertensive heart and chronic kidney disease, unspecified, without heart failure and with chronic kidney disease stage V or end stage renal disease', '(404.92) Hypertensive heart and chronic kidney disease, unspecified, without heart failure and with chronic kidney disease stage V or end stage renal disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, unspecified (404.9)\(404.93) Hypertensive heart and chronic kidney disease, unspecified, with heart failure and chronic kidney disease stage V or end stage renal disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, unspecified (404.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart and chronic kidney disease (404)\Hypertensive heart and renal disease, unspecified (404.9)\(404.93) Hypertensive heart and chronic kidney disease, unspecified, with heart failure and chronic kidney disease stage V or end stage renal disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''404.93''', NULL,
+ '(404.93) Hypertensive heart and chronic kidney disease, unspecified, with heart failure and chronic kidney disease stage V or end stage renal disease', '(404.93) Hypertensive heart and chronic kidney disease, unspecified, with heart failure and chronic kidney disease stage V or end stage renal disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''402''', NULL,
+ 'Hypertensive heart disease (402)', 'Hypertensive heart disease (402)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Benign hypertensive heart disease (402.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Benign hypertensive heart disease (402.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''402.1''', NULL,
+ 'Benign hypertensive heart disease (402.1)', 'Benign hypertensive heart disease (402.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Benign hypertensive heart disease (402.1)\(402.10) Benign hypertensive heart disease without heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Benign hypertensive heart disease (402.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Benign hypertensive heart disease (402.1)\(402.10) Benign hypertensive heart disease without heart failure\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''402.10''', NULL,
+ '(402.10) Benign hypertensive heart disease without heart failure', '(402.10) Benign hypertensive heart disease without heart failure', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Benign hypertensive heart disease (402.1)\(402.11) Benign hypertensive heart disease with heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Benign hypertensive heart disease (402.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Benign hypertensive heart disease (402.1)\(402.11) Benign hypertensive heart disease with heart failure\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''402.11''', NULL,
+ '(402.11) Benign hypertensive heart disease with heart failure', '(402.11) Benign hypertensive heart disease with heart failure', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Malignant hypertensive heart disease (402.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Malignant hypertensive heart disease (402.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''402.0''', NULL,
+ 'Malignant hypertensive heart disease (402.0)', 'Malignant hypertensive heart disease (402.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Malignant hypertensive heart disease (402.0)\(402.00) Malignant hypertensive heart disease without heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Malignant hypertensive heart disease (402.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Malignant hypertensive heart disease (402.0)\(402.00) Malignant hypertensive heart disease without heart failure\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''402.00''', NULL,
+ '(402.00) Malignant hypertensive heart disease without heart failure', '(402.00) Malignant hypertensive heart disease without heart failure', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Malignant hypertensive heart disease (402.0)\(402.01) Malignant hypertensive heart disease with heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Malignant hypertensive heart disease (402.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Malignant hypertensive heart disease (402.0)\(402.01) Malignant hypertensive heart disease with heart failure\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''402.01''', NULL,
+ '(402.01) Malignant hypertensive heart disease with heart failure', '(402.01) Malignant hypertensive heart disease with heart failure', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Unspecified hypertensive heart disease (402.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Unspecified hypertensive heart disease (402.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''402.9''', NULL,
+ 'Unspecified hypertensive heart disease (402.9)', 'Unspecified hypertensive heart disease (402.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Unspecified hypertensive heart disease (402.9)\(402.90) Unspecified hypertensive heart disease without heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Unspecified hypertensive heart disease (402.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Unspecified hypertensive heart disease (402.9)\(402.90) Unspecified hypertensive heart disease without heart failure\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''402.90''', NULL,
+ '(402.90) Unspecified hypertensive heart disease without heart failure', '(402.90) Unspecified hypertensive heart disease without heart failure', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Unspecified hypertensive heart disease (402.9)\(402.91) Unspecified hypertensive heart disease with heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Unspecified hypertensive heart disease (402.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Hypertensive heart disease (402)\Unspecified hypertensive heart disease (402.9)\(402.91) Unspecified hypertensive heart disease with heart failure\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''402.91''', NULL,
+ '(402.91) Unspecified hypertensive heart disease with heart failure', '(402.91) Unspecified hypertensive heart disease with heart failure', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''405''', NULL,
+ 'Secondary hypertension (405)', 'Secondary hypertension (405)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Benign secondary hypertension (405.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Benign secondary hypertension (405.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''405.1''', NULL,
+ 'Benign secondary hypertension (405.1)', 'Benign secondary hypertension (405.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Benign secondary hypertension (405.1)\(405.11) Benign renovascular hypertension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Benign secondary hypertension (405.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Benign secondary hypertension (405.1)\(405.11) Benign renovascular hypertension\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''405.11''', NULL,
+ '(405.11) Benign renovascular hypertension', '(405.11) Benign renovascular hypertension', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Benign secondary hypertension (405.1)\(405.19) Other benign secondary hypertension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Benign secondary hypertension (405.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Benign secondary hypertension (405.1)\(405.19) Other benign secondary hypertension\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''405.19''', NULL,
+ '(405.19) Other benign secondary hypertension', '(405.19) Other benign secondary hypertension', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Malignant secondary hypertension (405.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Malignant secondary hypertension (405.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''405.0''', NULL,
+ 'Malignant secondary hypertension (405.0)', 'Malignant secondary hypertension (405.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Malignant secondary hypertension (405.0)\(405.01) Malignant renovascular hypertension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Malignant secondary hypertension (405.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Malignant secondary hypertension (405.0)\(405.01) Malignant renovascular hypertension\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''405.01''', NULL,
+ '(405.01) Malignant renovascular hypertension', '(405.01) Malignant renovascular hypertension', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Malignant secondary hypertension (405.0)\(405.09) Other malignant secondary hypertension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Malignant secondary hypertension (405.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Malignant secondary hypertension (405.0)\(405.09) Other malignant secondary hypertension\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''405.09''', NULL,
+ '(405.09) Other malignant secondary hypertension', '(405.09) Other malignant secondary hypertension', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Unspecified secondary hypertension (405.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Unspecified secondary hypertension (405.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''405.9''', NULL,
+ 'Unspecified secondary hypertension (405.9)', 'Unspecified secondary hypertension (405.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Unspecified secondary hypertension (405.9)\(405.91) Unspecified renovascular hypertension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Unspecified secondary hypertension (405.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Unspecified secondary hypertension (405.9)\(405.91) Unspecified renovascular hypertension\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''405.91''', NULL,
+ '(405.91) Unspecified renovascular hypertension', '(405.91) Unspecified renovascular hypertension', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Unspecified secondary hypertension (405.9)\(405.99) Other unspecified secondary hypertension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Unspecified secondary hypertension (405.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Hypertensive disease (401-405.99)\Secondary hypertension (405)\Unspecified secondary hypertension (405.9)\(405.99) Other unspecified secondary hypertension\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''405.99''', NULL,
+ '(405.99) Other unspecified secondary hypertension', '(405.99) Other unspecified secondary hypertension', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''410'' AND ''414.99''', NULL,
+ 'Ischemic heart disease (410-414.99)', 'Ischemic heart disease (410-414.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\(412) Old myocardial infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\(412) Old myocardial infarction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''412''', NULL,
+ '(412) Old myocardial infarction', '(412) Old myocardial infarction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410''', NULL,
+ 'Acute myocardial infarction (410)', 'Acute myocardial infarction (410)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of anterolateral wall (410.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of anterolateral wall (410.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.0''', NULL,
+ 'Acute myocardial infarction, of anterolateral wall (410.0)', 'Acute myocardial infarction, of anterolateral wall (410.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of anterolateral wall (410.0)\(410.00) Acute myocardial infarction of anterolateral wall, episode of care unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of anterolateral wall (410.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of anterolateral wall (410.0)\(410.00) Acute myocardial infarction of anterolateral wall, episode of care unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.00''', NULL,
+ '(410.00) Acute myocardial infarction of anterolateral wall, episode of care unspecified', '(410.00) Acute myocardial infarction of anterolateral wall, episode of care unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of anterolateral wall (410.0)\(410.01) Acute myocardial infarction of anterolateral wall, initial episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of anterolateral wall (410.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of anterolateral wall (410.0)\(410.01) Acute myocardial infarction of anterolateral wall, initial episode of care\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.01''', NULL,
+ '(410.01) Acute myocardial infarction of anterolateral wall, initial episode of care', '(410.01) Acute myocardial infarction of anterolateral wall, initial episode of care', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of anterolateral wall (410.0)\(410.02) Acute myocardial infarction of anterolateral wall, subsequent episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of anterolateral wall (410.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of anterolateral wall (410.0)\(410.02) Acute myocardial infarction of anterolateral wall, subsequent episode of care\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.02''', NULL,
+ '(410.02) Acute myocardial infarction of anterolateral wall, subsequent episode of care', '(410.02) Acute myocardial infarction of anterolateral wall, subsequent episode of care', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferolateral wall (410.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferolateral wall (410.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.2''', NULL,
+ 'Acute myocardial infarction, of inferolateral wall (410.2)', 'Acute myocardial infarction, of inferolateral wall (410.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferolateral wall (410.2)\(410.20) Acute myocardial infarction of inferolateral wall, episode of care unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferolateral wall (410.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferolateral wall (410.2)\(410.20) Acute myocardial infarction of inferolateral wall, episode of care unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.20''', NULL,
+ '(410.20) Acute myocardial infarction of inferolateral wall, episode of care unspecified', '(410.20) Acute myocardial infarction of inferolateral wall, episode of care unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferolateral wall (410.2)\(410.21) Acute myocardial infarction of inferolateral wall, initial episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferolateral wall (410.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferolateral wall (410.2)\(410.21) Acute myocardial infarction of inferolateral wall, initial episode of care\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.21''', NULL,
+ '(410.21) Acute myocardial infarction of inferolateral wall, initial episode of care', '(410.21) Acute myocardial infarction of inferolateral wall, initial episode of care', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferolateral wall (410.2)\(410.22) Acute myocardial infarction of inferolateral wall, subsequent episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferolateral wall (410.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferolateral wall (410.2)\(410.22) Acute myocardial infarction of inferolateral wall, subsequent episode of care\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.22''', NULL,
+ '(410.22) Acute myocardial infarction of inferolateral wall, subsequent episode of care', '(410.22) Acute myocardial infarction of inferolateral wall, subsequent episode of care', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferoposterior wall (410.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferoposterior wall (410.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.3''', NULL,
+ 'Acute myocardial infarction, of inferoposterior wall (410.3)', 'Acute myocardial infarction, of inferoposterior wall (410.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferoposterior wall (410.3)\(410.30) Acute myocardial infarction of inferoposterior wall, episode of care unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferoposterior wall (410.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferoposterior wall (410.3)\(410.30) Acute myocardial infarction of inferoposterior wall, episode of care unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.30''', NULL,
+ '(410.30) Acute myocardial infarction of inferoposterior wall, episode of care unspecified', '(410.30) Acute myocardial infarction of inferoposterior wall, episode of care unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferoposterior wall (410.3)\(410.31) Acute myocardial infarction of inferoposterior wall, initial episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferoposterior wall (410.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferoposterior wall (410.3)\(410.31) Acute myocardial infarction of inferoposterior wall, initial episode of care\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.31''', NULL,
+ '(410.31) Acute myocardial infarction of inferoposterior wall, initial episode of care', '(410.31) Acute myocardial infarction of inferoposterior wall, initial episode of care', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferoposterior wall (410.3)\(410.32) Acute myocardial infarction of inferoposterior wall, subsequent episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferoposterior wall (410.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of inferoposterior wall (410.3)\(410.32) Acute myocardial infarction of inferoposterior wall, subsequent episode of care\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.32''', NULL,
+ '(410.32) Acute myocardial infarction of inferoposterior wall, subsequent episode of care', '(410.32) Acute myocardial infarction of inferoposterior wall, subsequent episode of care', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other anterior wall (410.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other anterior wall (410.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.1''', NULL,
+ 'Acute myocardial infarction, of other anterior wall (410.1)', 'Acute myocardial infarction, of other anterior wall (410.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other anterior wall (410.1)\(410.10) Acute myocardial infarction of other anterior wall, episode of care unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other anterior wall (410.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other anterior wall (410.1)\(410.10) Acute myocardial infarction of other anterior wall, episode of care unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.10''', NULL,
+ '(410.10) Acute myocardial infarction of other anterior wall, episode of care unspecified', '(410.10) Acute myocardial infarction of other anterior wall, episode of care unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other anterior wall (410.1)\(410.11) Acute myocardial infarction of other anterior wall, initial episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other anterior wall (410.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other anterior wall (410.1)\(410.11) Acute myocardial infarction of other anterior wall, initial episode of care\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.11''', NULL,
+ '(410.11) Acute myocardial infarction of other anterior wall, initial episode of care', '(410.11) Acute myocardial infarction of other anterior wall, initial episode of care', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other anterior wall (410.1)\(410.12) Acute myocardial infarction of other anterior wall, subsequent episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other anterior wall (410.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other anterior wall (410.1)\(410.12) Acute myocardial infarction of other anterior wall, subsequent episode of care\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.12''', NULL,
+ '(410.12) Acute myocardial infarction of other anterior wall, subsequent episode of care', '(410.12) Acute myocardial infarction of other anterior wall, subsequent episode of care', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other inferior wall (410.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other inferior wall (410.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.4''', NULL,
+ 'Acute myocardial infarction, of other inferior wall (410.4)', 'Acute myocardial infarction, of other inferior wall (410.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other inferior wall (410.4)\(410.40) Acute myocardial infarction of other inferior wall, episode of care unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other inferior wall (410.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other inferior wall (410.4)\(410.40) Acute myocardial infarction of other inferior wall, episode of care unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.40''', NULL,
+ '(410.40) Acute myocardial infarction of other inferior wall, episode of care unspecified', '(410.40) Acute myocardial infarction of other inferior wall, episode of care unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other inferior wall (410.4)\(410.41) Acute myocardial infarction of other inferior wall, initial episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other inferior wall (410.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other inferior wall (410.4)\(410.41) Acute myocardial infarction of other inferior wall, initial episode of care\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.41''', NULL,
+ '(410.41) Acute myocardial infarction of other inferior wall, initial episode of care', '(410.41) Acute myocardial infarction of other inferior wall, initial episode of care', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other inferior wall (410.4)\(410.42) Acute myocardial infarction of other inferior wall, subsequent episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other inferior wall (410.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other inferior wall (410.4)\(410.42) Acute myocardial infarction of other inferior wall, subsequent episode of care\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.42''', NULL,
+ '(410.42) Acute myocardial infarction of other inferior wall, subsequent episode of care', '(410.42) Acute myocardial infarction of other inferior wall, subsequent episode of care', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other lateral wall (410.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other lateral wall (410.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.5''', NULL,
+ 'Acute myocardial infarction, of other lateral wall (410.5)', 'Acute myocardial infarction, of other lateral wall (410.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other lateral wall (410.5)\(410.50) Acute myocardial infarction of other lateral wall, episode of care unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other lateral wall (410.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other lateral wall (410.5)\(410.50) Acute myocardial infarction of other lateral wall, episode of care unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.50''', NULL,
+ '(410.50) Acute myocardial infarction of other lateral wall, episode of care unspecified', '(410.50) Acute myocardial infarction of other lateral wall, episode of care unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other lateral wall (410.5)\(410.51) Acute myocardial infarction of other lateral wall, initial episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other lateral wall (410.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other lateral wall (410.5)\(410.51) Acute myocardial infarction of other lateral wall, initial episode of care\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.51''', NULL,
+ '(410.51) Acute myocardial infarction of other lateral wall, initial episode of care', '(410.51) Acute myocardial infarction of other lateral wall, initial episode of care', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other lateral wall (410.5)\(410.52) Acute myocardial infarction of other lateral wall, subsequent episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other lateral wall (410.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other lateral wall (410.5)\(410.52) Acute myocardial infarction of other lateral wall, subsequent episode of care\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.52''', NULL,
+ '(410.52) Acute myocardial infarction of other lateral wall, subsequent episode of care', '(410.52) Acute myocardial infarction of other lateral wall, subsequent episode of care', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other specified sites (410.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other specified sites (410.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.8''', NULL,
+ 'Acute myocardial infarction, of other specified sites (410.8)', 'Acute myocardial infarction, of other specified sites (410.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other specified sites (410.8)\(410.80) Acute myocardial infarction of other specified sites, episode of care unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other specified sites (410.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other specified sites (410.8)\(410.80) Acute myocardial infarction of other specified sites, episode of care unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.80''', NULL,
+ '(410.80) Acute myocardial infarction of other specified sites, episode of care unspecified', '(410.80) Acute myocardial infarction of other specified sites, episode of care unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other specified sites (410.8)\(410.81) Acute myocardial infarction of other specified sites, initial episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other specified sites (410.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other specified sites (410.8)\(410.81) Acute myocardial infarction of other specified sites, initial episode of care\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.81''', NULL,
+ '(410.81) Acute myocardial infarction of other specified sites, initial episode of care', '(410.81) Acute myocardial infarction of other specified sites, initial episode of care', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other specified sites (410.8)\(410.82) Acute myocardial infarction of other specified sites, subsequent episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other specified sites (410.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, of other specified sites (410.8)\(410.82) Acute myocardial infarction of other specified sites, subsequent episode of care\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.82''', NULL,
+ '(410.82) Acute myocardial infarction of other specified sites, subsequent episode of care', '(410.82) Acute myocardial infarction of other specified sites, subsequent episode of care', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, subendocardial infarction (410.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, subendocardial infarction (410.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.7''', NULL,
+ 'Acute myocardial infarction, subendocardial infarction (410.7)', 'Acute myocardial infarction, subendocardial infarction (410.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, subendocardial infarction (410.7)\(410.70) Subendocardial infarction, episode of care unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, subendocardial infarction (410.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, subendocardial infarction (410.7)\(410.70) Subendocardial infarction, episode of care unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.70''', NULL,
+ '(410.70) Subendocardial infarction, episode of care unspecified', '(410.70) Subendocardial infarction, episode of care unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, subendocardial infarction (410.7)\(410.71) Subendocardial infarction, initial episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, subendocardial infarction (410.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, subendocardial infarction (410.7)\(410.71) Subendocardial infarction, initial episode of care\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.71''', NULL,
+ '(410.71) Subendocardial infarction, initial episode of care', '(410.71) Subendocardial infarction, initial episode of care', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, subendocardial infarction (410.7)\(410.72) Subendocardial infarction, subsequent episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, subendocardial infarction (410.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, subendocardial infarction (410.7)\(410.72) Subendocardial infarction, subsequent episode of care\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.72''', NULL,
+ '(410.72) Subendocardial infarction, subsequent episode of care', '(410.72) Subendocardial infarction, subsequent episode of care', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, true posterior wall infarction (410.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, true posterior wall infarction (410.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.6''', NULL,
+ 'Acute myocardial infarction, true posterior wall infarction (410.6)', 'Acute myocardial infarction, true posterior wall infarction (410.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, true posterior wall infarction (410.6)\(410.60) True posterior wall infarction, episode of care unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, true posterior wall infarction (410.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, true posterior wall infarction (410.6)\(410.60) True posterior wall infarction, episode of care unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.60''', NULL,
+ '(410.60) True posterior wall infarction, episode of care unspecified', '(410.60) True posterior wall infarction, episode of care unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, true posterior wall infarction (410.6)\(410.61) True posterior wall infarction, initial episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, true posterior wall infarction (410.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, true posterior wall infarction (410.6)\(410.61) True posterior wall infarction, initial episode of care\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.61''', NULL,
+ '(410.61) True posterior wall infarction, initial episode of care', '(410.61) True posterior wall infarction, initial episode of care', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, true posterior wall infarction (410.6)\(410.62) True posterior wall infarction, subsequent episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, true posterior wall infarction (410.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, true posterior wall infarction (410.6)\(410.62) True posterior wall infarction, subsequent episode of care\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.62''', NULL,
+ '(410.62) True posterior wall infarction, subsequent episode of care', '(410.62) True posterior wall infarction, subsequent episode of care', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, unspecified site (410.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, unspecified site (410.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.9''', NULL,
+ 'Acute myocardial infarction, unspecified site (410.9)', 'Acute myocardial infarction, unspecified site (410.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, unspecified site (410.9)\(410.90) Acute myocardial infarction of unspecified site, episode of care unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, unspecified site (410.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, unspecified site (410.9)\(410.90) Acute myocardial infarction of unspecified site, episode of care unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.90''', NULL,
+ '(410.90) Acute myocardial infarction of unspecified site, episode of care unspecified', '(410.90) Acute myocardial infarction of unspecified site, episode of care unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, unspecified site (410.9)\(410.91) Acute myocardial infarction of unspecified site, initial episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, unspecified site (410.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, unspecified site (410.9)\(410.91) Acute myocardial infarction of unspecified site, initial episode of care\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.91''', NULL,
+ '(410.91) Acute myocardial infarction of unspecified site, initial episode of care', '(410.91) Acute myocardial infarction of unspecified site, initial episode of care', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, unspecified site (410.9)\(410.92) Acute myocardial infarction of unspecified site, subsequent episode of care\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, unspecified site (410.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Acute myocardial infarction (410)\Acute myocardial infarction, unspecified site (410.9)\(410.92) Acute myocardial infarction of unspecified site, subsequent episode of care\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''410.92''', NULL,
+ '(410.92) Acute myocardial infarction of unspecified site, subsequent episode of care', '(410.92) Acute myocardial infarction of unspecified site, subsequent episode of care', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Angina pectoris (413)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Angina pectoris (413)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''413''', NULL,
+ 'Angina pectoris (413)', 'Angina pectoris (413)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Angina pectoris (413)\(413.0) Angina decubitus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Angina pectoris (413)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Angina pectoris (413)\(413.0) Angina decubitus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''413.0''', NULL,
+ '(413.0) Angina decubitus', '(413.0) Angina decubitus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Angina pectoris (413)\(413.1) Prinzmetal angina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Angina pectoris (413)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Angina pectoris (413)\(413.1) Prinzmetal angina\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''413.1''', NULL,
+ '(413.1) Prinzmetal angina', '(413.1) Prinzmetal angina', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Angina pectoris (413)\(413.9) Other and unspecified angina pectoris\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Angina pectoris (413)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Angina pectoris (413)\(413.9) Other and unspecified angina pectoris\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''413.9''', NULL,
+ '(413.9) Other and unspecified angina pectoris', '(413.9) Other and unspecified angina pectoris', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''411''', NULL,
+ 'Other acute and subacute forms of ischemic heart disease (411)', 'Other acute and subacute forms of ischemic heart disease (411)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\(411.0) Postmyocardial infarction syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\(411.0) Postmyocardial infarction syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''411.0''', NULL,
+ '(411.0) Postmyocardial infarction syndrome', '(411.0) Postmyocardial infarction syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\(411.1) Intermediate coronary syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\(411.1) Intermediate coronary syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''411.1''', NULL,
+ '(411.1) Intermediate coronary syndrome', '(411.1) Intermediate coronary syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\Other acute and subacute forms of ischemic heart disease (411.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\Other acute and subacute forms of ischemic heart disease (411.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''411.8''', NULL,
+ 'Other acute and subacute forms of ischemic heart disease (411.8)', 'Other acute and subacute forms of ischemic heart disease (411.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\Other acute and subacute forms of ischemic heart disease (411.8)\(411.81) Acute coronary occlusion without myocardial infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\Other acute and subacute forms of ischemic heart disease (411.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\Other acute and subacute forms of ischemic heart disease (411.8)\(411.81) Acute coronary occlusion without myocardial infarction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''411.81''', NULL,
+ '(411.81) Acute coronary occlusion without myocardial infarction', '(411.81) Acute coronary occlusion without myocardial infarction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\Other acute and subacute forms of ischemic heart disease (411.8)\(411.89) Other acute and subacute forms of ischemic heart disease, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\Other acute and subacute forms of ischemic heart disease (411.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other acute and subacute forms of ischemic heart disease (411)\Other acute and subacute forms of ischemic heart disease (411.8)\(411.89) Other acute and subacute forms of ischemic heart disease, other\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''411.89''', NULL,
+ '(411.89) Other acute and subacute forms of ischemic heart disease, other', '(411.89) Other acute and subacute forms of ischemic heart disease, other', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414''', NULL,
+ 'Other forms of chronic ischemic heart disease (414)', 'Other forms of chronic ischemic heart disease (414)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\(414.2) Chronic total occlusion of coronary artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\(414.2) Chronic total occlusion of coronary artery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.2''', NULL,
+ '(414.2) Chronic total occlusion of coronary artery', '(414.2) Chronic total occlusion of coronary artery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\(414.3) Coronary atherosclerosis due to lipid rich plaque\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\(414.3) Coronary atherosclerosis due to lipid rich plaque\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.3''', NULL,
+ '(414.3) Coronary atherosclerosis due to lipid rich plaque', '(414.3) Coronary atherosclerosis due to lipid rich plaque', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\(414.8) Other specified forms of chronic ischemic heart disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\(414.8) Other specified forms of chronic ischemic heart disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.8''', NULL,
+ '(414.8) Other specified forms of chronic ischemic heart disease', '(414.8) Other specified forms of chronic ischemic heart disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\(414.9) Chronic ischemic heart disease, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\(414.9) Chronic ischemic heart disease, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.9''', NULL,
+ '(414.9) Chronic ischemic heart disease, unspecified', '(414.9) Chronic ischemic heart disease, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Aneurysm and dissection of heart (414.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Aneurysm and dissection of heart (414.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.1''', NULL,
+ 'Aneurysm and dissection of heart (414.1)', 'Aneurysm and dissection of heart (414.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Aneurysm and dissection of heart (414.1)\(414.10) Aneurysm of heart (wall)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Aneurysm and dissection of heart (414.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Aneurysm and dissection of heart (414.1)\(414.10) Aneurysm of heart (wall)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.10) Aneurysm of heart (wall''', NULL,
+ '(414.10) Aneurysm of heart (wall)', '(414.10) Aneurysm of heart (wall)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Aneurysm and dissection of heart (414.1)\(414.11) Aneurysm of coronary vessels\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Aneurysm and dissection of heart (414.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Aneurysm and dissection of heart (414.1)\(414.11) Aneurysm of coronary vessels\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.11''', NULL,
+ '(414.11) Aneurysm of coronary vessels', '(414.11) Aneurysm of coronary vessels', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Aneurysm and dissection of heart (414.1)\(414.12) Dissection of coronary artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Aneurysm and dissection of heart (414.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Aneurysm and dissection of heart (414.1)\(414.12) Dissection of coronary artery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.12''', NULL,
+ '(414.12) Dissection of coronary artery', '(414.12) Dissection of coronary artery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Aneurysm and dissection of heart (414.1)\(414.19) Other aneurysm of heart\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Aneurysm and dissection of heart (414.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Aneurysm and dissection of heart (414.1)\(414.19) Other aneurysm of heart\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.19''', NULL,
+ '(414.19) Other aneurysm of heart', '(414.19) Other aneurysm of heart', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.0''', NULL,
+ 'Coronary atherosclerosis (414.0)', 'Coronary atherosclerosis (414.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.00) Coronary atherosclerosis of unspecified type of vessel, native or graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.00) Coronary atherosclerosis of unspecified type of vessel, native or graft\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.00''', NULL,
+ '(414.00) Coronary atherosclerosis of unspecified type of vessel, native or graft', '(414.00) Coronary atherosclerosis of unspecified type of vessel, native or graft', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.01) Coronary atherosclerosis of native coronary artery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.01) Coronary atherosclerosis of native coronary artery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.01''', NULL,
+ '(414.01) Coronary atherosclerosis of native coronary artery', '(414.01) Coronary atherosclerosis of native coronary artery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.02) Coronary atherosclerosis of autologous vein bypass graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.02) Coronary atherosclerosis of autologous vein bypass graft\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.02''', NULL,
+ '(414.02) Coronary atherosclerosis of autologous vein bypass graft', '(414.02) Coronary atherosclerosis of autologous vein bypass graft', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.03) Coronary atherosclerosis of nonautologous biological bypass graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.03) Coronary atherosclerosis of nonautologous biological bypass graft\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.03''', NULL,
+ '(414.03) Coronary atherosclerosis of nonautologous biological bypass graft', '(414.03) Coronary atherosclerosis of nonautologous biological bypass graft', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.04) Coronary atherosclerosis of artery bypass graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.04) Coronary atherosclerosis of artery bypass graft\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.04''', NULL,
+ '(414.04) Coronary atherosclerosis of artery bypass graft', '(414.04) Coronary atherosclerosis of artery bypass graft', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.05) Coronary atherosclerosis of unspecified bypass graft\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.05) Coronary atherosclerosis of unspecified bypass graft\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.05''', NULL,
+ '(414.05) Coronary atherosclerosis of unspecified bypass graft', '(414.05) Coronary atherosclerosis of unspecified bypass graft', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.06) Coronary atherosclerosis of native coronary artery of transplanted heart\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.06) Coronary atherosclerosis of native coronary artery of transplanted heart\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.06''', NULL,
+ '(414.06) Coronary atherosclerosis of native coronary artery of transplanted heart', '(414.06) Coronary atherosclerosis of native coronary artery of transplanted heart', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.07) Coronary atherosclerosis of bypass graft (artery) (vein) of transplanted heart\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Ischemic heart disease (410-414.99)\Other forms of chronic ischemic heart disease (414)\Coronary atherosclerosis (414.0)\(414.07) Coronary atherosclerosis of bypass graft (artery) (vein) of transplanted heart\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''414.07) Coronary atherosclerosis of bypass graft (artery) (vein''', NULL,
+ '(414.07) Coronary atherosclerosis of bypass graft (artery) (vein) of transplanted heart', '(414.07) Coronary atherosclerosis of bypass graft (artery) (vein) of transplanted heart', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''420'' AND ''429.99''', NULL,
+ 'Other forms of heart disease (420-429.99)', 'Other forms of heart disease (420-429.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute and subacute endocarditis (421)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute and subacute endocarditis (421)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''421''', NULL,
+ 'Acute and subacute endocarditis (421)', 'Acute and subacute endocarditis (421)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute and subacute endocarditis (421)\(421.0) Acute and subacute bacterial endocarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute and subacute endocarditis (421)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute and subacute endocarditis (421)\(421.0) Acute and subacute bacterial endocarditis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''421.0''', NULL,
+ '(421.0) Acute and subacute bacterial endocarditis', '(421.0) Acute and subacute bacterial endocarditis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute and subacute endocarditis (421)\(421.1) Acute and subacute infective endocarditis in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute and subacute endocarditis (421)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute and subacute endocarditis (421)\(421.1) Acute and subacute infective endocarditis in diseases classified elsewhere\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''421.1''', NULL,
+ '(421.1) Acute and subacute infective endocarditis in diseases classified elsewhere', '(421.1) Acute and subacute infective endocarditis in diseases classified elsewhere', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute and subacute endocarditis (421)\(421.9) Acute endocarditis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute and subacute endocarditis (421)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute and subacute endocarditis (421)\(421.9) Acute endocarditis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''421.9''', NULL,
+ '(421.9) Acute endocarditis, unspecified', '(421.9) Acute endocarditis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''422''', NULL,
+ 'Acute myocarditis (422)', 'Acute myocarditis (422)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\(422.0) Acute myocarditis in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\(422.0) Acute myocarditis in diseases classified elsewhere\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''422.0''', NULL,
+ '(422.0) Acute myocarditis in diseases classified elsewhere', '(422.0) Acute myocarditis in diseases classified elsewhere', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''422.9''', NULL,
+ 'Other and unspecified acute myocarditis (422.9)', 'Other and unspecified acute myocarditis (422.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\(422.90) Acute myocarditis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\(422.90) Acute myocarditis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''422.90''', NULL,
+ '(422.90) Acute myocarditis, unspecified', '(422.90) Acute myocarditis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\(422.91) Idiopathic myocarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\(422.91) Idiopathic myocarditis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''422.91''', NULL,
+ '(422.91) Idiopathic myocarditis', '(422.91) Idiopathic myocarditis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\(422.92) Septic myocarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\(422.92) Septic myocarditis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''422.92''', NULL,
+ '(422.92) Septic myocarditis', '(422.92) Septic myocarditis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\(422.93) Toxic myocarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\(422.93) Toxic myocarditis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''422.93''', NULL,
+ '(422.93) Toxic myocarditis', '(422.93) Toxic myocarditis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\(422.99) Other acute myocarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute myocarditis (422)\Other and unspecified acute myocarditis (422.9)\(422.99) Other acute myocarditis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''422.99''', NULL,
+ '(422.99) Other acute myocarditis', '(422.99) Other acute myocarditis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''420''', NULL,
+ 'Acute pericarditis (420)', 'Acute pericarditis (420)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\(420.0) Acute pericarditis in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\(420.0) Acute pericarditis in diseases classified elsewhere\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''420.0''', NULL,
+ '(420.0) Acute pericarditis in diseases classified elsewhere', '(420.0) Acute pericarditis in diseases classified elsewhere', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\Other and unspecified acute pericarditis (420.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\Other and unspecified acute pericarditis (420.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''420.9''', NULL,
+ 'Other and unspecified acute pericarditis (420.9)', 'Other and unspecified acute pericarditis (420.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\Other and unspecified acute pericarditis (420.9)\(420.90) Acute pericarditis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\Other and unspecified acute pericarditis (420.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\Other and unspecified acute pericarditis (420.9)\(420.90) Acute pericarditis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''420.90''', NULL,
+ '(420.90) Acute pericarditis, unspecified', '(420.90) Acute pericarditis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\Other and unspecified acute pericarditis (420.9)\(420.91) Acute idiopathic pericarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\Other and unspecified acute pericarditis (420.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\Other and unspecified acute pericarditis (420.9)\(420.91) Acute idiopathic pericarditis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''420.91''', NULL,
+ '(420.91) Acute idiopathic pericarditis', '(420.91) Acute idiopathic pericarditis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\Other and unspecified acute pericarditis (420.9)\(420.99) Other acute pericarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\Other and unspecified acute pericarditis (420.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Acute pericarditis (420)\Other and unspecified acute pericarditis (420.9)\(420.99) Other acute pericarditis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''420.99''', NULL,
+ '(420.99) Other acute pericarditis', '(420.99) Other acute pericarditis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427''', NULL,
+ 'Cardiac dysrhythmias (427)', 'Cardiac dysrhythmias (427)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\(427.0) Paroxysmal supraventricular tachycardia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\(427.0) Paroxysmal supraventricular tachycardia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.0''', NULL,
+ '(427.0) Paroxysmal supraventricular tachycardia', '(427.0) Paroxysmal supraventricular tachycardia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\(427.1) Paroxysmal ventricular tachycardia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\(427.1) Paroxysmal ventricular tachycardia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.1''', NULL,
+ '(427.1) Paroxysmal ventricular tachycardia', '(427.1) Paroxysmal ventricular tachycardia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\(427.2) Paroxysmal tachycardia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\(427.2) Paroxysmal tachycardia, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.2''', NULL,
+ '(427.2) Paroxysmal tachycardia, unspecified', '(427.2) Paroxysmal tachycardia, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\(427.5) Cardiac arrest\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\(427.5) Cardiac arrest\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.5''', NULL,
+ '(427.5) Cardiac arrest', '(427.5) Cardiac arrest', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\(427.9) Cardiac dysrhythmia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\(427.9) Cardiac dysrhythmia, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.9''', NULL,
+ '(427.9) Cardiac dysrhythmia, unspecified', '(427.9) Cardiac dysrhythmia, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Atrial fibrillation and flutter (427.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Atrial fibrillation and flutter (427.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.3''', NULL,
+ 'Atrial fibrillation and flutter (427.3)', 'Atrial fibrillation and flutter (427.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Atrial fibrillation and flutter (427.3)\(427.31) Atrial fibrillation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Atrial fibrillation and flutter (427.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Atrial fibrillation and flutter (427.3)\(427.31) Atrial fibrillation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.31''', NULL,
+ '(427.31) Atrial fibrillation', '(427.31) Atrial fibrillation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Atrial fibrillation and flutter (427.3)\(427.32) Atrial flutter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Atrial fibrillation and flutter (427.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Atrial fibrillation and flutter (427.3)\(427.32) Atrial flutter\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.32''', NULL,
+ '(427.32) Atrial flutter', '(427.32) Atrial flutter', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Other specified cardiac dysrhythmias (427.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Other specified cardiac dysrhythmias (427.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.8''', NULL,
+ 'Other specified cardiac dysrhythmias (427.8)', 'Other specified cardiac dysrhythmias (427.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Other specified cardiac dysrhythmias (427.8)\(427.81) Sinoatrial node dysfunction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Other specified cardiac dysrhythmias (427.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Other specified cardiac dysrhythmias (427.8)\(427.81) Sinoatrial node dysfunction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.81''', NULL,
+ '(427.81) Sinoatrial node dysfunction', '(427.81) Sinoatrial node dysfunction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Other specified cardiac dysrhythmias (427.8)\(427.89) Other specified cardiac dysrhythmias\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Other specified cardiac dysrhythmias (427.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Other specified cardiac dysrhythmias (427.8)\(427.89) Other specified cardiac dysrhythmias\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.89''', NULL,
+ '(427.89) Other specified cardiac dysrhythmias', '(427.89) Other specified cardiac dysrhythmias', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Premature beats (427.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Premature beats (427.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.6''', NULL,
+ 'Premature beats (427.6)', 'Premature beats (427.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Premature beats (427.6)\(427.60) Premature beats, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Premature beats (427.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Premature beats (427.6)\(427.60) Premature beats, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.60''', NULL,
+ '(427.60) Premature beats, unspecified', '(427.60) Premature beats, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Premature beats (427.6)\(427.61) Supraventricular premature beats\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Premature beats (427.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Premature beats (427.6)\(427.61) Supraventricular premature beats\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.61''', NULL,
+ '(427.61) Supraventricular premature beats', '(427.61) Supraventricular premature beats', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Premature beats (427.6)\(427.69) Other premature beats\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Premature beats (427.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Premature beats (427.6)\(427.69) Other premature beats\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.69''', NULL,
+ '(427.69) Other premature beats', '(427.69) Other premature beats', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Ventricular fibrillation and flutter (427.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Ventricular fibrillation and flutter (427.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.4''', NULL,
+ 'Ventricular fibrillation and flutter (427.4)', 'Ventricular fibrillation and flutter (427.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Ventricular fibrillation and flutter (427.4)\(427.41) Ventricular fibrillation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Ventricular fibrillation and flutter (427.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Ventricular fibrillation and flutter (427.4)\(427.41) Ventricular fibrillation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.41''', NULL,
+ '(427.41) Ventricular fibrillation', '(427.41) Ventricular fibrillation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Ventricular fibrillation and flutter (427.4)\(427.42) Ventricular flutter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Ventricular fibrillation and flutter (427.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiac dysrhythmias (427)\Ventricular fibrillation and flutter (427.4)\(427.42) Ventricular flutter\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''427.42''', NULL,
+ '(427.42) Ventricular flutter', '(427.42) Ventricular flutter', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''425''', NULL,
+ 'Cardiomyopathy (425)', 'Cardiomyopathy (425)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.0) Endomyocardial fibrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.0) Endomyocardial fibrosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''425.0''', NULL,
+ '(425.0) Endomyocardial fibrosis', '(425.0) Endomyocardial fibrosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.2) Obscure cardiomyopathy of Africa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.2) Obscure cardiomyopathy of Africa\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''425.2''', NULL,
+ '(425.2) Obscure cardiomyopathy of Africa', '(425.2) Obscure cardiomyopathy of Africa', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.3) Endocardial fibroelastosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.3) Endocardial fibroelastosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''425.3''', NULL,
+ '(425.3) Endocardial fibroelastosis', '(425.3) Endocardial fibroelastosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.4) Other primary cardiomyopathies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.4) Other primary cardiomyopathies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''425.4''', NULL,
+ '(425.4) Other primary cardiomyopathies', '(425.4) Other primary cardiomyopathies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.5) Alcoholic cardiomyopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.5) Alcoholic cardiomyopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''425.5''', NULL,
+ '(425.5) Alcoholic cardiomyopathy', '(425.5) Alcoholic cardiomyopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.7) Nutritional and metabolic cardiomyopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.7) Nutritional and metabolic cardiomyopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''425.7''', NULL,
+ '(425.7) Nutritional and metabolic cardiomyopathy', '(425.7) Nutritional and metabolic cardiomyopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.8) Cardiomyopathy in other diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.8) Cardiomyopathy in other diseases classified elsewhere\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''425.8''', NULL,
+ '(425.8) Cardiomyopathy in other diseases classified elsewhere', '(425.8) Cardiomyopathy in other diseases classified elsewhere', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.9) Secondary cardiomyopathy, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\(425.9) Secondary cardiomyopathy, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''425.9''', NULL,
+ '(425.9) Secondary cardiomyopathy, unspecified', '(425.9) Secondary cardiomyopathy, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\Hypertrophic cardiomyopathy (425.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\Hypertrophic cardiomyopathy (425.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''425.1''', NULL,
+ 'Hypertrophic cardiomyopathy (425.1)', 'Hypertrophic cardiomyopathy (425.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\Hypertrophic cardiomyopathy (425.1)\(425.11) Hypertrophic obstructive cardiomyopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\Hypertrophic cardiomyopathy (425.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\Hypertrophic cardiomyopathy (425.1)\(425.11) Hypertrophic obstructive cardiomyopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''425.11''', NULL,
+ '(425.11) Hypertrophic obstructive cardiomyopathy', '(425.11) Hypertrophic obstructive cardiomyopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\Hypertrophic cardiomyopathy (425.1)\(425.18) Other hypertrophic cardiomyopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\Hypertrophic cardiomyopathy (425.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Cardiomyopathy (425)\Hypertrophic cardiomyopathy (425.1)\(425.18) Other hypertrophic cardiomyopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''425.18''', NULL,
+ '(425.18) Other hypertrophic cardiomyopathy', '(425.18) Other hypertrophic cardiomyopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426''', NULL,
+ 'Conduction disorders (426)', 'Conduction disorders (426)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\(426.0) Atrioventricular block, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\(426.0) Atrioventricular block, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.0''', NULL,
+ '(426.0) Atrioventricular block, complete', '(426.0) Atrioventricular block, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\(426.2) Left bundle branch hemiblock\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\(426.2) Left bundle branch hemiblock\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.2''', NULL,
+ '(426.2) Left bundle branch hemiblock', '(426.2) Left bundle branch hemiblock', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\(426.3) Other left bundle branch block\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\(426.3) Other left bundle branch block\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.3''', NULL,
+ '(426.3) Other left bundle branch block', '(426.3) Other left bundle branch block', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\(426.4) Right bundle branch block\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\(426.4) Right bundle branch block\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.4''', NULL,
+ '(426.4) Right bundle branch block', '(426.4) Right bundle branch block', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\(426.6) Other heart block\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\(426.6) Other heart block\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.6''', NULL,
+ '(426.6) Other heart block', '(426.6) Other heart block', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\(426.7) Anomalous atrioventricular excitation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\(426.7) Anomalous atrioventricular excitation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.7''', NULL,
+ '(426.7) Anomalous atrioventricular excitation', '(426.7) Anomalous atrioventricular excitation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\(426.9) Conduction disorder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\(426.9) Conduction disorder, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.9''', NULL,
+ '(426.9) Conduction disorder, unspecified', '(426.9) Conduction disorder, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Atrioventricular block, other and unspecified (426.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Atrioventricular block, other and unspecified (426.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.1''', NULL,
+ 'Atrioventricular block, other and unspecified (426.1)', 'Atrioventricular block, other and unspecified (426.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Atrioventricular block, other and unspecified (426.1)\(426.10) Atrioventricular block, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Atrioventricular block, other and unspecified (426.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Atrioventricular block, other and unspecified (426.1)\(426.10) Atrioventricular block, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.10''', NULL,
+ '(426.10) Atrioventricular block, unspecified', '(426.10) Atrioventricular block, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Atrioventricular block, other and unspecified (426.1)\(426.11) First degree atrioventricular block\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Atrioventricular block, other and unspecified (426.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Atrioventricular block, other and unspecified (426.1)\(426.11) First degree atrioventricular block\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.11''', NULL,
+ '(426.11) First degree atrioventricular block', '(426.11) First degree atrioventricular block', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Atrioventricular block, other and unspecified (426.1)\(426.12) Mobitz (type) II atrioventricular block\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Atrioventricular block, other and unspecified (426.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Atrioventricular block, other and unspecified (426.1)\(426.12) Mobitz (type) II atrioventricular block\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.12) Mobitz (type''', NULL,
+ '(426.12) Mobitz (type) II atrioventricular block', '(426.12) Mobitz (type) II atrioventricular block', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Atrioventricular block, other and unspecified (426.1)\(426.13) Other second degree atrioventricular block\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Atrioventricular block, other and unspecified (426.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Atrioventricular block, other and unspecified (426.1)\(426.13) Other second degree atrioventricular block\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.13''', NULL,
+ '(426.13) Other second degree atrioventricular block', '(426.13) Other second degree atrioventricular block', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.5''', NULL,
+ 'Bundle branch block, other and unspecified (426.5)', 'Bundle branch block, other and unspecified (426.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\(426.50) Bundle branch block, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\(426.50) Bundle branch block, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.50''', NULL,
+ '(426.50) Bundle branch block, unspecified', '(426.50) Bundle branch block, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\(426.51) Right bundle branch block and left posterior fascicular block\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\(426.51) Right bundle branch block and left posterior fascicular block\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.51''', NULL,
+ '(426.51) Right bundle branch block and left posterior fascicular block', '(426.51) Right bundle branch block and left posterior fascicular block', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\(426.52) Right bundle branch block and left anterior fascicular block\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\(426.52) Right bundle branch block and left anterior fascicular block\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.52''', NULL,
+ '(426.52) Right bundle branch block and left anterior fascicular block', '(426.52) Right bundle branch block and left anterior fascicular block', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\(426.53) Other bilateral bundle branch block\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\(426.53) Other bilateral bundle branch block\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.53''', NULL,
+ '(426.53) Other bilateral bundle branch block', '(426.53) Other bilateral bundle branch block', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\(426.54) Trifascicular block\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Bundle branch block, other and unspecified (426.5)\(426.54) Trifascicular block\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.54''', NULL,
+ '(426.54) Trifascicular block', '(426.54) Trifascicular block', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Other specified conduction disorders (426.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Other specified conduction disorders (426.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.8''', NULL,
+ 'Other specified conduction disorders (426.8)', 'Other specified conduction disorders (426.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Other specified conduction disorders (426.8)\(426.81) Lown-Ganong-Levine syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Other specified conduction disorders (426.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Other specified conduction disorders (426.8)\(426.81) Lown-Ganong-Levine syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.81''', NULL,
+ '(426.81) Lown-Ganong-Levine syndrome', '(426.81) Lown-Ganong-Levine syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Other specified conduction disorders (426.8)\(426.82) Long QT syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Other specified conduction disorders (426.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Other specified conduction disorders (426.8)\(426.82) Long QT syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.82''', NULL,
+ '(426.82) Long QT syndrome', '(426.82) Long QT syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Other specified conduction disorders (426.8)\(426.89) Other specified conduction disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Other specified conduction disorders (426.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Conduction disorders (426)\Other specified conduction disorders (426.8)\(426.89) Other specified conduction disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''426.89''', NULL,
+ '(426.89) Other specified conduction disorders', '(426.89) Other specified conduction disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428''', NULL,
+ 'Heart failure (428)', 'Heart failure (428)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\(428.0) Congestive heart failure, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\(428.0) Congestive heart failure, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.0''', NULL,
+ '(428.0) Congestive heart failure, unspecified', '(428.0) Congestive heart failure, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\(428.1) Left heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\(428.1) Left heart failure\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.1''', NULL,
+ '(428.1) Left heart failure', '(428.1) Left heart failure', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\(428.9) Heart failure, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\(428.9) Heart failure, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.9''', NULL,
+ '(428.9) Heart failure, unspecified', '(428.9) Heart failure, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Combined systolic and diastolic heart failure (428.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Combined systolic and diastolic heart failure (428.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.4''', NULL,
+ 'Combined systolic and diastolic heart failure (428.4)', 'Combined systolic and diastolic heart failure (428.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Combined systolic and diastolic heart failure (428.4)\(428.40) Combined systolic and diastolic heart failure, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Combined systolic and diastolic heart failure (428.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Combined systolic and diastolic heart failure (428.4)\(428.40) Combined systolic and diastolic heart failure, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.40''', NULL,
+ '(428.40) Combined systolic and diastolic heart failure, unspecified', '(428.40) Combined systolic and diastolic heart failure, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Combined systolic and diastolic heart failure (428.4)\(428.41) Acute combined systolic and diastolic heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Combined systolic and diastolic heart failure (428.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Combined systolic and diastolic heart failure (428.4)\(428.41) Acute combined systolic and diastolic heart failure\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.41''', NULL,
+ '(428.41) Acute combined systolic and diastolic heart failure', '(428.41) Acute combined systolic and diastolic heart failure', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Combined systolic and diastolic heart failure (428.4)\(428.42) Chronic combined systolic and diastolic heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Combined systolic and diastolic heart failure (428.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Combined systolic and diastolic heart failure (428.4)\(428.42) Chronic combined systolic and diastolic heart failure\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.42''', NULL,
+ '(428.42) Chronic combined systolic and diastolic heart failure', '(428.42) Chronic combined systolic and diastolic heart failure', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Combined systolic and diastolic heart failure (428.4)\(428.43) Acute on chronic combined systolic and diastolic heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Combined systolic and diastolic heart failure (428.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Combined systolic and diastolic heart failure (428.4)\(428.43) Acute on chronic combined systolic and diastolic heart failure\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.43''', NULL,
+ '(428.43) Acute on chronic combined systolic and diastolic heart failure', '(428.43) Acute on chronic combined systolic and diastolic heart failure', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Diastolic heart failure (428.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Diastolic heart failure (428.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.3''', NULL,
+ 'Diastolic heart failure (428.3)', 'Diastolic heart failure (428.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Diastolic heart failure (428.3)\(428.30) Diastolic heart failure, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Diastolic heart failure (428.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Diastolic heart failure (428.3)\(428.30) Diastolic heart failure, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.30''', NULL,
+ '(428.30) Diastolic heart failure, unspecified', '(428.30) Diastolic heart failure, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Diastolic heart failure (428.3)\(428.31) Acute diastolic heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Diastolic heart failure (428.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Diastolic heart failure (428.3)\(428.31) Acute diastolic heart failure\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.31''', NULL,
+ '(428.31) Acute diastolic heart failure', '(428.31) Acute diastolic heart failure', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Diastolic heart failure (428.3)\(428.32) Chronic diastolic heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Diastolic heart failure (428.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Diastolic heart failure (428.3)\(428.32) Chronic diastolic heart failure\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.32''', NULL,
+ '(428.32) Chronic diastolic heart failure', '(428.32) Chronic diastolic heart failure', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Diastolic heart failure (428.3)\(428.33) Acute on chronic diastolic heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Diastolic heart failure (428.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Diastolic heart failure (428.3)\(428.33) Acute on chronic diastolic heart failure\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.33''', NULL,
+ '(428.33) Acute on chronic diastolic heart failure', '(428.33) Acute on chronic diastolic heart failure', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Systolic heart failure (428.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Systolic heart failure (428.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.2''', NULL,
+ 'Systolic heart failure (428.2)', 'Systolic heart failure (428.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Systolic heart failure (428.2)\(428.20) Systolic heart failure, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Systolic heart failure (428.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Systolic heart failure (428.2)\(428.20) Systolic heart failure, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.20''', NULL,
+ '(428.20) Systolic heart failure, unspecified', '(428.20) Systolic heart failure, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Systolic heart failure (428.2)\(428.21) Acute systolic heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Systolic heart failure (428.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Systolic heart failure (428.2)\(428.21) Acute systolic heart failure\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.21''', NULL,
+ '(428.21) Acute systolic heart failure', '(428.21) Acute systolic heart failure', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Systolic heart failure (428.2)\(428.22) Chronic systolic heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Systolic heart failure (428.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Systolic heart failure (428.2)\(428.22) Chronic systolic heart failure\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.22''', NULL,
+ '(428.22) Chronic systolic heart failure', '(428.22) Chronic systolic heart failure', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Systolic heart failure (428.2)\(428.23) Acute on chronic systolic heart failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Systolic heart failure (428.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Heart failure (428)\Systolic heart failure (428.2)\(428.23) Acute on chronic systolic heart failure\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''428.23''', NULL,
+ '(428.23) Acute on chronic systolic heart failure', '(428.23) Acute on chronic systolic heart failure', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429''', NULL,
+ 'Ill-defined descriptions and complications of heart disease (429)', 'Ill-defined descriptions and complications of heart disease (429)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.0) Myocarditis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.0) Myocarditis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.0''', NULL,
+ '(429.0) Myocarditis, unspecified', '(429.0) Myocarditis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.1) Myocardial degeneration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.1) Myocardial degeneration\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.1''', NULL,
+ '(429.1) Myocardial degeneration', '(429.1) Myocardial degeneration', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.2) Cardiovascular disease, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.2) Cardiovascular disease, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.2''', NULL,
+ '(429.2) Cardiovascular disease, unspecified', '(429.2) Cardiovascular disease, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.3) Cardiomegaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.3) Cardiomegaly\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.3''', NULL,
+ '(429.3) Cardiomegaly', '(429.3) Cardiomegaly', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.4) Functional disturbances following cardiac surgery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.4) Functional disturbances following cardiac surgery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.4''', NULL,
+ '(429.4) Functional disturbances following cardiac surgery', '(429.4) Functional disturbances following cardiac surgery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.5) Rupture of chordae tendineae\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.5) Rupture of chordae tendineae\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.5''', NULL,
+ '(429.5) Rupture of chordae tendineae', '(429.5) Rupture of chordae tendineae', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.6) Rupture of papillary muscle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.6) Rupture of papillary muscle\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.6''', NULL,
+ '(429.6) Rupture of papillary muscle', '(429.6) Rupture of papillary muscle', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.9) Heart disease, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\(429.9) Heart disease, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.9''', NULL,
+ '(429.9) Heart disease, unspecified', '(429.9) Heart disease, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Certain sequelae of myocardial infarction, not elsewhere classified (429.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Certain sequelae of myocardial infarction, not elsewhere classified (429.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.7''', NULL,
+ 'Certain sequelae of myocardial infarction, not elsewhere classified (429.7)', 'Certain sequelae of myocardial infarction, not elsewhere classified (429.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Certain sequelae of myocardial infarction, not elsewhere classified (429.7)\(429.71) Acquired cardiac septal defect\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Certain sequelae of myocardial infarction, not elsewhere classified (429.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Certain sequelae of myocardial infarction, not elsewhere classified (429.7)\(429.71) Acquired cardiac septal defect\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.71''', NULL,
+ '(429.71) Acquired cardiac septal defect', '(429.71) Acquired cardiac septal defect', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Certain sequelae of myocardial infarction, not elsewhere classified (429.7)\(429.79) Certain sequelae of myocardial infarction, not elsewhere classified, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Certain sequelae of myocardial infarction, not elsewhere classified (429.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Certain sequelae of myocardial infarction, not elsewhere classified (429.7)\(429.79) Certain sequelae of myocardial infarction, not elsewhere classified, other\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.79''', NULL,
+ '(429.79) Certain sequelae of myocardial infarction, not elsewhere classified, other', '(429.79) Certain sequelae of myocardial infarction, not elsewhere classified, other', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Other ill-defined heart diseases (429.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Other ill-defined heart diseases (429.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.8''', NULL,
+ 'Other ill-defined heart diseases (429.8)', 'Other ill-defined heart diseases (429.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Other ill-defined heart diseases (429.8)\(429.81) Other disorders of papillary muscle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Other ill-defined heart diseases (429.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Other ill-defined heart diseases (429.8)\(429.81) Other disorders of papillary muscle\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.81''', NULL,
+ '(429.81) Other disorders of papillary muscle', '(429.81) Other disorders of papillary muscle', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Other ill-defined heart diseases (429.8)\(429.82) Hyperkinetic heart disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Other ill-defined heart diseases (429.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Other ill-defined heart diseases (429.8)\(429.82) Hyperkinetic heart disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.82''', NULL,
+ '(429.82) Hyperkinetic heart disease', '(429.82) Hyperkinetic heart disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Other ill-defined heart diseases (429.8)\(429.83) Takotsubo syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Other ill-defined heart diseases (429.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Other ill-defined heart diseases (429.8)\(429.83) Takotsubo syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.83''', NULL,
+ '(429.83) Takotsubo syndrome', '(429.83) Takotsubo syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Other ill-defined heart diseases (429.8)\(429.89) Other ill-defined heart diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Other ill-defined heart diseases (429.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Ill-defined descriptions and complications of heart disease (429)\Other ill-defined heart diseases (429.8)\(429.89) Other ill-defined heart diseases\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''429.89''', NULL,
+ '(429.89) Other ill-defined heart diseases', '(429.89) Other ill-defined heart diseases', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''424''', NULL,
+ 'Other diseases of endocardium (424)', 'Other diseases of endocardium (424)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\(424.0) Mitral valve disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\(424.0) Mitral valve disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''424.0''', NULL,
+ '(424.0) Mitral valve disorders', '(424.0) Mitral valve disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\(424.1) Aortic valve disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\(424.1) Aortic valve disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''424.1''', NULL,
+ '(424.1) Aortic valve disorders', '(424.1) Aortic valve disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\(424.2) Tricuspid valve disorders, specified as nonrheumatic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\(424.2) Tricuspid valve disorders, specified as nonrheumatic\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''424.2''', NULL,
+ '(424.2) Tricuspid valve disorders, specified as nonrheumatic', '(424.2) Tricuspid valve disorders, specified as nonrheumatic', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\(424.3) Pulmonary valve disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\(424.3) Pulmonary valve disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''424.3''', NULL,
+ '(424.3) Pulmonary valve disorders', '(424.3) Pulmonary valve disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\Endocarditis, valve unspecified (424.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\Endocarditis, valve unspecified (424.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''424.9''', NULL,
+ 'Endocarditis, valve unspecified (424.9)', 'Endocarditis, valve unspecified (424.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\Endocarditis, valve unspecified (424.9)\(424.90) Endocarditis, valve unspecified, unspecified cause\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\Endocarditis, valve unspecified (424.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\Endocarditis, valve unspecified (424.9)\(424.90) Endocarditis, valve unspecified, unspecified cause\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''424.90''', NULL,
+ '(424.90) Endocarditis, valve unspecified, unspecified cause', '(424.90) Endocarditis, valve unspecified, unspecified cause', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\Endocarditis, valve unspecified (424.9)\(424.91) Endocarditis in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\Endocarditis, valve unspecified (424.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\Endocarditis, valve unspecified (424.9)\(424.91) Endocarditis in diseases classified elsewhere\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''424.91''', NULL,
+ '(424.91) Endocarditis in diseases classified elsewhere', '(424.91) Endocarditis in diseases classified elsewhere', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\Endocarditis, valve unspecified (424.9)\(424.99) Other endocarditis, valve unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\Endocarditis, valve unspecified (424.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of endocardium (424)\Endocarditis, valve unspecified (424.9)\(424.99) Other endocarditis, valve unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''424.99''', NULL,
+ '(424.99) Other endocarditis, valve unspecified', '(424.99) Other endocarditis, valve unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''423''', NULL,
+ 'Other diseases of pericardium (423)', 'Other diseases of pericardium (423)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\(423.0) Hemopericardium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\(423.0) Hemopericardium\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''423.0''', NULL,
+ '(423.0) Hemopericardium', '(423.0) Hemopericardium', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\(423.1) Adhesive pericarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\(423.1) Adhesive pericarditis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''423.1''', NULL,
+ '(423.1) Adhesive pericarditis', '(423.1) Adhesive pericarditis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\(423.2) Constrictive pericarditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\(423.2) Constrictive pericarditis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''423.2''', NULL,
+ '(423.2) Constrictive pericarditis', '(423.2) Constrictive pericarditis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\(423.3) Cardiac tamponade\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\(423.3) Cardiac tamponade\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''423.3''', NULL,
+ '(423.3) Cardiac tamponade', '(423.3) Cardiac tamponade', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\(423.8) Other specified diseases of pericardium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\(423.8) Other specified diseases of pericardium\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''423.8''', NULL,
+ '(423.8) Other specified diseases of pericardium', '(423.8) Other specified diseases of pericardium', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\(423.9) Unspecified disease of pericardium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the circulatory system (390-459.99)\Other forms of heart disease (420-429.99)\Other diseases of pericardium (423)\(423.9) Unspecified disease of pericardium\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''423.9''', NULL,
+ '(423.9) Unspecified disease of pericardium', '(423.9) Unspecified disease of pericardium', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''520'' AND ''579.99''', NULL,
+ 'Diseases of the digestive system (520-579.99)', 'Diseases of the digestive system (520-579.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\(538) gastrointestinal mucositis (ulcerative)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\(538) gastrointestinal mucositis (ulcerative)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''ulcerative''', NULL,
+ '-538 gastrointestinal mucositis (ulcerative)', '-538 gastrointestinal mucositis (ulcerative)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''540'' AND ''543.99''', NULL,
+ 'Appendicitis (540-543.99)', 'Appendicitis (540-543.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\(541) Appendicitis, unqualified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\(541) Appendicitis, unqualified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''541''', NULL,
+ '(541) Appendicitis, unqualified', '(541) Appendicitis, unqualified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\(542) Other appendicitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\(542) Other appendicitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''542''', NULL,
+ '(542) Other appendicitis', '(542) Other appendicitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Acute appendicitis (540)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Acute appendicitis (540)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''540''', NULL,
+ 'Acute appendicitis (540)', 'Acute appendicitis (540)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Acute appendicitis (540)\(540.0) Acute appendicitis with generalized peritonitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Acute appendicitis (540)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Acute appendicitis (540)\(540.0) Acute appendicitis with generalized peritonitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''540.0''', NULL,
+ '(540.0) Acute appendicitis with generalized peritonitis', '(540.0) Acute appendicitis with generalized peritonitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Acute appendicitis (540)\(540.1) Acute appendicitis with peritoneal abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Acute appendicitis (540)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Acute appendicitis (540)\(540.1) Acute appendicitis with peritoneal abscess\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''540.1''', NULL,
+ '(540.1) Acute appendicitis with peritoneal abscess', '(540.1) Acute appendicitis with peritoneal abscess', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Acute appendicitis (540)\(540.9) Acute appendicitis without mention of peritonitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Acute appendicitis (540)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Acute appendicitis (540)\(540.9) Acute appendicitis without mention of peritonitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''540.9''', NULL,
+ '(540.9) Acute appendicitis without mention of peritonitis', '(540.9) Acute appendicitis without mention of peritonitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Other diseases of appendix (543)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Other diseases of appendix (543)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''543''', NULL,
+ 'Other diseases of appendix (543)', 'Other diseases of appendix (543)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Other diseases of appendix (543)\(543.0) Hyperplasia of appendix (lymphoid)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Other diseases of appendix (543)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Other diseases of appendix (543)\(543.0) Hyperplasia of appendix (lymphoid)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''543.0) Hyperplasia of appendix (lymphoid''', NULL,
+ '(543.0) Hyperplasia of appendix (lymphoid)', '(543.0) Hyperplasia of appendix (lymphoid)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Other diseases of appendix (543)\(543.9) Other and unspecified diseases of appendix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Other diseases of appendix (543)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Appendicitis (540-543.99)\Other diseases of appendix (543)\(543.9) Other and unspecified diseases of appendix\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''543.9''', NULL,
+ '(543.9) Other and unspecified diseases of appendix', '(543.9) Other and unspecified diseases of appendix', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''530'' AND ''539.99''', NULL,
+ 'Diseases of esophagus, stomach, and duodenum (530-539.99)', 'Diseases of esophagus, stomach, and duodenum (530-539.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Complications of bariatric procedures (539)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Complications of bariatric procedures (539)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''539''', NULL,
+ 'Complications of bariatric procedures (539)', 'Complications of bariatric procedures (539)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Complications of bariatric procedures (539)\Complications of gastric band procedure (539.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Complications of bariatric procedures (539)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Complications of bariatric procedures (539)\Complications of gastric band procedure (539.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''539.0''', NULL,
+ 'Complications of gastric band procedure (539.0)', 'Complications of gastric band procedure (539.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Complications of bariatric procedures (539)\Complications of gastric band procedure (539.0)\(539.09) Other complications of gastric band procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Complications of bariatric procedures (539)\Complications of gastric band procedure (539.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Complications of bariatric procedures (539)\Complications of gastric band procedure (539.0)\(539.09) Other complications of gastric band procedure\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''539.09''', NULL,
+ '(539.09) Other complications of gastric band procedure', '(539.09) Other complications of gastric band procedure', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Complications of bariatric procedures (539)\Complications of other bariatric procedure (539.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Complications of bariatric procedures (539)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Complications of bariatric procedures (539)\Complications of other bariatric procedure (539.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''539.8''', NULL,
+ 'Complications of other bariatric procedure (539.8)', 'Complications of other bariatric procedure (539.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Complications of bariatric procedures (539)\Complications of other bariatric procedure (539.8)\(539.89) Other complications of other bariatric procedure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Complications of bariatric procedures (539)\Complications of other bariatric procedure (539.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Complications of bariatric procedures (539)\Complications of other bariatric procedure (539.8)\(539.89) Other complications of other bariatric procedure\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''539.89''', NULL,
+ '(539.89) Other complications of other bariatric procedure', '(539.89) Other complications of other bariatric procedure', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530''', NULL,
+ 'Diseases of esophagus (530)', 'Diseases of esophagus (530)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\(530.0) Achalasia and cardiospasm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\(530.0) Achalasia and cardiospasm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.0''', NULL,
+ '(530.0) Achalasia and cardiospasm', '(530.0) Achalasia and cardiospasm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\(530.3) Stricture and stenosis of esophagus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\(530.3) Stricture and stenosis of esophagus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.3''', NULL,
+ '(530.3) Stricture and stenosis of esophagus', '(530.3) Stricture and stenosis of esophagus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\(530.4) Perforation of esophagus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\(530.4) Perforation of esophagus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.4''', NULL,
+ '(530.4) Perforation of esophagus', '(530.4) Perforation of esophagus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\(530.5) Dyskinesia of esophagus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\(530.5) Dyskinesia of esophagus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.5''', NULL,
+ '(530.5) Dyskinesia of esophagus', '(530.5) Dyskinesia of esophagus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\(530.6) Diverticulum of esophagus, acquired\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\(530.6) Diverticulum of esophagus, acquired\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.6''', NULL,
+ '(530.6) Diverticulum of esophagus, acquired', '(530.6) Diverticulum of esophagus, acquired', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\(530.7) Gastroesophageal laceration-hemorrhage syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\(530.7) Gastroesophageal laceration-hemorrhage syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.7''', NULL,
+ '(530.7) Gastroesophageal laceration-hemorrhage syndrome', '(530.7) Gastroesophageal laceration-hemorrhage syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\(530.9) Unspecified disorder of esophagus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\(530.9) Unspecified disorder of esophagus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.9''', NULL,
+ '(530.9) Unspecified disorder of esophagus', '(530.9) Unspecified disorder of esophagus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.1''', NULL,
+ 'Esophagitis (530.1)', 'Esophagitis (530.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\(530.10) Esophagitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\(530.10) Esophagitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.10''', NULL,
+ '(530.10) Esophagitis, unspecified', '(530.10) Esophagitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\(530.11) Reflux esophagitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\(530.11) Reflux esophagitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.11''', NULL,
+ '(530.11) Reflux esophagitis', '(530.11) Reflux esophagitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\(530.12) Acute esophagitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\(530.12) Acute esophagitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.12''', NULL,
+ '(530.12) Acute esophagitis', '(530.12) Acute esophagitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\(530.13) Eosinophilic esophagitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\(530.13) Eosinophilic esophagitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.13''', NULL,
+ '(530.13) Eosinophilic esophagitis', '(530.13) Eosinophilic esophagitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\(530.19) Other esophagitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Esophagitis (530.1)\(530.19) Other esophagitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.19''', NULL,
+ '(530.19) Other esophagitis', '(530.19) Other esophagitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.8''', NULL,
+ 'Other specified disorders of esophagus (530.8)', 'Other specified disorders of esophagus (530.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.81) Esophageal reflux\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.81) Esophageal reflux\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.81''', NULL,
+ '(530.81) Esophageal reflux', '(530.81) Esophageal reflux', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.82) Esophageal hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.82) Esophageal hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.82''', NULL,
+ '(530.82) Esophageal hemorrhage', '(530.82) Esophageal hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.83) Esophageal leukoplakia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.83) Esophageal leukoplakia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.83''', NULL,
+ '(530.83) Esophageal leukoplakia', '(530.83) Esophageal leukoplakia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.84) Tracheoesophageal fistula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.84) Tracheoesophageal fistula\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.84''', NULL,
+ '(530.84) Tracheoesophageal fistula', '(530.84) Tracheoesophageal fistula', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.85) Barrett''s esophagus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.85) Barrett''s esophagus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.85''', NULL,
+ '(530.85) Barrett''s esophagus', '(530.85) Barrett''s esophagus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.86) Infection of esophagostomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.86) Infection of esophagostomy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.86''', NULL,
+ '(530.86) Infection of esophagostomy', '(530.86) Infection of esophagostomy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.87) Mechanical complication of esophagostomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.87) Mechanical complication of esophagostomy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.87''', NULL,
+ '(530.87) Mechanical complication of esophagostomy', '(530.87) Mechanical complication of esophagostomy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.89) Other specified disorders of esophagus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Other specified disorders of esophagus (530.8)\(530.89) Other specified disorders of esophagus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.89''', NULL,
+ '(530.89) Other specified disorders of esophagus', '(530.89) Other specified disorders of esophagus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Ulcer of esophagus (530.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Ulcer of esophagus (530.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.2''', NULL,
+ 'Ulcer of esophagus (530.2)', 'Ulcer of esophagus (530.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Ulcer of esophagus (530.2)\(530.20) Ulcer of esophagus without bleeding\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Ulcer of esophagus (530.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Ulcer of esophagus (530.2)\(530.20) Ulcer of esophagus without bleeding\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.20''', NULL,
+ '(530.20) Ulcer of esophagus without bleeding', '(530.20) Ulcer of esophagus without bleeding', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Ulcer of esophagus (530.2)\(530.21) Ulcer of esophagus with bleeding\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Ulcer of esophagus (530.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Diseases of esophagus (530)\Ulcer of esophagus (530.2)\(530.21) Ulcer of esophagus with bleeding\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''530.21''', NULL,
+ '(530.21) Ulcer of esophagus with bleeding', '(530.21) Ulcer of esophagus with bleeding', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''536''', NULL,
+ 'Disorders of function of stomach (536)', 'Disorders of function of stomach (536)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\(536.0) Achlorhydria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\(536.0) Achlorhydria\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''536.0''', NULL,
+ '(536.0) Achlorhydria', '(536.0) Achlorhydria', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\(536.1) Acute dilatation of stomach\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\(536.1) Acute dilatation of stomach\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''536.1''', NULL,
+ '(536.1) Acute dilatation of stomach', '(536.1) Acute dilatation of stomach', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\(536.2) Persistent vomiting\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\(536.2) Persistent vomiting\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''536.2''', NULL,
+ '(536.2) Persistent vomiting', '(536.2) Persistent vomiting', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\(536.3) Gastroparesis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\(536.3) Gastroparesis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''536.3''', NULL,
+ '(536.3) Gastroparesis', '(536.3) Gastroparesis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\(536.8) Dyspepsia and other specified disorders of function of stomach\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\(536.8) Dyspepsia and other specified disorders of function of stomach\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''536.8''', NULL,
+ '(536.8) Dyspepsia and other specified disorders of function of stomach', '(536.8) Dyspepsia and other specified disorders of function of stomach', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\(536.9) Unspecified functional disorder of stomach\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\(536.9) Unspecified functional disorder of stomach\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''536.9''', NULL,
+ '(536.9) Unspecified functional disorder of stomach', '(536.9) Unspecified functional disorder of stomach', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\Gastrostomy complications (536.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\Gastrostomy complications (536.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''536.4''', NULL,
+ 'Gastrostomy complications (536.4)', 'Gastrostomy complications (536.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\Gastrostomy complications (536.4)\(536.40) Gastrostomy complication, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\Gastrostomy complications (536.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\Gastrostomy complications (536.4)\(536.40) Gastrostomy complication, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''536.40''', NULL,
+ '(536.40) Gastrostomy complication, unspecified', '(536.40) Gastrostomy complication, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\Gastrostomy complications (536.4)\(536.41) Infection of gastrostomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\Gastrostomy complications (536.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\Gastrostomy complications (536.4)\(536.41) Infection of gastrostomy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''536.41''', NULL,
+ '(536.41) Infection of gastrostomy', '(536.41) Infection of gastrostomy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\Gastrostomy complications (536.4)\(536.42) Mechanical complication of gastrostomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\Gastrostomy complications (536.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\Gastrostomy complications (536.4)\(536.42) Mechanical complication of gastrostomy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''536.42''', NULL,
+ '(536.42) Mechanical complication of gastrostomy', '(536.42) Mechanical complication of gastrostomy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\Gastrostomy complications (536.4)\(536.49) Other gastrostomy complications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\Gastrostomy complications (536.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Disorders of function of stomach (536)\Gastrostomy complications (536.4)\(536.49) Other gastrostomy complications\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''536.49''', NULL,
+ '(536.49) Other gastrostomy complications', '(536.49) Other gastrostomy complications', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532''', NULL,
+ 'Duodenal ulcer (532)', 'Duodenal ulcer (532)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage (532.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage (532.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.0''', NULL,
+ 'Acute duodenal ulcer with hemorrhage (532.0)', 'Acute duodenal ulcer with hemorrhage (532.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage (532.0)\(532.00) Acute duodenal ulcer with hemorrhage, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage (532.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage (532.0)\(532.00) Acute duodenal ulcer with hemorrhage, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.00''', NULL,
+ '(532.00) Acute duodenal ulcer with hemorrhage, without mention of obstruction', '(532.00) Acute duodenal ulcer with hemorrhage, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage (532.0)\(532.01) Acute duodenal ulcer with hemorrhage, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage (532.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage (532.0)\(532.01) Acute duodenal ulcer with hemorrhage, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.01''', NULL,
+ '(532.01) Acute duodenal ulcer with hemorrhage, with obstruction', '(532.01) Acute duodenal ulcer with hemorrhage, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage and perforation (532.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage and perforation (532.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.2''', NULL,
+ 'Acute duodenal ulcer with hemorrhage and perforation (532.2)', 'Acute duodenal ulcer with hemorrhage and perforation (532.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage and perforation (532.2)\(532.20) Acute duodenal ulcer with hemorrhage and perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage and perforation (532.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage and perforation (532.2)\(532.20) Acute duodenal ulcer with hemorrhage and perforation, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.20''', NULL,
+ '(532.20) Acute duodenal ulcer with hemorrhage and perforation, without mention of obstruction', '(532.20) Acute duodenal ulcer with hemorrhage and perforation, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage and perforation (532.2)\(532.21) Acute duodenal ulcer with hemorrhage and perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage and perforation (532.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with hemorrhage and perforation (532.2)\(532.21) Acute duodenal ulcer with hemorrhage and perforation, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.21''', NULL,
+ '(532.21) Acute duodenal ulcer with hemorrhage and perforation, with obstruction', '(532.21) Acute duodenal ulcer with hemorrhage and perforation, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with perforation (532.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with perforation (532.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.1''', NULL,
+ 'Acute duodenal ulcer with perforation (532.1)', 'Acute duodenal ulcer with perforation (532.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with perforation (532.1)\(532.10) Acute duodenal ulcer with perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with perforation (532.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with perforation (532.1)\(532.10) Acute duodenal ulcer with perforation, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.10''', NULL,
+ '(532.10) Acute duodenal ulcer with perforation, without mention of obstruction', '(532.10) Acute duodenal ulcer with perforation, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with perforation (532.1)\(532.11) Acute duodenal ulcer with perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with perforation (532.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer with perforation (532.1)\(532.11) Acute duodenal ulcer with perforation, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.11''', NULL,
+ '(532.11) Acute duodenal ulcer with perforation, with obstruction', '(532.11) Acute duodenal ulcer with perforation, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer without mention of hemorrhage or perforation (532.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer without mention of hemorrhage or perforation (532.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.3''', NULL,
+ 'Acute duodenal ulcer without mention of hemorrhage or perforation (532.3)', 'Acute duodenal ulcer without mention of hemorrhage or perforation (532.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer without mention of hemorrhage or perforation (532.3)\(532.30) Acute duodenal ulcer without mention of hemorrhage or perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer without mention of hemorrhage or perforation (532.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer without mention of hemorrhage or perforation (532.3)\(532.30) Acute duodenal ulcer without mention of hemorrhage or perforation, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.30''', NULL,
+ '(532.30) Acute duodenal ulcer without mention of hemorrhage or perforation, without mention of obstruction', '(532.30) Acute duodenal ulcer without mention of hemorrhage or perforation, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer without mention of hemorrhage or perforation (532.3)\(532.31) Acute duodenal ulcer without mention of hemorrhage or perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer without mention of hemorrhage or perforation (532.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Acute duodenal ulcer without mention of hemorrhage or perforation (532.3)\(532.31) Acute duodenal ulcer without mention of hemorrhage or perforation, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.31''', NULL,
+ '(532.31) Acute duodenal ulcer without mention of hemorrhage or perforation, with obstruction', '(532.31) Acute duodenal ulcer without mention of hemorrhage or perforation, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic duodenal ulcer without mention of hemorrhage or perforation (532.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic duodenal ulcer without mention of hemorrhage or perforation (532.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.7''', NULL,
+ 'Chronic duodenal ulcer without mention of hemorrhage or perforation (532.7)', 'Chronic duodenal ulcer without mention of hemorrhage or perforation (532.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic duodenal ulcer without mention of hemorrhage or perforation (532.7)\(532.70) Chronic duodenal ulcer without mention of hemorrhage or perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic duodenal ulcer without mention of hemorrhage or perforation (532.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic duodenal ulcer without mention of hemorrhage or perforation (532.7)\(532.70) Chronic duodenal ulcer without mention of hemorrhage or perforation, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.70''', NULL,
+ '(532.70) Chronic duodenal ulcer without mention of hemorrhage or perforation, without mention of obstruction', '(532.70) Chronic duodenal ulcer without mention of hemorrhage or perforation, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic duodenal ulcer without mention of hemorrhage or perforation (532.7)\(532.71) Chronic duodenal ulcer without mention of hemorrhage or perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic duodenal ulcer without mention of hemorrhage or perforation (532.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic duodenal ulcer without mention of hemorrhage or perforation (532.7)\(532.71) Chronic duodenal ulcer without mention of hemorrhage or perforation, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.71''', NULL,
+ '(532.71) Chronic duodenal ulcer without mention of hemorrhage or perforation, with obstruction', '(532.71) Chronic duodenal ulcer without mention of hemorrhage or perforation, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage (532.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage (532.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.4''', NULL,
+ 'Chronic or unspecified duodenal ulcer with hemorrhage (532.4)', 'Chronic or unspecified duodenal ulcer with hemorrhage (532.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage (532.4)\(532.40) Chronic or unspecified duodenal ulcer with hemorrhage, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage (532.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage (532.4)\(532.40) Chronic or unspecified duodenal ulcer with hemorrhage, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.40''', NULL,
+ '(532.40) Chronic or unspecified duodenal ulcer with hemorrhage, without mention of obstruction', '(532.40) Chronic or unspecified duodenal ulcer with hemorrhage, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage (532.4)\(532.41) Chronic or unspecified duodenal ulcer with hemorrhage, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage (532.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage (532.4)\(532.41) Chronic or unspecified duodenal ulcer with hemorrhage, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.41''', NULL,
+ '(532.41) Chronic or unspecified duodenal ulcer with hemorrhage, with obstruction', '(532.41) Chronic or unspecified duodenal ulcer with hemorrhage, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage and perforation (532.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage and perforation (532.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.6''', NULL,
+ 'Chronic or unspecified duodenal ulcer with hemorrhage and perforation (532.6)', 'Chronic or unspecified duodenal ulcer with hemorrhage and perforation (532.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage and perforation (532.6)\(532.60) Chronic or unspecified duodenal ulcer with hemorrhage and perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage and perforation (532.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage and perforation (532.6)\(532.60) Chronic or unspecified duodenal ulcer with hemorrhage and perforation, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.60''', NULL,
+ '(532.60) Chronic or unspecified duodenal ulcer with hemorrhage and perforation, without mention of obstruction', '(532.60) Chronic or unspecified duodenal ulcer with hemorrhage and perforation, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage and perforation (532.6)\(532.61) Chronic or unspecified duodenal ulcer with hemorrhage and perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage and perforation (532.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with hemorrhage and perforation (532.6)\(532.61) Chronic or unspecified duodenal ulcer with hemorrhage and perforation, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.61''', NULL,
+ '(532.61) Chronic or unspecified duodenal ulcer with hemorrhage and perforation, with obstruction', '(532.61) Chronic or unspecified duodenal ulcer with hemorrhage and perforation, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with perforation (532.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with perforation (532.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.5''', NULL,
+ 'Chronic or unspecified duodenal ulcer with perforation (532.5)', 'Chronic or unspecified duodenal ulcer with perforation (532.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with perforation (532.5)\(532.50) Chronic or unspecified duodenal ulcer with perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with perforation (532.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with perforation (532.5)\(532.50) Chronic or unspecified duodenal ulcer with perforation, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.50''', NULL,
+ '(532.50) Chronic or unspecified duodenal ulcer with perforation, without mention of obstruction', '(532.50) Chronic or unspecified duodenal ulcer with perforation, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with perforation (532.5)\(532.51) Chronic or unspecified duodenal ulcer with perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with perforation (532.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Chronic or unspecified duodenal ulcer with perforation (532.5)\(532.51) Chronic or unspecified duodenal ulcer with perforation, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.51''', NULL,
+ '(532.51) Chronic or unspecified duodenal ulcer with perforation, with obstruction', '(532.51) Chronic or unspecified duodenal ulcer with perforation, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (532.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (532.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.9''', NULL,
+ 'Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (532.9)', 'Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (532.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (532.9)\(532.90) Duodenal ulcer, unspecified as acute or chronic, without hemorrhage or perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (532.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (532.9)\(532.90) Duodenal ulcer, unspecified as acute or chronic, without hemorrhage or perforation, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.90''', NULL,
+ '(532.90) Duodenal ulcer, unspecified as acute or chronic, without hemorrhage or perforation, without mention of obstruction', '(532.90) Duodenal ulcer, unspecified as acute or chronic, without hemorrhage or perforation, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (532.9)\(532.91) Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (532.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Duodenal ulcer (532)\Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (532.9)\(532.91) Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''532.91''', NULL,
+ '(532.91) Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction', '(532.91) Duodenal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531''', NULL,
+ 'Gastric ulcer (531)', 'Gastric ulcer (531)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage (531.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage (531.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.0''', NULL,
+ 'Acute gastric ulcer with hemorrhage (531.0)', 'Acute gastric ulcer with hemorrhage (531.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage (531.0)\(531.00) Acute gastric ulcer with hemorrhage, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage (531.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage (531.0)\(531.00) Acute gastric ulcer with hemorrhage, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.00''', NULL,
+ '(531.00) Acute gastric ulcer with hemorrhage, without mention of obstruction', '(531.00) Acute gastric ulcer with hemorrhage, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage (531.0)\(531.01) Acute gastric ulcer with hemorrhage, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage (531.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage (531.0)\(531.01) Acute gastric ulcer with hemorrhage, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.01''', NULL,
+ '(531.01) Acute gastric ulcer with hemorrhage, with obstruction', '(531.01) Acute gastric ulcer with hemorrhage, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage and perforation (531.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage and perforation (531.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.2''', NULL,
+ 'Acute gastric ulcer with hemorrhage and perforation (531.2)', 'Acute gastric ulcer with hemorrhage and perforation (531.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage and perforation (531.2)\(531.20) Acute gastric ulcer with hemorrhage and perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage and perforation (531.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage and perforation (531.2)\(531.20) Acute gastric ulcer with hemorrhage and perforation, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.20''', NULL,
+ '(531.20) Acute gastric ulcer with hemorrhage and perforation, without mention of obstruction', '(531.20) Acute gastric ulcer with hemorrhage and perforation, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage and perforation (531.2)\(531.21) Acute gastric ulcer with hemorrhage and perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage and perforation (531.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with hemorrhage and perforation (531.2)\(531.21) Acute gastric ulcer with hemorrhage and perforation, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.21''', NULL,
+ '(531.21) Acute gastric ulcer with hemorrhage and perforation, with obstruction', '(531.21) Acute gastric ulcer with hemorrhage and perforation, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with perforation (531.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with perforation (531.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.1''', NULL,
+ 'Acute gastric ulcer with perforation (531.1)', 'Acute gastric ulcer with perforation (531.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with perforation (531.1)\(531.10) Acute gastric ulcer with perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with perforation (531.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with perforation (531.1)\(531.10) Acute gastric ulcer with perforation, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.10''', NULL,
+ '(531.10) Acute gastric ulcer with perforation, without mention of obstruction', '(531.10) Acute gastric ulcer with perforation, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with perforation (531.1)\(531.11) Acute gastric ulcer with perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with perforation (531.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer with perforation (531.1)\(531.11) Acute gastric ulcer with perforation, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.11''', NULL,
+ '(531.11) Acute gastric ulcer with perforation, with obstruction', '(531.11) Acute gastric ulcer with perforation, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer without mention of hemorrhage or perforation (531.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer without mention of hemorrhage or perforation (531.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.3''', NULL,
+ 'Acute gastric ulcer without mention of hemorrhage or perforation (531.3)', 'Acute gastric ulcer without mention of hemorrhage or perforation (531.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer without mention of hemorrhage or perforation (531.3)\(531.30) Acute gastric ulcer without mention of hemorrhage or perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer without mention of hemorrhage or perforation (531.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer without mention of hemorrhage or perforation (531.3)\(531.30) Acute gastric ulcer without mention of hemorrhage or perforation, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.30''', NULL,
+ '(531.30) Acute gastric ulcer without mention of hemorrhage or perforation, without mention of obstruction', '(531.30) Acute gastric ulcer without mention of hemorrhage or perforation, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer without mention of hemorrhage or perforation (531.3)\(531.31) Acute gastric ulcer without mention of hemorrhage or perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer without mention of hemorrhage or perforation (531.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Acute gastric ulcer without mention of hemorrhage or perforation (531.3)\(531.31) Acute gastric ulcer without mention of hemorrhage or perforation, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.31''', NULL,
+ '(531.31) Acute gastric ulcer without mention of hemorrhage or perforation, with obstruction', '(531.31) Acute gastric ulcer without mention of hemorrhage or perforation, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic gastric ulcer without mention of hemorrhage or perforation (531.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic gastric ulcer without mention of hemorrhage or perforation (531.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.7''', NULL,
+ 'Chronic gastric ulcer without mention of hemorrhage or perforation (531.7)', 'Chronic gastric ulcer without mention of hemorrhage or perforation (531.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic gastric ulcer without mention of hemorrhage or perforation (531.7)\(531.70) Chronic gastric ulcer without mention of hemorrhage or perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic gastric ulcer without mention of hemorrhage or perforation (531.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic gastric ulcer without mention of hemorrhage or perforation (531.7)\(531.70) Chronic gastric ulcer without mention of hemorrhage or perforation, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.70''', NULL,
+ '(531.70) Chronic gastric ulcer without mention of hemorrhage or perforation, without mention of obstruction', '(531.70) Chronic gastric ulcer without mention of hemorrhage or perforation, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic gastric ulcer without mention of hemorrhage or perforation (531.7)\(531.71) Chronic gastric ulcer without mention of hemorrhage or perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic gastric ulcer without mention of hemorrhage or perforation (531.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic gastric ulcer without mention of hemorrhage or perforation (531.7)\(531.71) Chronic gastric ulcer without mention of hemorrhage or perforation, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.71''', NULL,
+ '(531.71) Chronic gastric ulcer without mention of hemorrhage or perforation, with obstruction', '(531.71) Chronic gastric ulcer without mention of hemorrhage or perforation, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage (531.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage (531.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.4''', NULL,
+ 'Chronic or unspecified gastric ulcer with hemorrhage (531.4)', 'Chronic or unspecified gastric ulcer with hemorrhage (531.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage (531.4)\(531.40) Chronic or unspecified gastric ulcer with hemorrhage, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage (531.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage (531.4)\(531.40) Chronic or unspecified gastric ulcer with hemorrhage, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.40''', NULL,
+ '(531.40) Chronic or unspecified gastric ulcer with hemorrhage, without mention of obstruction', '(531.40) Chronic or unspecified gastric ulcer with hemorrhage, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage (531.4)\(531.41) Chronic or unspecified gastric ulcer with hemorrhage, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage (531.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage (531.4)\(531.41) Chronic or unspecified gastric ulcer with hemorrhage, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.41''', NULL,
+ '(531.41) Chronic or unspecified gastric ulcer with hemorrhage, with obstruction', '(531.41) Chronic or unspecified gastric ulcer with hemorrhage, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage and perforation (531.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage and perforation (531.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.6''', NULL,
+ 'Chronic or unspecified gastric ulcer with hemorrhage and perforation (531.6)', 'Chronic or unspecified gastric ulcer with hemorrhage and perforation (531.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage and perforation (531.6)\(531.60) Chronic or unspecified gastric ulcer with hemorrhage and perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage and perforation (531.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage and perforation (531.6)\(531.60) Chronic or unspecified gastric ulcer with hemorrhage and perforation, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.60''', NULL,
+ '(531.60) Chronic or unspecified gastric ulcer with hemorrhage and perforation, without mention of obstruction', '(531.60) Chronic or unspecified gastric ulcer with hemorrhage and perforation, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage and perforation (531.6)\(531.61) Chronic or unspecified gastric ulcer with hemorrhage and perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage and perforation (531.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with hemorrhage and perforation (531.6)\(531.61) Chronic or unspecified gastric ulcer with hemorrhage and perforation, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.61''', NULL,
+ '(531.61) Chronic or unspecified gastric ulcer with hemorrhage and perforation, with obstruction', '(531.61) Chronic or unspecified gastric ulcer with hemorrhage and perforation, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with perforation (531.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with perforation (531.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.5''', NULL,
+ 'Chronic or unspecified gastric ulcer with perforation (531.5)', 'Chronic or unspecified gastric ulcer with perforation (531.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with perforation (531.5)\(531.50) Chronic or unspecified gastric ulcer with perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with perforation (531.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with perforation (531.5)\(531.50) Chronic or unspecified gastric ulcer with perforation, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.50''', NULL,
+ '(531.50) Chronic or unspecified gastric ulcer with perforation, without mention of obstruction', '(531.50) Chronic or unspecified gastric ulcer with perforation, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with perforation (531.5)\(531.51) Chronic or unspecified gastric ulcer with perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with perforation (531.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Chronic or unspecified gastric ulcer with perforation (531.5)\(531.51) Chronic or unspecified gastric ulcer with perforation, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.51''', NULL,
+ '(531.51) Chronic or unspecified gastric ulcer with perforation, with obstruction', '(531.51) Chronic or unspecified gastric ulcer with perforation, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (531.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (531.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.9''', NULL,
+ 'Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (531.9)', 'Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (531.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (531.9)\(531.90) Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (531.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (531.9)\(531.90) Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.90''', NULL,
+ '(531.90) Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction', '(531.90) Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (531.9)\(531.91) Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (531.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastric ulcer (531)\Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (531.9)\(531.91) Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''531.91''', NULL,
+ '(531.91) Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction', '(531.91) Gastric ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535''', NULL,
+ 'Gastritis and duodenitis (535)', 'Gastritis and duodenitis (535)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Acute gastritis (535.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Acute gastritis (535.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.0''', NULL,
+ 'Acute gastritis (535.0)', 'Acute gastritis (535.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Acute gastritis (535.0)\(535.00) Acute gastritis, without mention of hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Acute gastritis (535.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Acute gastritis (535.0)\(535.00) Acute gastritis, without mention of hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.00''', NULL,
+ '(535.00) Acute gastritis, without mention of hemorrhage', '(535.00) Acute gastritis, without mention of hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Acute gastritis (535.0)\(535.01) Acute gastritis, with hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Acute gastritis (535.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Acute gastritis (535.0)\(535.01) Acute gastritis, with hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.01''', NULL,
+ '(535.01) Acute gastritis, with hemorrhage', '(535.01) Acute gastritis, with hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Alcoholic gastritis (535.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Alcoholic gastritis (535.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.3''', NULL,
+ 'Alcoholic gastritis (535.3)', 'Alcoholic gastritis (535.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Alcoholic gastritis (535.3)\(535.30) Alcoholic gastritis, without mention of hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Alcoholic gastritis (535.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Alcoholic gastritis (535.3)\(535.30) Alcoholic gastritis, without mention of hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.30''', NULL,
+ '(535.30) Alcoholic gastritis, without mention of hemorrhage', '(535.30) Alcoholic gastritis, without mention of hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Alcoholic gastritis (535.3)\(535.31) Alcoholic gastritis, with hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Alcoholic gastritis (535.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Alcoholic gastritis (535.3)\(535.31) Alcoholic gastritis, with hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.31''', NULL,
+ '(535.31) Alcoholic gastritis, with hemorrhage', '(535.31) Alcoholic gastritis, with hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Atrophic gastritis (535.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Atrophic gastritis (535.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.1''', NULL,
+ 'Atrophic gastritis (535.1)', 'Atrophic gastritis (535.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Atrophic gastritis (535.1)\(535.10) Atrophic gastritis, without mention of hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Atrophic gastritis (535.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Atrophic gastritis (535.1)\(535.10) Atrophic gastritis, without mention of hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.10''', NULL,
+ '(535.10) Atrophic gastritis, without mention of hemorrhage', '(535.10) Atrophic gastritis, without mention of hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Atrophic gastritis (535.1)\(535.11) Atrophic gastritis, with hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Atrophic gastritis (535.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Atrophic gastritis (535.1)\(535.11) Atrophic gastritis, with hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.11''', NULL,
+ '(535.11) Atrophic gastritis, with hemorrhage', '(535.11) Atrophic gastritis, with hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Duodenitis (535.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Duodenitis (535.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.6''', NULL,
+ 'Duodenitis (535.6)', 'Duodenitis (535.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Duodenitis (535.6)\(535.60) Duodenitis, without mention of hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Duodenitis (535.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Duodenitis (535.6)\(535.60) Duodenitis, without mention of hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.60''', NULL,
+ '(535.60) Duodenitis, without mention of hemorrhage', '(535.60) Duodenitis, without mention of hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Duodenitis (535.6)\(535.61) Duodenitis, with hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Duodenitis (535.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Duodenitis (535.6)\(535.61) Duodenitis, with hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.61''', NULL,
+ '(535.61) Duodenitis, with hemorrhage', '(535.61) Duodenitis, with hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Eosinophilic gastritis (535.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Eosinophilic gastritis (535.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.7''', NULL,
+ 'Eosinophilic gastritis (535.7)', 'Eosinophilic gastritis (535.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Eosinophilic gastritis (535.7)\(535.70) Eosinophilic gastritis, without mention of hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Eosinophilic gastritis (535.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Eosinophilic gastritis (535.7)\(535.70) Eosinophilic gastritis, without mention of hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.70''', NULL,
+ '(535.70) Eosinophilic gastritis, without mention of hemorrhage', '(535.70) Eosinophilic gastritis, without mention of hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Gastric mucosal hypertrophy (535.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Gastric mucosal hypertrophy (535.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.2''', NULL,
+ 'Gastric mucosal hypertrophy (535.2)', 'Gastric mucosal hypertrophy (535.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Gastric mucosal hypertrophy (535.2)\(535.20) Gastric mucosal hypertrophy, without mention of hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Gastric mucosal hypertrophy (535.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Gastric mucosal hypertrophy (535.2)\(535.20) Gastric mucosal hypertrophy, without mention of hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.20''', NULL,
+ '(535.20) Gastric mucosal hypertrophy, without mention of hemorrhage', '(535.20) Gastric mucosal hypertrophy, without mention of hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Gastric mucosal hypertrophy (535.2)\(535.21) Gastric mucosal hypertrophy, with hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Gastric mucosal hypertrophy (535.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Gastric mucosal hypertrophy (535.2)\(535.21) Gastric mucosal hypertrophy, with hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.21''', NULL,
+ '(535.21) Gastric mucosal hypertrophy, with hemorrhage', '(535.21) Gastric mucosal hypertrophy, with hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Other specified gastritis (535.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Other specified gastritis (535.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.4''', NULL,
+ 'Other specified gastritis (535.4)', 'Other specified gastritis (535.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Other specified gastritis (535.4)\(535.40) Other specified gastritis, without mention of hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Other specified gastritis (535.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Other specified gastritis (535.4)\(535.40) Other specified gastritis, without mention of hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.40''', NULL,
+ '(535.40) Other specified gastritis, without mention of hemorrhage', '(535.40) Other specified gastritis, without mention of hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Other specified gastritis (535.4)\(535.41) Other specified gastritis, with hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Other specified gastritis (535.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Other specified gastritis (535.4)\(535.41) Other specified gastritis, with hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.41''', NULL,
+ '(535.41) Other specified gastritis, with hemorrhage', '(535.41) Other specified gastritis, with hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Unspecified gastritis and gastroduodenitis (535.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Unspecified gastritis and gastroduodenitis (535.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.5''', NULL,
+ 'Unspecified gastritis and gastroduodenitis (535.5)', 'Unspecified gastritis and gastroduodenitis (535.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Unspecified gastritis and gastroduodenitis (535.5)\(535.50) Unspecified gastritis and gastroduodenitis, without mention of hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Unspecified gastritis and gastroduodenitis (535.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Unspecified gastritis and gastroduodenitis (535.5)\(535.50) Unspecified gastritis and gastroduodenitis, without mention of hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.50''', NULL,
+ '(535.50) Unspecified gastritis and gastroduodenitis, without mention of hemorrhage', '(535.50) Unspecified gastritis and gastroduodenitis, without mention of hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Unspecified gastritis and gastroduodenitis (535.5)\(535.51) Unspecified gastritis and gastroduodenitis, with hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Unspecified gastritis and gastroduodenitis (535.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastritis and duodenitis (535)\Unspecified gastritis and gastroduodenitis (535.5)\(535.51) Unspecified gastritis and gastroduodenitis, with hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''535.51''', NULL,
+ '(535.51) Unspecified gastritis and gastroduodenitis, with hemorrhage', '(535.51) Unspecified gastritis and gastroduodenitis, with hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534''', NULL,
+ 'Gastrojejunal ulcer (534)', 'Gastrojejunal ulcer (534)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage (534.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage (534.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.0''', NULL,
+ 'Acute gastrojejunal ulcer with hemorrhage (534.0)', 'Acute gastrojejunal ulcer with hemorrhage (534.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage (534.0)\(534.00) Acute gastrojejunal ulcer with hemorrhage, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage (534.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage (534.0)\(534.00) Acute gastrojejunal ulcer with hemorrhage, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.00''', NULL,
+ '(534.00) Acute gastrojejunal ulcer with hemorrhage, without mention of obstruction', '(534.00) Acute gastrojejunal ulcer with hemorrhage, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage (534.0)\(534.01) Acute gastrojejunal ulcer, with hemorrhage, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage (534.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage (534.0)\(534.01) Acute gastrojejunal ulcer, with hemorrhage, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.01''', NULL,
+ '(534.01) Acute gastrojejunal ulcer, with hemorrhage, with obstruction', '(534.01) Acute gastrojejunal ulcer, with hemorrhage, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage and perforation (534.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage and perforation (534.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.2''', NULL,
+ 'Acute gastrojejunal ulcer with hemorrhage and perforation (534.2)', 'Acute gastrojejunal ulcer with hemorrhage and perforation (534.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage and perforation (534.2)\(534.20) Acute gastrojejunal ulcer with hemorrhage and perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage and perforation (534.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage and perforation (534.2)\(534.20) Acute gastrojejunal ulcer with hemorrhage and perforation, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.20''', NULL,
+ '(534.20) Acute gastrojejunal ulcer with hemorrhage and perforation, without mention of obstruction', '(534.20) Acute gastrojejunal ulcer with hemorrhage and perforation, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage and perforation (534.2)\(534.21) Acute gastrojejunal ulcer with hemorrhage and perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage and perforation (534.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with hemorrhage and perforation (534.2)\(534.21) Acute gastrojejunal ulcer with hemorrhage and perforation, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.21''', NULL,
+ '(534.21) Acute gastrojejunal ulcer with hemorrhage and perforation, with obstruction', '(534.21) Acute gastrojejunal ulcer with hemorrhage and perforation, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with perforation (534.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with perforation (534.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.1''', NULL,
+ 'Acute gastrojejunal ulcer with perforation (534.1)', 'Acute gastrojejunal ulcer with perforation (534.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with perforation (534.1)\(534.10) Acute gastrojejunal ulcer with perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with perforation (534.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with perforation (534.1)\(534.10) Acute gastrojejunal ulcer with perforation, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.10''', NULL,
+ '(534.10) Acute gastrojejunal ulcer with perforation, without mention of obstruction', '(534.10) Acute gastrojejunal ulcer with perforation, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with perforation (534.1)\(534.11) Acute gastrojejunal ulcer with perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with perforation (534.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer with perforation (534.1)\(534.11) Acute gastrojejunal ulcer with perforation, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.11''', NULL,
+ '(534.11) Acute gastrojejunal ulcer with perforation, with obstruction', '(534.11) Acute gastrojejunal ulcer with perforation, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer without mention of hemorrhage or perforation (534.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer without mention of hemorrhage or perforation (534.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.3''', NULL,
+ 'Acute gastrojejunal ulcer without mention of hemorrhage or perforation (534.3)', 'Acute gastrojejunal ulcer without mention of hemorrhage or perforation (534.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer without mention of hemorrhage or perforation (534.3)\(534.30) Acute gastrojejunal ulcer without mention of hemorrhage or perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer without mention of hemorrhage or perforation (534.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer without mention of hemorrhage or perforation (534.3)\(534.30) Acute gastrojejunal ulcer without mention of hemorrhage or perforation, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.30''', NULL,
+ '(534.30) Acute gastrojejunal ulcer without mention of hemorrhage or perforation, without mention of obstruction', '(534.30) Acute gastrojejunal ulcer without mention of hemorrhage or perforation, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer without mention of hemorrhage or perforation (534.3)\(534.31) Acute gastrojejunal ulcer without mention of hemorrhage or perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer without mention of hemorrhage or perforation (534.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Acute gastrojejunal ulcer without mention of hemorrhage or perforation (534.3)\(534.31) Acute gastrojejunal ulcer without mention of hemorrhage or perforation, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.31''', NULL,
+ '(534.31) Acute gastrojejunal ulcer without mention of hemorrhage or perforation, with obstruction', '(534.31) Acute gastrojejunal ulcer without mention of hemorrhage or perforation, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic gastrojejunal ulcer without mention of hemorrhage or perforation (534.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic gastrojejunal ulcer without mention of hemorrhage or perforation (534.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.7''', NULL,
+ 'Chronic gastrojejunal ulcer without mention of hemorrhage or perforation (534.7)', 'Chronic gastrojejunal ulcer without mention of hemorrhage or perforation (534.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic gastrojejunal ulcer without mention of hemorrhage or perforation (534.7)\(534.70) Chronic gastrojejunal ulcer without mention of hemorrhage or perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic gastrojejunal ulcer without mention of hemorrhage or perforation (534.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic gastrojejunal ulcer without mention of hemorrhage or perforation (534.7)\(534.70) Chronic gastrojejunal ulcer without mention of hemorrhage or perforation, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.70''', NULL,
+ '(534.70) Chronic gastrojejunal ulcer without mention of hemorrhage or perforation, without mention of obstruction', '(534.70) Chronic gastrojejunal ulcer without mention of hemorrhage or perforation, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic gastrojejunal ulcer without mention of hemorrhage or perforation (534.7)\(534.71) Chronic gastrojejunal ulcer without mention of hemorrhage or perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic gastrojejunal ulcer without mention of hemorrhage or perforation (534.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic gastrojejunal ulcer without mention of hemorrhage or perforation (534.7)\(534.71) Chronic gastrojejunal ulcer without mention of hemorrhage or perforation, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.71''', NULL,
+ '(534.71) Chronic gastrojejunal ulcer without mention of hemorrhage or perforation, with obstruction', '(534.71) Chronic gastrojejunal ulcer without mention of hemorrhage or perforation, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage (534.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage (534.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.4''', NULL,
+ 'Chronic or unspecified gastrojejunal ulcer with hemorrhage (534.4)', 'Chronic or unspecified gastrojejunal ulcer with hemorrhage (534.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage (534.4)\(534.40) Chronic or unspecified gastrojejunal ulcer with hemorrhage, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage (534.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage (534.4)\(534.40) Chronic or unspecified gastrojejunal ulcer with hemorrhage, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.40''', NULL,
+ '(534.40) Chronic or unspecified gastrojejunal ulcer with hemorrhage, without mention of obstruction', '(534.40) Chronic or unspecified gastrojejunal ulcer with hemorrhage, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage (534.4)\(534.41) Chronic or unspecified gastrojejunal ulcer, with hemorrhage, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage (534.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage (534.4)\(534.41) Chronic or unspecified gastrojejunal ulcer, with hemorrhage, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.41''', NULL,
+ '(534.41) Chronic or unspecified gastrojejunal ulcer, with hemorrhage, with obstruction', '(534.41) Chronic or unspecified gastrojejunal ulcer, with hemorrhage, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation (534.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation (534.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.6''', NULL,
+ 'Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation (534.6)', 'Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation (534.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation (534.6)\(534.60) Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation (534.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation (534.6)\(534.60) Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.60''', NULL,
+ '(534.60) Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation, without mention of obstruction', '(534.60) Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation (534.6)\(534.61) Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation (534.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation (534.6)\(534.61) Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.61''', NULL,
+ '(534.61) Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation, with obstruction', '(534.61) Chronic or unspecified gastrojejunal ulcer with hemorrhage and perforation, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with perforation (534.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with perforation (534.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.5''', NULL,
+ 'Chronic or unspecified gastrojejunal ulcer with perforation (534.5)', 'Chronic or unspecified gastrojejunal ulcer with perforation (534.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with perforation (534.5)\(534.50) Chronic or unspecified gastrojejunal ulcer with perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with perforation (534.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with perforation (534.5)\(534.50) Chronic or unspecified gastrojejunal ulcer with perforation, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.50''', NULL,
+ '(534.50) Chronic or unspecified gastrojejunal ulcer with perforation, without mention of obstruction', '(534.50) Chronic or unspecified gastrojejunal ulcer with perforation, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with perforation (534.5)\(534.51) Chronic or unspecified gastrojejunal ulcer with perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with perforation (534.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Chronic or unspecified gastrojejunal ulcer with perforation (534.5)\(534.51) Chronic or unspecified gastrojejunal ulcer with perforation, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.51''', NULL,
+ '(534.51) Chronic or unspecified gastrojejunal ulcer with perforation, with obstruction', '(534.51) Chronic or unspecified gastrojejunal ulcer with perforation, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (534.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (534.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.9''', NULL,
+ 'Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (534.9)', 'Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (534.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (534.9)\(534.90) Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (534.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (534.9)\(534.90) Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.90''', NULL,
+ '(534.90) Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction', '(534.90) Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (534.9)\(534.91) Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (534.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Gastrojejunal ulcer (534)\Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation (534.9)\(534.91) Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''534.91''', NULL,
+ '(534.91) Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction', '(534.91) Gastrojejunal ulcer, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''537''', NULL,
+ 'Other disorders of stomach and duodenum (537)', 'Other disorders of stomach and duodenum (537)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.0) Acquired hypertrophic pyloric stenosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.0) Acquired hypertrophic pyloric stenosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''537.0''', NULL,
+ '(537.0) Acquired hypertrophic pyloric stenosis', '(537.0) Acquired hypertrophic pyloric stenosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.1) Gastric diverticulum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.1) Gastric diverticulum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''537.1''', NULL,
+ '(537.1) Gastric diverticulum', '(537.1) Gastric diverticulum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.2) Chronic duodenal ileus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.2) Chronic duodenal ileus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''537.2''', NULL,
+ '(537.2) Chronic duodenal ileus', '(537.2) Chronic duodenal ileus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.3) Other obstruction of duodenum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.3) Other obstruction of duodenum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''537.3''', NULL,
+ '(537.3) Other obstruction of duodenum', '(537.3) Other obstruction of duodenum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.4) Fistula of stomach or duodenum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.4) Fistula of stomach or duodenum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''537.4''', NULL,
+ '(537.4) Fistula of stomach or duodenum', '(537.4) Fistula of stomach or duodenum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.5) Gastroptosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.5) Gastroptosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''537.5''', NULL,
+ '(537.5) Gastroptosis', '(537.5) Gastroptosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.6) Hourglass stricture or stenosis of stomach\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.6) Hourglass stricture or stenosis of stomach\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''537.6''', NULL,
+ '(537.6) Hourglass stricture or stenosis of stomach', '(537.6) Hourglass stricture or stenosis of stomach', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.9) Unspecified disorder of stomach and duodenum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\(537.9) Unspecified disorder of stomach and duodenum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''537.9''', NULL,
+ '(537.9) Unspecified disorder of stomach and duodenum', '(537.9) Unspecified disorder of stomach and duodenum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''537.8''', NULL,
+ 'Other specified disorders of stomach and duodenum (537.8)', 'Other specified disorders of stomach and duodenum (537.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\(537.81) Pylorospasm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\(537.81) Pylorospasm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''537.81''', NULL,
+ '(537.81) Pylorospasm', '(537.81) Pylorospasm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\(537.82) Angiodysplasia of stomach and duodenum without mention of hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\(537.82) Angiodysplasia of stomach and duodenum without mention of hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''537.82''', NULL,
+ '(537.82) Angiodysplasia of stomach and duodenum without mention of hemorrhage', '(537.82) Angiodysplasia of stomach and duodenum without mention of hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\(537.83) Angiodysplasia of stomach and duodenum with hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\(537.83) Angiodysplasia of stomach and duodenum with hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''537.83''', NULL,
+ '(537.83) Angiodysplasia of stomach and duodenum with hemorrhage', '(537.83) Angiodysplasia of stomach and duodenum with hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\(537.84) Dieulafoy lesion (hemorrhagic) of stomach and duodenum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\(537.84) Dieulafoy lesion (hemorrhagic) of stomach and duodenum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''537.84) Dieulafoy lesion (hemorrhagic''', NULL,
+ '(537.84) Dieulafoy lesion (hemorrhagic) of stomach and duodenum', '(537.84) Dieulafoy lesion (hemorrhagic) of stomach and duodenum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\(537.89) Other specified disorders of stomach and duodenum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Other disorders of stomach and duodenum (537)\Other specified disorders of stomach and duodenum (537.8)\(537.89) Other specified disorders of stomach and duodenum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''537.89''', NULL,
+ '(537.89) Other specified disorders of stomach and duodenum', '(537.89) Other specified disorders of stomach and duodenum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533''', NULL,
+ 'Peptic ulcer, site unspecified (533)', 'Peptic ulcer, site unspecified (533)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage (533.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage (533.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.0''', NULL,
+ 'Acute peptic ulcer of unspecified site with hemorrhage (533.0)', 'Acute peptic ulcer of unspecified site with hemorrhage (533.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage (533.0)\(533.00) Acute peptic ulcer of unspecified site with hemorrhage, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage (533.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage (533.0)\(533.00) Acute peptic ulcer of unspecified site with hemorrhage, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.00''', NULL,
+ '(533.00) Acute peptic ulcer of unspecified site with hemorrhage, without mention of obstruction', '(533.00) Acute peptic ulcer of unspecified site with hemorrhage, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage (533.0)\(533.01) Acute peptic ulcer of unspecified site with hemorrhage, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage (533.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage (533.0)\(533.01) Acute peptic ulcer of unspecified site with hemorrhage, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.01''', NULL,
+ '(533.01) Acute peptic ulcer of unspecified site with hemorrhage, with obstruction', '(533.01) Acute peptic ulcer of unspecified site with hemorrhage, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage and perforation (533.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage and perforation (533.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.2''', NULL,
+ 'Acute peptic ulcer of unspecified site with hemorrhage and perforation (533.2)', 'Acute peptic ulcer of unspecified site with hemorrhage and perforation (533.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage and perforation (533.2)\(533.20) Acute peptic ulcer of unspecified site with hemorrhage and perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage and perforation (533.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage and perforation (533.2)\(533.20) Acute peptic ulcer of unspecified site with hemorrhage and perforation, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.20''', NULL,
+ '(533.20) Acute peptic ulcer of unspecified site with hemorrhage and perforation, without mention of obstruction', '(533.20) Acute peptic ulcer of unspecified site with hemorrhage and perforation, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage and perforation (533.2)\(533.21) Acute peptic ulcer of unspecified site with hemorrhage and perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage and perforation (533.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with hemorrhage and perforation (533.2)\(533.21) Acute peptic ulcer of unspecified site with hemorrhage and perforation, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.21''', NULL,
+ '(533.21) Acute peptic ulcer of unspecified site with hemorrhage and perforation, with obstruction', '(533.21) Acute peptic ulcer of unspecified site with hemorrhage and perforation, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with perforation (533.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with perforation (533.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.1''', NULL,
+ 'Acute peptic ulcer of unspecified site with perforation (533.1)', 'Acute peptic ulcer of unspecified site with perforation (533.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with perforation (533.1)\(533.10) Acute peptic ulcer of unspecified site with perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with perforation (533.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with perforation (533.1)\(533.10) Acute peptic ulcer of unspecified site with perforation, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.10''', NULL,
+ '(533.10) Acute peptic ulcer of unspecified site with perforation, without mention of obstruction', '(533.10) Acute peptic ulcer of unspecified site with perforation, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with perforation (533.1)\(533.11) Acute peptic ulcer of unspecified site with perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with perforation (533.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site with perforation (533.1)\(533.11) Acute peptic ulcer of unspecified site with perforation, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.11''', NULL,
+ '(533.11) Acute peptic ulcer of unspecified site with perforation, with obstruction', '(533.11) Acute peptic ulcer of unspecified site with perforation, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation (533.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation (533.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.3''', NULL,
+ 'Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation (533.3)', 'Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation (533.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation (533.3)\(533.30) Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation (533.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation (533.3)\(533.30) Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.30''', NULL,
+ '(533.30) Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation, without mention of obstruction', '(533.30) Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation (533.3)\(533.31) Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation (533.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation (533.3)\(533.31) Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.31''', NULL,
+ '(533.31) Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation, with obstruction', '(533.31) Acute peptic ulcer of unspecified site without mention of hemorrhage and perforation, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage (533.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage (533.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.4''', NULL,
+ 'Chronic or unspecified peptic ulcer of unspecified site with hemorrhage (533.4)', 'Chronic or unspecified peptic ulcer of unspecified site with hemorrhage (533.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage (533.4)\(533.40) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage (533.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage (533.4)\(533.40) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.40''', NULL,
+ '(533.40) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage, without mention of obstruction', '(533.40) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage (533.4)\(533.41) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage (533.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage (533.4)\(533.41) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.41''', NULL,
+ '(533.41) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage, with obstruction', '(533.41) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation (533.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation (533.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.6''', NULL,
+ 'Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation (533.6)', 'Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation (533.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation (533.6)\(533.60) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation (533.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation (533.6)\(533.60) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.60''', NULL,
+ '(533.60) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation, without mention of obstruction', '(533.60) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation (533.6)\(533.61) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation (533.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation (533.6)\(533.61) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.61''', NULL,
+ '(533.61) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation, with obstruction', '(533.61) Chronic or unspecified peptic ulcer of unspecified site with hemorrhage and perforation, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with perforation (533.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with perforation (533.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.5''', NULL,
+ 'Chronic or unspecified peptic ulcer of unspecified site with perforation (533.5)', 'Chronic or unspecified peptic ulcer of unspecified site with perforation (533.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with perforation (533.5)\(533.50) Chronic or unspecified peptic ulcer of unspecified site with perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with perforation (533.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with perforation (533.5)\(533.50) Chronic or unspecified peptic ulcer of unspecified site with perforation, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.50''', NULL,
+ '(533.50) Chronic or unspecified peptic ulcer of unspecified site with perforation, without mention of obstruction', '(533.50) Chronic or unspecified peptic ulcer of unspecified site with perforation, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with perforation (533.5)\(533.51) Chronic or unspecified peptic ulcer of unspecified site with perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with perforation (533.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic or unspecified peptic ulcer of unspecified site with perforation (533.5)\(533.51) Chronic or unspecified peptic ulcer of unspecified site with perforation, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.51''', NULL,
+ '(533.51) Chronic or unspecified peptic ulcer of unspecified site with perforation, with obstruction', '(533.51) Chronic or unspecified peptic ulcer of unspecified site with perforation, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation (533.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation (533.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.7''', NULL,
+ 'Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation (533.7)', 'Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation (533.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation (533.7)\(533.70) Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation (533.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation (533.7)\(533.70) Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.70''', NULL,
+ '(533.70) Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation, without mention of obstruction', '(533.70) Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation (533.7)\(533.71) Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation (533.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation (533.7)\(533.71) Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.71''', NULL,
+ '(533.71) Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation, with obstruction', '(533.71) Chronic peptic ulcer of unspecified site without mention of hemorrhage or perforation, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation (533.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation (533.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.9''', NULL,
+ 'Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation (533.9)', 'Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation (533.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation (533.9)\(533.90) Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation (533.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation (533.9)\(533.90) Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.90''', NULL,
+ '(533.90) Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction', '(533.90) Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation (533.9)\(533.91) Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation (533.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of esophagus, stomach, and duodenum (530-539.99)\Peptic ulcer, site unspecified (533)\Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation (533.9)\(533.91) Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''533.91''', NULL,
+ '(533.91) Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction', '(533.91) Peptic ulcer of unspecified site, unspecified as acute or chronic, without mention of hemorrhage or perforation, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''520'' AND ''529.99''', NULL,
+ 'Diseases of oral cavity, salivary glands, and jaws (520-529.99)', 'Diseases of oral cavity, salivary glands, and jaws (520-529.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524''', NULL,
+ 'Dentofacial anomalies, including malocclusion (524)', 'Dentofacial anomalies, including malocclusion (524)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\(524.4) Malocclusion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\(524.4) Malocclusion, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.4''', NULL,
+ '(524.4) Malocclusion, unspecified', '(524.4) Malocclusion, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\(524.9) Unspecified dentofacial anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\(524.9) Unspecified dentofacial anomalies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.9''', NULL,
+ '(524.9) Unspecified dentofacial anomalies', '(524.9) Unspecified dentofacial anomalies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.2''', NULL,
+ 'Anomalies of dental arch relationship (524.2)', 'Anomalies of dental arch relationship (524.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.20) Unspecified anomaly of dental arch relationship\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.20) Unspecified anomaly of dental arch relationship\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.20''', NULL,
+ '(524.20) Unspecified anomaly of dental arch relationship', '(524.20) Unspecified anomaly of dental arch relationship', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.21) Malocclusion, Angle''s class I\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.21) Malocclusion, Angle''s class I\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.21''', NULL,
+ '(524.21) Malocclusion, Angle''s class I', '(524.21) Malocclusion, Angle''s class I', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.22) Malocclusion, Angle''s class II\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.22) Malocclusion, Angle''s class II\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.22''', NULL,
+ '(524.22) Malocclusion, Angle''s class II', '(524.22) Malocclusion, Angle''s class II', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.23) Malocclusion, Angle''s class III\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.23) Malocclusion, Angle''s class III\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.23''', NULL,
+ '(524.23) Malocclusion, Angle''s class III', '(524.23) Malocclusion, Angle''s class III', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.24) Open anterior occlusal relationship\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.24) Open anterior occlusal relationship\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.24''', NULL,
+ '(524.24) Open anterior occlusal relationship', '(524.24) Open anterior occlusal relationship', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.25) Open posterior occlusal relationship\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.25) Open posterior occlusal relationship\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.25''', NULL,
+ '(524.25) Open posterior occlusal relationship', '(524.25) Open posterior occlusal relationship', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.26) Excessive horizontal overlap\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.26) Excessive horizontal overlap\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.26''', NULL,
+ '(524.26) Excessive horizontal overlap', '(524.26) Excessive horizontal overlap', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.27) Reverse articulation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.27) Reverse articulation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.27''', NULL,
+ '(524.27) Reverse articulation', '(524.27) Reverse articulation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.28) Anomalies of interarch distance\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.28) Anomalies of interarch distance\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.28''', NULL,
+ '(524.28) Anomalies of interarch distance', '(524.28) Anomalies of interarch distance', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.29) Other anomalies of dental arch relationship\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of dental arch relationship (524.2)\(524.29) Other anomalies of dental arch relationship\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.29''', NULL,
+ '(524.29) Other anomalies of dental arch relationship', '(524.29) Other anomalies of dental arch relationship', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of relationship of jaw to cranial base (524.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of relationship of jaw to cranial base (524.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.1''', NULL,
+ 'Anomalies of relationship of jaw to cranial base (524.1)', 'Anomalies of relationship of jaw to cranial base (524.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of relationship of jaw to cranial base (524.1)\(524.10) Anomalies of relationship of jaw to cranial base, unspecified anomaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of relationship of jaw to cranial base (524.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of relationship of jaw to cranial base (524.1)\(524.10) Anomalies of relationship of jaw to cranial base, unspecified anomaly\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.10''', NULL,
+ '(524.10) Anomalies of relationship of jaw to cranial base, unspecified anomaly', '(524.10) Anomalies of relationship of jaw to cranial base, unspecified anomaly', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of relationship of jaw to cranial base (524.1)\(524.11) Anomalies of relationship of jaw to cranial base, maxillary asymmetry\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of relationship of jaw to cranial base (524.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of relationship of jaw to cranial base (524.1)\(524.11) Anomalies of relationship of jaw to cranial base, maxillary asymmetry\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.11''', NULL,
+ '(524.11) Anomalies of relationship of jaw to cranial base, maxillary asymmetry', '(524.11) Anomalies of relationship of jaw to cranial base, maxillary asymmetry', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of relationship of jaw to cranial base (524.1)\(524.12) Anomalies of relationship of jaw to cranial base, other jaw asymmetry\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of relationship of jaw to cranial base (524.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of relationship of jaw to cranial base (524.1)\(524.12) Anomalies of relationship of jaw to cranial base, other jaw asymmetry\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.12''', NULL,
+ '(524.12) Anomalies of relationship of jaw to cranial base, other jaw asymmetry', '(524.12) Anomalies of relationship of jaw to cranial base, other jaw asymmetry', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of relationship of jaw to cranial base (524.1)\(524.19) Anomalies of relationship of jaw to cranial base, other specified anomaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of relationship of jaw to cranial base (524.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of relationship of jaw to cranial base (524.1)\(524.19) Anomalies of relationship of jaw to cranial base, other specified anomaly\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.19''', NULL,
+ '(524.19) Anomalies of relationship of jaw to cranial base, other specified anomaly', '(524.19) Anomalies of relationship of jaw to cranial base, other specified anomaly', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.3''', NULL,
+ 'Anomalies of tooth position of fully erupted teeth (524.3)', 'Anomalies of tooth position of fully erupted teeth (524.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.30) Unspecified anomaly of tooth position\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.30) Unspecified anomaly of tooth position\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.30''', NULL,
+ '(524.30) Unspecified anomaly of tooth position', '(524.30) Unspecified anomaly of tooth position', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.31) Crowding of teeth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.31) Crowding of teeth\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.31''', NULL,
+ '(524.31) Crowding of teeth', '(524.31) Crowding of teeth', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.32) Excessive spacing of teeth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.32) Excessive spacing of teeth\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.32''', NULL,
+ '(524.32) Excessive spacing of teeth', '(524.32) Excessive spacing of teeth', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.33) Horizontal displacement of teeth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.33) Horizontal displacement of teeth\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.33''', NULL,
+ '(524.33) Horizontal displacement of teeth', '(524.33) Horizontal displacement of teeth', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.34) Vertical displacement of teeth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.34) Vertical displacement of teeth\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.34''', NULL,
+ '(524.34) Vertical displacement of teeth', '(524.34) Vertical displacement of teeth', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.35) Rotation of tooth/teeth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.35) Rotation of tooth/teeth\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.35''', NULL,
+ '(524.35) Rotation of tooth/teeth', '(524.35) Rotation of tooth/teeth', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.36) Insufficient interocclusal distance of teeth (ridge)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.36) Insufficient interocclusal distance of teeth (ridge)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.36) Insufficient interocclusal distance of teeth (ridge''', NULL,
+ '(524.36) Insufficient interocclusal distance of teeth (ridge)', '(524.36) Insufficient interocclusal distance of teeth (ridge)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.37) Excessive interocclusal distance of teeth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.37) Excessive interocclusal distance of teeth\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.37''', NULL,
+ '(524.37) Excessive interocclusal distance of teeth', '(524.37) Excessive interocclusal distance of teeth', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.39) Other anomalies of tooth position\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Anomalies of tooth position of fully erupted teeth (524.3)\(524.39) Other anomalies of tooth position\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.39''', NULL,
+ '(524.39) Other anomalies of tooth position', '(524.39) Other anomalies of tooth position', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.7''', NULL,
+ 'Dental alveolar anomalies (524.7)', 'Dental alveolar anomalies (524.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.70) Dental alveolar anomalies, unspecified alveolar anomaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.70) Dental alveolar anomalies, unspecified alveolar anomaly\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.70''', NULL,
+ '(524.70) Dental alveolar anomalies, unspecified alveolar anomaly', '(524.70) Dental alveolar anomalies, unspecified alveolar anomaly', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.71) Alveolar maxillary hyperplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.71) Alveolar maxillary hyperplasia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.71''', NULL,
+ '(524.71) Alveolar maxillary hyperplasia', '(524.71) Alveolar maxillary hyperplasia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.72) Alveolar mandibular hyperplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.72) Alveolar mandibular hyperplasia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.72''', NULL,
+ '(524.72) Alveolar mandibular hyperplasia', '(524.72) Alveolar mandibular hyperplasia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.73) Alveolar maxillary hypoplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.73) Alveolar maxillary hypoplasia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.73''', NULL,
+ '(524.73) Alveolar maxillary hypoplasia', '(524.73) Alveolar maxillary hypoplasia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.74) Alveolar mandibular hypoplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.74) Alveolar mandibular hypoplasia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.74''', NULL,
+ '(524.74) Alveolar mandibular hypoplasia', '(524.74) Alveolar mandibular hypoplasia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.75) Vertical displacement of alveolus and teeth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.75) Vertical displacement of alveolus and teeth\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.75''', NULL,
+ '(524.75) Vertical displacement of alveolus and teeth', '(524.75) Vertical displacement of alveolus and teeth', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.76) Occlusal plane deviation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.76) Occlusal plane deviation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.76''', NULL,
+ '(524.76) Occlusal plane deviation', '(524.76) Occlusal plane deviation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.79) Other specified alveolar anomaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dental alveolar anomalies (524.7)\(524.79) Other specified alveolar anomaly\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.79''', NULL,
+ '(524.79) Other specified alveolar anomaly', '(524.79) Other specified alveolar anomaly', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.5''', NULL,
+ 'Dentofacial functional abnormalities (524.5)', 'Dentofacial functional abnormalities (524.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.50) Dentofacial functional abnormality, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.50) Dentofacial functional abnormality, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.50''', NULL,
+ '(524.50) Dentofacial functional abnormality, unspecified', '(524.50) Dentofacial functional abnormality, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.51) Abnormal jaw closure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.51) Abnormal jaw closure\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.51''', NULL,
+ '(524.51) Abnormal jaw closure', '(524.51) Abnormal jaw closure', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.52) Limited mandibular range of motion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.52) Limited mandibular range of motion\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.52''', NULL,
+ '(524.52) Limited mandibular range of motion', '(524.52) Limited mandibular range of motion', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.53) Deviation in opening and closing of the mandible\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.53) Deviation in opening and closing of the mandible\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.53''', NULL,
+ '(524.53) Deviation in opening and closing of the mandible', '(524.53) Deviation in opening and closing of the mandible', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.54) Insufficient anterior guidance\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.54) Insufficient anterior guidance\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.54''', NULL,
+ '(524.54) Insufficient anterior guidance', '(524.54) Insufficient anterior guidance', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.55) Centric occlusion maximum intercuspation discrepancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.55) Centric occlusion maximum intercuspation discrepancy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.55''', NULL,
+ '(524.55) Centric occlusion maximum intercuspation discrepancy', '(524.55) Centric occlusion maximum intercuspation discrepancy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.56) Non-working side interference\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.56) Non-working side interference\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.56''', NULL,
+ '(524.56) Non-working side interference', '(524.56) Non-working side interference', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.57) Lack of posterior occlusal support\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.57) Lack of posterior occlusal support\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.57''', NULL,
+ '(524.57) Lack of posterior occlusal support', '(524.57) Lack of posterior occlusal support', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.59) Other dentofacial functional abnormalities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Dentofacial functional abnormalities (524.5)\(524.59) Other dentofacial functional abnormalities\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.59''', NULL,
+ '(524.59) Other dentofacial functional abnormalities', '(524.59) Other dentofacial functional abnormalities', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.0''', NULL,
+ 'Major anomalies of jaw size (524.0)', 'Major anomalies of jaw size (524.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.00) Major anomalies of jaw size, unspecified anomaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.00) Major anomalies of jaw size, unspecified anomaly\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.00''', NULL,
+ '(524.00) Major anomalies of jaw size, unspecified anomaly', '(524.00) Major anomalies of jaw size, unspecified anomaly', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.01) Major anomalies of jaw size, maxillary hyperplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.01) Major anomalies of jaw size, maxillary hyperplasia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.01''', NULL,
+ '(524.01) Major anomalies of jaw size, maxillary hyperplasia', '(524.01) Major anomalies of jaw size, maxillary hyperplasia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.02) Major anomalies of jaw size, mandibular hyperplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.02) Major anomalies of jaw size, mandibular hyperplasia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.02''', NULL,
+ '(524.02) Major anomalies of jaw size, mandibular hyperplasia', '(524.02) Major anomalies of jaw size, mandibular hyperplasia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.03) Major anomalies of jaw size, maxillary hypoplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.03) Major anomalies of jaw size, maxillary hypoplasia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.03''', NULL,
+ '(524.03) Major anomalies of jaw size, maxillary hypoplasia', '(524.03) Major anomalies of jaw size, maxillary hypoplasia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.04) Major anomalies of jaw size, mandibular hypoplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.04) Major anomalies of jaw size, mandibular hypoplasia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.04''', NULL,
+ '(524.04) Major anomalies of jaw size, mandibular hypoplasia', '(524.04) Major anomalies of jaw size, mandibular hypoplasia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.05) Major anomalies of jaw size, macrogenia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.05) Major anomalies of jaw size, macrogenia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.05''', NULL,
+ '(524.05) Major anomalies of jaw size, macrogenia', '(524.05) Major anomalies of jaw size, macrogenia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.06) Major anomalies of jaw size, microgenia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.06) Major anomalies of jaw size, microgenia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.06''', NULL,
+ '(524.06) Major anomalies of jaw size, microgenia', '(524.06) Major anomalies of jaw size, microgenia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.07) Excessive tuberosity of jaw\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.07) Excessive tuberosity of jaw\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.07''', NULL,
+ '(524.07) Excessive tuberosity of jaw', '(524.07) Excessive tuberosity of jaw', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.09) Major anomalies of jaw size, other specified anomaly\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Major anomalies of jaw size (524.0)\(524.09) Major anomalies of jaw size, other specified anomaly\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.09''', NULL,
+ '(524.09) Major anomalies of jaw size, other specified anomaly', '(524.09) Major anomalies of jaw size, other specified anomaly', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Other specified dentofacial anomalies (524.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Other specified dentofacial anomalies (524.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.8''', NULL,
+ 'Other specified dentofacial anomalies (524.8)', 'Other specified dentofacial anomalies (524.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Other specified dentofacial anomalies (524.8)\(524.81) Anterior soft tissue impingement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Other specified dentofacial anomalies (524.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Other specified dentofacial anomalies (524.8)\(524.81) Anterior soft tissue impingement\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.81''', NULL,
+ '(524.81) Anterior soft tissue impingement', '(524.81) Anterior soft tissue impingement', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Other specified dentofacial anomalies (524.8)\(524.82) Posterior soft tissue impingement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Other specified dentofacial anomalies (524.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Other specified dentofacial anomalies (524.8)\(524.82) Posterior soft tissue impingement\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.82''', NULL,
+ '(524.82) Posterior soft tissue impingement', '(524.82) Posterior soft tissue impingement', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Other specified dentofacial anomalies (524.8)\(524.89) Other specified dentofacial anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Other specified dentofacial anomalies (524.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Other specified dentofacial anomalies (524.8)\(524.89) Other specified dentofacial anomalies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.89''', NULL,
+ '(524.89) Other specified dentofacial anomalies', '(524.89) Other specified dentofacial anomalies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.6''', NULL,
+ 'Temporomandibular joint disorders (524.6)', 'Temporomandibular joint disorders (524.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\(524.60) Temporomandibular joint disorders, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\(524.60) Temporomandibular joint disorders, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.60''', NULL,
+ '(524.60) Temporomandibular joint disorders, unspecified', '(524.60) Temporomandibular joint disorders, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\(524.61) Temporomandibular joint disorders, adhesions and ankylosis (bony or fibrous)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\(524.61) Temporomandibular joint disorders, adhesions and ankylosis (bony or fibrous)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.61) Temporomandibular joint disorders, adhesions and ankylosis (bony or fibrous''', NULL,
+ '(524.61) Temporomandibular joint disorders, adhesions and ankylosis (bony or fibrous)', '(524.61) Temporomandibular joint disorders, adhesions and ankylosis (bony or fibrous)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\(524.62) Temporomandibular joint disorders, arthralgia of temporomandibular joint\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\(524.62) Temporomandibular joint disorders, arthralgia of temporomandibular joint\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.62''', NULL,
+ '(524.62) Temporomandibular joint disorders, arthralgia of temporomandibular joint', '(524.62) Temporomandibular joint disorders, arthralgia of temporomandibular joint', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\(524.63) Temporomandibular joint disorders, articular disc disorder (reducing or non-reducing)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\(524.63) Temporomandibular joint disorders, articular disc disorder (reducing or non-reducing)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''524.63) Temporomandibular joint disorders, articular disc disorder (reducing or non'' AND ''reducing''', NULL,
+ '(524.63) Temporomandibular joint disorders, articular disc disorder (reducing or non-reducing)', '(524.63) Temporomandibular joint disorders, articular disc disorder (reducing or non-reducing)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\(524.64) Temporomandibular joint sounds on opening and/or closing the jaw\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\(524.64) Temporomandibular joint sounds on opening and/or closing the jaw\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.64''', NULL,
+ '(524.64) Temporomandibular joint sounds on opening and/or closing the jaw', '(524.64) Temporomandibular joint sounds on opening and/or closing the jaw', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\(524.69) Other specified temporomandibular joint disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Dentofacial anomalies, including malocclusion (524)\Temporomandibular joint disorders (524.6)\(524.69) Other specified temporomandibular joint disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''524.69''', NULL,
+ '(524.69) Other specified temporomandibular joint disorders', '(524.69) Other specified temporomandibular joint disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''529''', NULL,
+ 'Diseases and other conditions of the tongue (529)', 'Diseases and other conditions of the tongue (529)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.0) Glossitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.0) Glossitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''529.0''', NULL,
+ '(529.0) Glossitis', '(529.0) Glossitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.1) Geographic tongue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.1) Geographic tongue\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''529.1''', NULL,
+ '(529.1) Geographic tongue', '(529.1) Geographic tongue', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.2) Median rhomboid glossitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.2) Median rhomboid glossitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''529.2''', NULL,
+ '(529.2) Median rhomboid glossitis', '(529.2) Median rhomboid glossitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.3) Hypertrophy of tongue papillae\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.3) Hypertrophy of tongue papillae\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''529.3''', NULL,
+ '(529.3) Hypertrophy of tongue papillae', '(529.3) Hypertrophy of tongue papillae', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.4) Atrophy of tongue papillae\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.4) Atrophy of tongue papillae\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''529.4''', NULL,
+ '(529.4) Atrophy of tongue papillae', '(529.4) Atrophy of tongue papillae', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.5) Plicated tongue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.5) Plicated tongue\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''529.5''', NULL,
+ '(529.5) Plicated tongue', '(529.5) Plicated tongue', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.6) Glossodynia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.6) Glossodynia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''529.6''', NULL,
+ '(529.6) Glossodynia', '(529.6) Glossodynia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.8) Other specified conditions of the tongue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.8) Other specified conditions of the tongue\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''529.8''', NULL,
+ '(529.8) Other specified conditions of the tongue', '(529.8) Other specified conditions of the tongue', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.9) Unspecified condition of the tongue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases and other conditions of the tongue (529)\(529.9) Unspecified condition of the tongue\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''529.9''', NULL,
+ '(529.9) Unspecified condition of the tongue', '(529.9) Unspecified condition of the tongue', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521''', NULL,
+ 'Diseases of hard tissues of teeth (521)', 'Diseases of hard tissues of teeth (521)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\(521.5) Hypercementosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\(521.5) Hypercementosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.5''', NULL,
+ '(521.5) Hypercementosis', '(521.5) Hypercementosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\(521.6) Ankylosis of teeth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\(521.6) Ankylosis of teeth\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.6''', NULL,
+ '(521.6) Ankylosis of teeth', '(521.6) Ankylosis of teeth', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\(521.7) Intrinsic posteruptive color changes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\(521.7) Intrinsic posteruptive color changes\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.7''', NULL,
+ '(521.7) Intrinsic posteruptive color changes', '(521.7) Intrinsic posteruptive color changes', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\(521.9) Unspecified disease of hard tissues of teeth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\(521.9) Unspecified disease of hard tissues of teeth\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.9''', NULL,
+ '(521.9) Unspecified disease of hard tissues of teeth', '(521.9) Unspecified disease of hard tissues of teeth', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.2''', NULL,
+ 'Abrasion of teeth (521.2)', 'Abrasion of teeth (521.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\(521.20) Abrasion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\(521.20) Abrasion, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.20''', NULL,
+ '(521.20) Abrasion, unspecified', '(521.20) Abrasion, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\(521.21) Abrasion, limited to enamel\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\(521.21) Abrasion, limited to enamel\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.21''', NULL,
+ '(521.21) Abrasion, limited to enamel', '(521.21) Abrasion, limited to enamel', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\(521.22) Abrasion, extending into dentine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\(521.22) Abrasion, extending into dentine\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.22''', NULL,
+ '(521.22) Abrasion, extending into dentine', '(521.22) Abrasion, extending into dentine', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\(521.23) Abrasion, extending into pulp\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\(521.23) Abrasion, extending into pulp\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.23''', NULL,
+ '(521.23) Abrasion, extending into pulp', '(521.23) Abrasion, extending into pulp', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\(521.24) Abrasion, localized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\(521.24) Abrasion, localized\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.24''', NULL,
+ '(521.24) Abrasion, localized', '(521.24) Abrasion, localized', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\(521.25) Abrasion, generalized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Abrasion of teeth (521.2)\(521.25) Abrasion, generalized\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.25''', NULL,
+ '(521.25) Abrasion, generalized', '(521.25) Abrasion, generalized', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.0''', NULL,
+ 'Dental caries (521.0)', 'Dental caries (521.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.00) Dental caries, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.00) Dental caries, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.00''', NULL,
+ '(521.00) Dental caries, unspecified', '(521.00) Dental caries, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.01) Dental caries limited to enamel\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.01) Dental caries limited to enamel\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.01''', NULL,
+ '(521.01) Dental caries limited to enamel', '(521.01) Dental caries limited to enamel', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.02) Dental caries extending into dentine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.02) Dental caries extending into dentine\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.02''', NULL,
+ '(521.02) Dental caries extending into dentine', '(521.02) Dental caries extending into dentine', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.03) Dental caries extending into pulp\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.03) Dental caries extending into pulp\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.03''', NULL,
+ '(521.03) Dental caries extending into pulp', '(521.03) Dental caries extending into pulp', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.04) Arrested dental caries\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.04) Arrested dental caries\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.04''', NULL,
+ '(521.04) Arrested dental caries', '(521.04) Arrested dental caries', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.05) Odontoclasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.05) Odontoclasia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.05''', NULL,
+ '(521.05) Odontoclasia', '(521.05) Odontoclasia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.06) Dental caries pit and fissure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.06) Dental caries pit and fissure\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.06''', NULL,
+ '(521.06) Dental caries pit and fissure', '(521.06) Dental caries pit and fissure', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.07) Dental caries of smooth surface\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.07) Dental caries of smooth surface\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.07''', NULL,
+ '(521.07) Dental caries of smooth surface', '(521.07) Dental caries of smooth surface', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.08) Dental caries of root surface\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.08) Dental caries of root surface\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.08''', NULL,
+ '(521.08) Dental caries of root surface', '(521.08) Dental caries of root surface', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.09) Other dental caries\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Dental caries (521.0)\(521.09) Other dental caries\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.09''', NULL,
+ '(521.09) Other dental caries', '(521.09) Other dental caries', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.3''', NULL,
+ 'Erosion of teeth (521.3)', 'Erosion of teeth (521.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\(521.30) Erosion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\(521.30) Erosion, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.30''', NULL,
+ '(521.30) Erosion, unspecified', '(521.30) Erosion, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\(521.31) Erosion, limited to enamel\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\(521.31) Erosion, limited to enamel\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.31''', NULL,
+ '(521.31) Erosion, limited to enamel', '(521.31) Erosion, limited to enamel', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\(521.32) Erosion, extending into dentine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\(521.32) Erosion, extending into dentine\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.32''', NULL,
+ '(521.32) Erosion, extending into dentine', '(521.32) Erosion, extending into dentine', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\(521.33) Erosion, extending into pulp\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\(521.33) Erosion, extending into pulp\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.33''', NULL,
+ '(521.33) Erosion, extending into pulp', '(521.33) Erosion, extending into pulp', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\(521.34) Erosion, localized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\(521.34) Erosion, localized\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.34''', NULL,
+ '(521.34) Erosion, localized', '(521.34) Erosion, localized', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\(521.35) Erosion, generalized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Erosion of teeth (521.3)\(521.35) Erosion, generalized\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.35''', NULL,
+ '(521.35) Erosion, generalized', '(521.35) Erosion, generalized', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.1''', NULL,
+ 'Excessive dental attrition [approximal wear] [occlusal wear] (521.1)', 'Excessive dental attrition [approximal wear] [occlusal wear] (521.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\(521.10) Excessive attrition, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\(521.10) Excessive attrition, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.10''', NULL,
+ '(521.10) Excessive attrition, unspecified', '(521.10) Excessive attrition, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\(521.11) Excessive attrition, limited to enamel\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\(521.11) Excessive attrition, limited to enamel\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.11''', NULL,
+ '(521.11) Excessive attrition, limited to enamel', '(521.11) Excessive attrition, limited to enamel', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\(521.12) Excessive attrition, extending into dentine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\(521.12) Excessive attrition, extending into dentine\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.12''', NULL,
+ '(521.12) Excessive attrition, extending into dentine', '(521.12) Excessive attrition, extending into dentine', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\(521.13) Excessive attrition, extending into pulp\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\(521.13) Excessive attrition, extending into pulp\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.13''', NULL,
+ '(521.13) Excessive attrition, extending into pulp', '(521.13) Excessive attrition, extending into pulp', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\(521.14) Excessive attrition, localized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\(521.14) Excessive attrition, localized\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.14''', NULL,
+ '(521.14) Excessive attrition, localized', '(521.14) Excessive attrition, localized', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\(521.15) Excessive attrition, generalized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Excessive dental attrition [approximal wear] [occlusal wear] (521.1)\(521.15) Excessive attrition, generalized\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.15''', NULL,
+ '(521.15) Excessive attrition, generalized', '(521.15) Excessive attrition, generalized', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Other specified diseases of hard tissues of teeth (521.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Other specified diseases of hard tissues of teeth (521.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.8''', NULL,
+ 'Other specified diseases of hard tissues of teeth (521.8)', 'Other specified diseases of hard tissues of teeth (521.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Other specified diseases of hard tissues of teeth (521.8)\(521.81) Cracked tooth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Other specified diseases of hard tissues of teeth (521.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Other specified diseases of hard tissues of teeth (521.8)\(521.81) Cracked tooth\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.81''', NULL,
+ '(521.81) Cracked tooth', '(521.81) Cracked tooth', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Other specified diseases of hard tissues of teeth (521.8)\(521.89) Other specific diseases of hard tissues of teeth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Other specified diseases of hard tissues of teeth (521.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Other specified diseases of hard tissues of teeth (521.8)\(521.89) Other specific diseases of hard tissues of teeth\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.89''', NULL,
+ '(521.89) Other specific diseases of hard tissues of teeth', '(521.89) Other specific diseases of hard tissues of teeth', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Pathological tooth resorption (521.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Pathological tooth resorption (521.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.4''', NULL,
+ 'Pathological tooth resorption (521.4)', 'Pathological tooth resorption (521.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Pathological tooth resorption (521.4)\(521.40) Pathological resorption, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Pathological tooth resorption (521.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Pathological tooth resorption (521.4)\(521.40) Pathological resorption, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.40''', NULL,
+ '(521.40) Pathological resorption, unspecified', '(521.40) Pathological resorption, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Pathological tooth resorption (521.4)\(521.41) Pathological resorption, internal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Pathological tooth resorption (521.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Pathological tooth resorption (521.4)\(521.41) Pathological resorption, internal\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.41''', NULL,
+ '(521.41) Pathological resorption, internal', '(521.41) Pathological resorption, internal', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Pathological tooth resorption (521.4)\(521.42) Pathological resorption, external\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Pathological tooth resorption (521.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Pathological tooth resorption (521.4)\(521.42) Pathological resorption, external\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.42''', NULL,
+ '(521.42) Pathological resorption, external', '(521.42) Pathological resorption, external', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Pathological tooth resorption (521.4)\(521.49) Other pathological resorption\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Pathological tooth resorption (521.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of hard tissues of teeth (521)\Pathological tooth resorption (521.4)\(521.49) Other pathological resorption\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''521.49''', NULL,
+ '(521.49) Other pathological resorption', '(521.49) Other pathological resorption', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''522''', NULL,
+ 'Diseases of pulp and periapical tissues (522)', 'Diseases of pulp and periapical tissues (522)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.0) Pulpitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.0) Pulpitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''522.0''', NULL,
+ '(522.0) Pulpitis', '(522.0) Pulpitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.1) Necrosis of the pulp\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.1) Necrosis of the pulp\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''522.1''', NULL,
+ '(522.1) Necrosis of the pulp', '(522.1) Necrosis of the pulp', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.2) Pulp degeneration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.2) Pulp degeneration\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''522.2''', NULL,
+ '(522.2) Pulp degeneration', '(522.2) Pulp degeneration', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.3) Abnormal hard tissue formation in pulp\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.3) Abnormal hard tissue formation in pulp\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''522.3''', NULL,
+ '(522.3) Abnormal hard tissue formation in pulp', '(522.3) Abnormal hard tissue formation in pulp', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.4) Acute apical periodontitis of pulpal origin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.4) Acute apical periodontitis of pulpal origin\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''522.4''', NULL,
+ '(522.4) Acute apical periodontitis of pulpal origin', '(522.4) Acute apical periodontitis of pulpal origin', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.5) Periapical abscess without sinus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.5) Periapical abscess without sinus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''522.5''', NULL,
+ '(522.5) Periapical abscess without sinus', '(522.5) Periapical abscess without sinus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.6) Chronic apical periodontitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.6) Chronic apical periodontitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''522.6''', NULL,
+ '(522.6) Chronic apical periodontitis', '(522.6) Chronic apical periodontitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.7) Periapical abscess with sinus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.7) Periapical abscess with sinus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''522.7''', NULL,
+ '(522.7) Periapical abscess with sinus', '(522.7) Periapical abscess with sinus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.8) Radicular cyst\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.8) Radicular cyst\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''522.8''', NULL,
+ '(522.8) Radicular cyst', '(522.8) Radicular cyst', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.9) Other and unspecified diseases of pulp and periapical tissues\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of pulp and periapical tissues (522)\(522.9) Other and unspecified diseases of pulp and periapical tissues\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''522.9''', NULL,
+ '(522.9) Other and unspecified diseases of pulp and periapical tissues', '(522.9) Other and unspecified diseases of pulp and periapical tissues', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526''', NULL,
+ 'Diseases of the jaws (526)', 'Diseases of the jaws (526)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\(526.0) Developmental odontogenic cysts\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\(526.0) Developmental odontogenic cysts\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526.0''', NULL,
+ '(526.0) Developmental odontogenic cysts', '(526.0) Developmental odontogenic cysts', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\(526.1) Fissural cysts of jaw\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\(526.1) Fissural cysts of jaw\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526.1''', NULL,
+ '(526.1) Fissural cysts of jaw', '(526.1) Fissural cysts of jaw', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\(526.2) Other cysts of jaws\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\(526.2) Other cysts of jaws\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526.2''', NULL,
+ '(526.2) Other cysts of jaws', '(526.2) Other cysts of jaws', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\(526.3) Central giant cell (reparative) granuloma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\(526.3) Central giant cell (reparative) granuloma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526.3) Central giant cell (reparative''', NULL,
+ '(526.3) Central giant cell (reparative) granuloma', '(526.3) Central giant cell (reparative) granuloma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\(526.4) Inflammatory conditions of jaw\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\(526.4) Inflammatory conditions of jaw\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526.4''', NULL,
+ '(526.4) Inflammatory conditions of jaw', '(526.4) Inflammatory conditions of jaw', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\(526.5) Alveolitis of jaw\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\(526.5) Alveolitis of jaw\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526.5''', NULL,
+ '(526.5) Alveolitis of jaw', '(526.5) Alveolitis of jaw', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\(526.9) Unspecified disease of the jaws\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\(526.9) Unspecified disease of the jaws\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526.9''', NULL,
+ '(526.9) Unspecified disease of the jaws', '(526.9) Unspecified disease of the jaws', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Other specified diseases of the jaws (526.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Other specified diseases of the jaws (526.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526.8''', NULL,
+ 'Other specified diseases of the jaws (526.8)', 'Other specified diseases of the jaws (526.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Other specified diseases of the jaws (526.8)\(526.81) Exostosis of jaw\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Other specified diseases of the jaws (526.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Other specified diseases of the jaws (526.8)\(526.81) Exostosis of jaw\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526.81''', NULL,
+ '(526.81) Exostosis of jaw', '(526.81) Exostosis of jaw', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Other specified diseases of the jaws (526.8)\(526.89) Other specified diseases of the jaws\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Other specified diseases of the jaws (526.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Other specified diseases of the jaws (526.8)\(526.89) Other specified diseases of the jaws\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526.89''', NULL,
+ '(526.89) Other specified diseases of the jaws', '(526.89) Other specified diseases of the jaws', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Periradicular pathology associated with previous endodontic treatment (526.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Periradicular pathology associated with previous endodontic treatment (526.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526.6''', NULL,
+ 'Periradicular pathology associated with previous endodontic treatment (526.6)', 'Periradicular pathology associated with previous endodontic treatment (526.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Periradicular pathology associated with previous endodontic treatment (526.6)\(526.61) Perforation of root canal space\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Periradicular pathology associated with previous endodontic treatment (526.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Periradicular pathology associated with previous endodontic treatment (526.6)\(526.61) Perforation of root canal space\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526.61''', NULL,
+ '(526.61) Perforation of root canal space', '(526.61) Perforation of root canal space', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Periradicular pathology associated with previous endodontic treatment (526.6)\(526.62) Endodontic overfill\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Periradicular pathology associated with previous endodontic treatment (526.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Periradicular pathology associated with previous endodontic treatment (526.6)\(526.62) Endodontic overfill\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526.62''', NULL,
+ '(526.62) Endodontic overfill', '(526.62) Endodontic overfill', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Periradicular pathology associated with previous endodontic treatment (526.6)\(526.63) Endodontic underfill\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Periradicular pathology associated with previous endodontic treatment (526.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Periradicular pathology associated with previous endodontic treatment (526.6)\(526.63) Endodontic underfill\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526.63''', NULL,
+ '(526.63) Endodontic underfill', '(526.63) Endodontic underfill', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Periradicular pathology associated with previous endodontic treatment (526.6)\(526.69) Other periradicular pathology associated with previous endodontic treatment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Periradicular pathology associated with previous endodontic treatment (526.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the jaws (526)\Periradicular pathology associated with previous endodontic treatment (526.6)\(526.69) Other periradicular pathology associated with previous endodontic treatment\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''526.69''', NULL,
+ '(526.69) Other periradicular pathology associated with previous endodontic treatment', '(526.69) Other periradicular pathology associated with previous endodontic treatment', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528''', NULL,
+ 'Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)', 'Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.1) Cancrum oris\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.1) Cancrum oris\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.1''', NULL,
+ '(528.1) Cancrum oris', '(528.1) Cancrum oris', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.2) Oral aphthae\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.2) Oral aphthae\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.2''', NULL,
+ '(528.2) Oral aphthae', '(528.2) Oral aphthae', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.3) Cellulitis and abscess of oral soft tissues\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.3) Cellulitis and abscess of oral soft tissues\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.3''', NULL,
+ '(528.3) Cellulitis and abscess of oral soft tissues', '(528.3) Cellulitis and abscess of oral soft tissues', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.4) Cysts of oral soft tissues\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.4) Cysts of oral soft tissues\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.4''', NULL,
+ '(528.4) Cysts of oral soft tissues', '(528.4) Cysts of oral soft tissues', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.5) Diseases of lips\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.5) Diseases of lips\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.5''', NULL,
+ '(528.5) Diseases of lips', '(528.5) Diseases of lips', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.6) Leukoplakia of oral mucosa, including tongue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.6) Leukoplakia of oral mucosa, including tongue\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.6''', NULL,
+ '(528.6) Leukoplakia of oral mucosa, including tongue', '(528.6) Leukoplakia of oral mucosa, including tongue', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.8) Oral submucosal fibrosis, including of tongue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.8) Oral submucosal fibrosis, including of tongue\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.8''', NULL,
+ '(528.8) Oral submucosal fibrosis, including of tongue', '(528.8) Oral submucosal fibrosis, including of tongue', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.9) Other and unspecified diseases of the oral soft tissues\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\(528.9) Other and unspecified diseases of the oral soft tissues\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.9''', NULL,
+ '(528.9) Other and unspecified diseases of the oral soft tissues', '(528.9) Other and unspecified diseases of the oral soft tissues', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Other disturbances of oral epithelium, including tongue (528.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Other disturbances of oral epithelium, including tongue (528.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.7''', NULL,
+ 'Other disturbances of oral epithelium, including tongue (528.7)', 'Other disturbances of oral epithelium, including tongue (528.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Other disturbances of oral epithelium, including tongue (528.7)\(528.71) Minimal keratinized residual ridge mucosa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Other disturbances of oral epithelium, including tongue (528.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Other disturbances of oral epithelium, including tongue (528.7)\(528.71) Minimal keratinized residual ridge mucosa\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.71''', NULL,
+ '(528.71) Minimal keratinized residual ridge mucosa', '(528.71) Minimal keratinized residual ridge mucosa', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Other disturbances of oral epithelium, including tongue (528.7)\(528.72) Excessive keratinized residual ridge mucosa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Other disturbances of oral epithelium, including tongue (528.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Other disturbances of oral epithelium, including tongue (528.7)\(528.72) Excessive keratinized residual ridge mucosa\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.72''', NULL,
+ '(528.72) Excessive keratinized residual ridge mucosa', '(528.72) Excessive keratinized residual ridge mucosa', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Other disturbances of oral epithelium, including tongue (528.7)\(528.79) Other disturbances of oral epithelium, including tongue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Other disturbances of oral epithelium, including tongue (528.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Other disturbances of oral epithelium, including tongue (528.7)\(528.79) Other disturbances of oral epithelium, including tongue\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.79''', NULL,
+ '(528.79) Other disturbances of oral epithelium, including tongue', '(528.79) Other disturbances of oral epithelium, including tongue', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Stomatitis and mucositis (ulcerative) (528.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Stomatitis and mucositis (ulcerative) (528.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''ulcerative) (528.0''', NULL,
+ 'Stomatitis and mucositis (ulcerative) (528.0)', 'Stomatitis and mucositis (ulcerative) (528.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Stomatitis and mucositis (ulcerative) (528.0)\(528.00) Stomatitis and mucositis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Stomatitis and mucositis (ulcerative) (528.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Stomatitis and mucositis (ulcerative) (528.0)\(528.00) Stomatitis and mucositis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.00''', NULL,
+ '(528.00) Stomatitis and mucositis, unspecified', '(528.00) Stomatitis and mucositis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Stomatitis and mucositis (ulcerative) (528.0)\(528.01) Mucositis (ulcerative) due to antineoplastic therapy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Stomatitis and mucositis (ulcerative) (528.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Stomatitis and mucositis (ulcerative) (528.0)\(528.01) Mucositis (ulcerative) due to antineoplastic therapy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.01) Mucositis (ulcerative''', NULL,
+ '(528.01) Mucositis (ulcerative) due to antineoplastic therapy', '(528.01) Mucositis (ulcerative) due to antineoplastic therapy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Stomatitis and mucositis (ulcerative) (528.0)\(528.02) Mucositis (ulcerative) due to other drugs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Stomatitis and mucositis (ulcerative) (528.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Stomatitis and mucositis (ulcerative) (528.0)\(528.02) Mucositis (ulcerative) due to other drugs\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.02) Mucositis (ulcerative''', NULL,
+ '(528.02) Mucositis (ulcerative) due to other drugs', '(528.02) Mucositis (ulcerative) due to other drugs', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Stomatitis and mucositis (ulcerative) (528.0)\(528.09) Other stomatitis and mucositis (ulcerative)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Stomatitis and mucositis (ulcerative) (528.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the oral soft tissues, excluding lesions specific for gingiva and tongue (528)\Stomatitis and mucositis (ulcerative) (528.0)\(528.09) Other stomatitis and mucositis (ulcerative)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''528.09) Other stomatitis and mucositis (ulcerative''', NULL,
+ '(528.09) Other stomatitis and mucositis (ulcerative)', '(528.09) Other stomatitis and mucositis (ulcerative)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''527''', NULL,
+ 'Diseases of the salivary glands (527)', 'Diseases of the salivary glands (527)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.0) Atrophy of salivary gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.0) Atrophy of salivary gland\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''527.0''', NULL,
+ '(527.0) Atrophy of salivary gland', '(527.0) Atrophy of salivary gland', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.1) Hypertrophy of salivary gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.1) Hypertrophy of salivary gland\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''527.1''', NULL,
+ '(527.1) Hypertrophy of salivary gland', '(527.1) Hypertrophy of salivary gland', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.2) Sialoadenitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.2) Sialoadenitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''527.2''', NULL,
+ '(527.2) Sialoadenitis', '(527.2) Sialoadenitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.3) Abscess of salivary gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.3) Abscess of salivary gland\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''527.3''', NULL,
+ '(527.3) Abscess of salivary gland', '(527.3) Abscess of salivary gland', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.4) Fistula of salivary gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.4) Fistula of salivary gland\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''527.4''', NULL,
+ '(527.4) Fistula of salivary gland', '(527.4) Fistula of salivary gland', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.5) Sialolithiasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.5) Sialolithiasis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''527.5''', NULL,
+ '(527.5) Sialolithiasis', '(527.5) Sialolithiasis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.6) Mucocele of salivary gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.6) Mucocele of salivary gland\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''527.6''', NULL,
+ '(527.6) Mucocele of salivary gland', '(527.6) Mucocele of salivary gland', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.7) Disturbance of salivary secretion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.7) Disturbance of salivary secretion\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''527.7''', NULL,
+ '(527.7) Disturbance of salivary secretion', '(527.7) Disturbance of salivary secretion', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.8) Other specified diseases of the salivary glands\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.8) Other specified diseases of the salivary glands\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''527.8''', NULL,
+ '(527.8) Other specified diseases of the salivary glands', '(527.8) Other specified diseases of the salivary glands', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.9) Unspecified disease of the salivary glands\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Diseases of the salivary glands (527)\(527.9) Unspecified disease of the salivary glands\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''527.9''', NULL,
+ '(527.9) Unspecified disease of the salivary glands', '(527.9) Unspecified disease of the salivary glands', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''520''', NULL,
+ 'Disorders of tooth development and eruption (520)', 'Disorders of tooth development and eruption (520)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.0) Anodontia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.0) Anodontia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''520.0''', NULL,
+ '(520.0) Anodontia', '(520.0) Anodontia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.1) Supernumerary teeth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.1) Supernumerary teeth\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''520.1''', NULL,
+ '(520.1) Supernumerary teeth', '(520.1) Supernumerary teeth', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.2) Abnormalities of size and form of teeth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.2) Abnormalities of size and form of teeth\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''520.2''', NULL,
+ '(520.2) Abnormalities of size and form of teeth', '(520.2) Abnormalities of size and form of teeth', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.3) Mottled teeth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.3) Mottled teeth\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''520.3''', NULL,
+ '(520.3) Mottled teeth', '(520.3) Mottled teeth', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.4) Disturbances of tooth formation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.4) Disturbances of tooth formation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''520.4''', NULL,
+ '(520.4) Disturbances of tooth formation', '(520.4) Disturbances of tooth formation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.5) Hereditary disturbances in tooth structure, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.5) Hereditary disturbances in tooth structure, not elsewhere classified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''520.5''', NULL,
+ '(520.5) Hereditary disturbances in tooth structure, not elsewhere classified', '(520.5) Hereditary disturbances in tooth structure, not elsewhere classified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.6) Disturbances in tooth eruption\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.6) Disturbances in tooth eruption\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''520.6''', NULL,
+ '(520.6) Disturbances in tooth eruption', '(520.6) Disturbances in tooth eruption', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.7) Teething syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.7) Teething syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''520.7''', NULL,
+ '(520.7) Teething syndrome', '(520.7) Teething syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.8) Other specified disorders of tooth development and eruption\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.8) Other specified disorders of tooth development and eruption\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''520.8''', NULL,
+ '(520.8) Other specified disorders of tooth development and eruption', '(520.8) Other specified disorders of tooth development and eruption', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.9) Unspecified disorder of tooth development and eruption\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Disorders of tooth development and eruption (520)\(520.9) Unspecified disorder of tooth development and eruption\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''520.9''', NULL,
+ '(520.9) Unspecified disorder of tooth development and eruption', '(520.9) Unspecified disorder of tooth development and eruption', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523''', NULL,
+ 'Gingival and periodontal diseases (523)', 'Gingival and periodontal diseases (523)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\(523.5) Periodontosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\(523.5) Periodontosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.5''', NULL,
+ '(523.5) Periodontosis', '(523.5) Periodontosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\(523.6) Accretions on teeth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\(523.6) Accretions on teeth\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.6''', NULL,
+ '(523.6) Accretions on teeth', '(523.6) Accretions on teeth', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\(523.8) Other specified periodontal diseases\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\(523.8) Other specified periodontal diseases\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.8''', NULL,
+ '(523.8) Other specified periodontal diseases', '(523.8) Other specified periodontal diseases', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\(523.9) Unspecified gingival and periodontal disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\(523.9) Unspecified gingival and periodontal disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.9''', NULL,
+ '(523.9) Unspecified gingival and periodontal disease', '(523.9) Unspecified gingival and periodontal disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Acute gingivitis (523.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Acute gingivitis (523.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.0''', NULL,
+ 'Acute gingivitis (523.0)', 'Acute gingivitis (523.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Acute gingivitis (523.0)\(523.00) Acute gingivitis, plaque induced\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Acute gingivitis (523.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Acute gingivitis (523.0)\(523.00) Acute gingivitis, plaque induced\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.00''', NULL,
+ '(523.00) Acute gingivitis, plaque induced', '(523.00) Acute gingivitis, plaque induced', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Acute gingivitis (523.0)\(523.01) Acute gingivitis, non-plaque induced\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Acute gingivitis (523.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Acute gingivitis (523.0)\(523.01) Acute gingivitis, non-plaque induced\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.01''', NULL,
+ '(523.01) Acute gingivitis, non-plaque induced', '(523.01) Acute gingivitis, non-plaque induced', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Aggressive and acute periodontitis (523.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Aggressive and acute periodontitis (523.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.3''', NULL,
+ 'Aggressive and acute periodontitis (523.3)', 'Aggressive and acute periodontitis (523.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Aggressive and acute periodontitis (523.3)\(523.30) Aggressive periodontitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Aggressive and acute periodontitis (523.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Aggressive and acute periodontitis (523.3)\(523.30) Aggressive periodontitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.30''', NULL,
+ '(523.30) Aggressive periodontitis, unspecified', '(523.30) Aggressive periodontitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Aggressive and acute periodontitis (523.3)\(523.31) Aggressive periodontitis, localized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Aggressive and acute periodontitis (523.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Aggressive and acute periodontitis (523.3)\(523.31) Aggressive periodontitis, localized\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.31''', NULL,
+ '(523.31) Aggressive periodontitis, localized', '(523.31) Aggressive periodontitis, localized', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Aggressive and acute periodontitis (523.3)\(523.32) Aggressive periodontitis, generalized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Aggressive and acute periodontitis (523.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Aggressive and acute periodontitis (523.3)\(523.32) Aggressive periodontitis, generalized\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.32''', NULL,
+ '(523.32) Aggressive periodontitis, generalized', '(523.32) Aggressive periodontitis, generalized', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Aggressive and acute periodontitis (523.3)\(523.33) Acute periodontitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Aggressive and acute periodontitis (523.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Aggressive and acute periodontitis (523.3)\(523.33) Acute periodontitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.33''', NULL,
+ '(523.33) Acute periodontitis', '(523.33) Acute periodontitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic gingivitis (523.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic gingivitis (523.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.1''', NULL,
+ 'Chronic gingivitis (523.1)', 'Chronic gingivitis (523.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic gingivitis (523.1)\(523.10) Chronic gingivitis, plaque induced\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic gingivitis (523.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic gingivitis (523.1)\(523.10) Chronic gingivitis, plaque induced\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.10''', NULL,
+ '(523.10) Chronic gingivitis, plaque induced', '(523.10) Chronic gingivitis, plaque induced', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic gingivitis (523.1)\(523.11) Chronic gingivitis, non-plaque induced\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic gingivitis (523.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic gingivitis (523.1)\(523.11) Chronic gingivitis, non-plaque induced\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.11''', NULL,
+ '(523.11) Chronic gingivitis, non-plaque induced', '(523.11) Chronic gingivitis, non-plaque induced', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic periodontitis (523.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic periodontitis (523.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.4''', NULL,
+ 'Chronic periodontitis (523.4)', 'Chronic periodontitis (523.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic periodontitis (523.4)\(523.40) Chronic periodontitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic periodontitis (523.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic periodontitis (523.4)\(523.40) Chronic periodontitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.40''', NULL,
+ '(523.40) Chronic periodontitis, unspecified', '(523.40) Chronic periodontitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic periodontitis (523.4)\(523.41) Chronic periodontitis, localized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic periodontitis (523.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic periodontitis (523.4)\(523.41) Chronic periodontitis, localized\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.41''', NULL,
+ '(523.41) Chronic periodontitis, localized', '(523.41) Chronic periodontitis, localized', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic periodontitis (523.4)\(523.42) Chronic periodontitis, generalized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic periodontitis (523.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Chronic periodontitis (523.4)\(523.42) Chronic periodontitis, generalized\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.42''', NULL,
+ '(523.42) Chronic periodontitis, generalized', '(523.42) Chronic periodontitis, generalized', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.2''', NULL,
+ 'Gingival recession (523.2)', 'Gingival recession (523.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\(523.20) Gingival recession, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\(523.20) Gingival recession, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.20''', NULL,
+ '(523.20) Gingival recession, unspecified', '(523.20) Gingival recession, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\(523.21) Gingival recession, minimal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\(523.21) Gingival recession, minimal\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.21''', NULL,
+ '(523.21) Gingival recession, minimal', '(523.21) Gingival recession, minimal', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\(523.22) Gingival recession, moderate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\(523.22) Gingival recession, moderate\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.22''', NULL,
+ '(523.22) Gingival recession, moderate', '(523.22) Gingival recession, moderate', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\(523.23) Gingival recession, severe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\(523.23) Gingival recession, severe\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.23''', NULL,
+ '(523.23) Gingival recession, severe', '(523.23) Gingival recession, severe', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\(523.24) Gingival recession, localized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\(523.24) Gingival recession, localized\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.24''', NULL,
+ '(523.24) Gingival recession, localized', '(523.24) Gingival recession, localized', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\(523.25) Gingival recession, generalized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Gingival and periodontal diseases (523)\Gingival recession (523.2)\(523.25) Gingival recession, generalized\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''523.25''', NULL,
+ '(523.25) Gingival recession, generalized', '(523.25) Gingival recession, generalized', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525''', NULL,
+ 'Other diseases and conditions of the teeth and supporting structures (525)', 'Other diseases and conditions of the teeth and supporting structures (525)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\(525.0) Exfoliation of teeth due to systemic causes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\(525.0) Exfoliation of teeth due to systemic causes\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.0''', NULL,
+ '(525.0) Exfoliation of teeth due to systemic causes', '(525.0) Exfoliation of teeth due to systemic causes', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\(525.3) Retained dental root\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\(525.3) Retained dental root\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.3''', NULL,
+ '(525.3) Retained dental root', '(525.3) Retained dental root', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\(525.8) Other specified disorders of the teeth and supporting structures\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\(525.8) Other specified disorders of the teeth and supporting structures\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.8''', NULL,
+ '(525.8) Other specified disorders of the teeth and supporting structures', '(525.8) Other specified disorders of the teeth and supporting structures', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\(525.9) Unspecified disorder of the teeth and supporting structures\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\(525.9) Unspecified disorder of the teeth and supporting structures\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.9''', NULL,
+ '(525.9) Unspecified disorder of the teeth and supporting structures', '(525.9) Unspecified disorder of the teeth and supporting structures', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.2''', NULL,
+ 'Atrophy of edentulous alveolar ridge (525.2)', 'Atrophy of edentulous alveolar ridge (525.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\(525.20) Unspecified atrophy of edentulous alveolar ridge\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\(525.20) Unspecified atrophy of edentulous alveolar ridge\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.20''', NULL,
+ '(525.20) Unspecified atrophy of edentulous alveolar ridge', '(525.20) Unspecified atrophy of edentulous alveolar ridge', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\(525.21) Minimal atrophy of the mandible\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\(525.21) Minimal atrophy of the mandible\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.21''', NULL,
+ '(525.21) Minimal atrophy of the mandible', '(525.21) Minimal atrophy of the mandible', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\(525.22) Moderate atrophy of the mandible\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\(525.22) Moderate atrophy of the mandible\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.22''', NULL,
+ '(525.22) Moderate atrophy of the mandible', '(525.22) Moderate atrophy of the mandible', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\(525.23) Severe atrophy of the mandible\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\(525.23) Severe atrophy of the mandible\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.23''', NULL,
+ '(525.23) Severe atrophy of the mandible', '(525.23) Severe atrophy of the mandible', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\(525.24) Minimal atrophy of the maxilla\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\(525.24) Minimal atrophy of the maxilla\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.24''', NULL,
+ '(525.24) Minimal atrophy of the maxilla', '(525.24) Minimal atrophy of the maxilla', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\(525.25) Moderate atrophy of the maxilla\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\(525.25) Moderate atrophy of the maxilla\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.25''', NULL,
+ '(525.25) Moderate atrophy of the maxilla', '(525.25) Moderate atrophy of the maxilla', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\(525.26) Severe atrophy of the maxilla\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Atrophy of edentulous alveolar ridge (525.2)\(525.26) Severe atrophy of the maxilla\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.26''', NULL,
+ '(525.26) Severe atrophy of the maxilla', '(525.26) Severe atrophy of the maxilla', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.4''', NULL,
+ 'Complete edentulism (525.4)', 'Complete edentulism (525.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\(525.40) Complete edentulism, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\(525.40) Complete edentulism, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.40''', NULL,
+ '(525.40) Complete edentulism, unspecified', '(525.40) Complete edentulism, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\(525.41) Complete edentulism, class I\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\(525.41) Complete edentulism, class I\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.41''', NULL,
+ '(525.41) Complete edentulism, class I', '(525.41) Complete edentulism, class I', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\(525.42) Complete edentulism, class II\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\(525.42) Complete edentulism, class II\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.42''', NULL,
+ '(525.42) Complete edentulism, class II', '(525.42) Complete edentulism, class II', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\(525.43) Complete edentulism, class III\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\(525.43) Complete edentulism, class III\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.43''', NULL,
+ '(525.43) Complete edentulism, class III', '(525.43) Complete edentulism, class III', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\(525.44) Complete edentulism, class IV\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Complete edentulism (525.4)\(525.44) Complete edentulism, class IV\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.44''', NULL,
+ '(525.44) Complete edentulism, class IV', '(525.44) Complete edentulism, class IV', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Endosseous dental implant failure (525.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Endosseous dental implant failure (525.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.7''', NULL,
+ 'Endosseous dental implant failure (525.7)', 'Endosseous dental implant failure (525.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Endosseous dental implant failure (525.7)\(525.71) Osseointegration failure of dental implant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Endosseous dental implant failure (525.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Endosseous dental implant failure (525.7)\(525.71) Osseointegration failure of dental implant\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.71''', NULL,
+ '(525.71) Osseointegration failure of dental implant', '(525.71) Osseointegration failure of dental implant', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Endosseous dental implant failure (525.7)\(525.72) Post-osseointegration biological failure of dental implant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Endosseous dental implant failure (525.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Endosseous dental implant failure (525.7)\(525.72) Post-osseointegration biological failure of dental implant\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.72''', NULL,
+ '(525.72) Post-osseointegration biological failure of dental implant', '(525.72) Post-osseointegration biological failure of dental implant', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Endosseous dental implant failure (525.7)\(525.73) Post-osseointegration mechanical failure of dental implant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Endosseous dental implant failure (525.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Endosseous dental implant failure (525.7)\(525.73) Post-osseointegration mechanical failure of dental implant\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.73''', NULL,
+ '(525.73) Post-osseointegration mechanical failure of dental implant', '(525.73) Post-osseointegration mechanical failure of dental implant', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Endosseous dental implant failure (525.7)\(525.79) Other endosseous dental implant failure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Endosseous dental implant failure (525.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Endosseous dental implant failure (525.7)\(525.79) Other endosseous dental implant failure\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.79''', NULL,
+ '(525.79) Other endosseous dental implant failure', '(525.79) Other endosseous dental implant failure', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.1''', NULL,
+ 'Loss of teeth due to trauma, extraction, or periodontal disease (525.1)', 'Loss of teeth due to trauma, extraction, or periodontal disease (525.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\(525.10) Acquired absence of teeth, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\(525.10) Acquired absence of teeth, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.10''', NULL,
+ '(525.10) Acquired absence of teeth, unspecified', '(525.10) Acquired absence of teeth, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\(525.11) Loss of teeth due to trauma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\(525.11) Loss of teeth due to trauma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.11''', NULL,
+ '(525.11) Loss of teeth due to trauma', '(525.11) Loss of teeth due to trauma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\(525.12) Loss of teeth due to periodontal disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\(525.12) Loss of teeth due to periodontal disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.12''', NULL,
+ '(525.12) Loss of teeth due to periodontal disease', '(525.12) Loss of teeth due to periodontal disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\(525.13) Loss of teeth due to caries\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\(525.13) Loss of teeth due to caries\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.13''', NULL,
+ '(525.13) Loss of teeth due to caries', '(525.13) Loss of teeth due to caries', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\(525.19) Other loss of teeth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Loss of teeth due to trauma, extraction, or periodontal disease (525.1)\(525.19) Other loss of teeth\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.19''', NULL,
+ '(525.19) Other loss of teeth', '(525.19) Other loss of teeth', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.5''', NULL,
+ 'Partial edentulism (525.5)', 'Partial edentulism (525.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\(525.50) Partial edentulism, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\(525.50) Partial edentulism, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.50''', NULL,
+ '(525.50) Partial edentulism, unspecified', '(525.50) Partial edentulism, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\(525.51) Partial edentulism, class I\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\(525.51) Partial edentulism, class I\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.51''', NULL,
+ '(525.51) Partial edentulism, class I', '(525.51) Partial edentulism, class I', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\(525.52) Partial edentulism, class II\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\(525.52) Partial edentulism, class II\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.52''', NULL,
+ '(525.52) Partial edentulism, class II', '(525.52) Partial edentulism, class II', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\(525.53) Partial edentulism, class III\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\(525.53) Partial edentulism, class III\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.53''', NULL,
+ '(525.53) Partial edentulism, class III', '(525.53) Partial edentulism, class III', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\(525.54) Partial edentulism, class IV\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Partial edentulism (525.5)\(525.54) Partial edentulism, class IV\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.54''', NULL,
+ '(525.54) Partial edentulism, class IV', '(525.54) Partial edentulism, class IV', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.6''', NULL,
+ 'Unsatisfactory restoration of tooth (525.6)', 'Unsatisfactory restoration of tooth (525.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.60) Unspecified unsatisfactory restoration of tooth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.60) Unspecified unsatisfactory restoration of tooth\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.60''', NULL,
+ '(525.60) Unspecified unsatisfactory restoration of tooth', '(525.60) Unspecified unsatisfactory restoration of tooth', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.61) Open restoration margins\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.61) Open restoration margins\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.61''', NULL,
+ '(525.61) Open restoration margins', '(525.61) Open restoration margins', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.62) Unrepairable overhanging of dental restorative materials\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.62) Unrepairable overhanging of dental restorative materials\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.62''', NULL,
+ '(525.62) Unrepairable overhanging of dental restorative materials', '(525.62) Unrepairable overhanging of dental restorative materials', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.63) Fractured dental restorative material without loss of material\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.63) Fractured dental restorative material without loss of material\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.63''', NULL,
+ '(525.63) Fractured dental restorative material without loss of material', '(525.63) Fractured dental restorative material without loss of material', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.64) Fractured dental restorative material with loss of material\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.64) Fractured dental restorative material with loss of material\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.64''', NULL,
+ '(525.64) Fractured dental restorative material with loss of material', '(525.64) Fractured dental restorative material with loss of material', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.65) Contour of existing restoration of tooth biologically incompatible with oral health\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.65) Contour of existing restoration of tooth biologically incompatible with oral health\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.65''', NULL,
+ '(525.65) Contour of existing restoration of tooth biologically incompatible with oral health', '(525.65) Contour of existing restoration of tooth biologically incompatible with oral health', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.66) Allergy to existing dental restorative material\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.66) Allergy to existing dental restorative material\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.66''', NULL,
+ '(525.66) Allergy to existing dental restorative material', '(525.66) Allergy to existing dental restorative material', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.67) Poor aesthetics of existing restoration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.67) Poor aesthetics of existing restoration\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.67''', NULL,
+ '(525.67) Poor aesthetics of existing restoration', '(525.67) Poor aesthetics of existing restoration', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.69) Other unsatisfactory restoration of existing tooth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Diseases of oral cavity, salivary glands, and jaws (520-529.99)\Other diseases and conditions of the teeth and supporting structures (525)\Unsatisfactory restoration of tooth (525.6)\(525.69) Other unsatisfactory restoration of existing tooth\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''525.69''', NULL,
+ '(525.69) Other unsatisfactory restoration of existing tooth', '(525.69) Other unsatisfactory restoration of existing tooth', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''550'' AND ''553.99''', NULL,
+ 'Hernia of abdominal cavity (550-553.99)', 'Hernia of abdominal cavity (550-553.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550''', NULL,
+ 'Inguinal hernia (550)', 'Inguinal hernia (550)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with gangrene (550.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with gangrene (550.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550.0''', NULL,
+ 'Inguinal hernia, with gangrene (550.0)', 'Inguinal hernia, with gangrene (550.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with gangrene (550.0)\(550.00) Inguinal hernia, with gangrene, unilateral or unspecified (not specified as recurrent)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with gangrene (550.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with gangrene (550.0)\(550.00) Inguinal hernia, with gangrene, unilateral or unspecified (not specified as recurrent)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550.00) Inguinal hernia, with gangrene, unilateral or unspecified (not specified as recurrent''', NULL,
+ '(550.00) Inguinal hernia, with gangrene, unilateral or unspecified (not specified as recurrent)', '(550.00) Inguinal hernia, with gangrene, unilateral or unspecified (not specified as recurrent)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with gangrene (550.0)\(550.01) Inguinal hernia, with gangrene, unilateral or unspecified, recurrent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with gangrene (550.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with gangrene (550.0)\(550.01) Inguinal hernia, with gangrene, unilateral or unspecified, recurrent\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550.01''', NULL,
+ '(550.01) Inguinal hernia, with gangrene, unilateral or unspecified, recurrent', '(550.01) Inguinal hernia, with gangrene, unilateral or unspecified, recurrent', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with gangrene (550.0)\(550.02) Inguinal hernia, with gangrene, bilateral (not specified as recurrent)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with gangrene (550.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with gangrene (550.0)\(550.02) Inguinal hernia, with gangrene, bilateral (not specified as recurrent)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550.02) Inguinal hernia, with gangrene, bilateral (not specified as recurrent''', NULL,
+ '(550.02) Inguinal hernia, with gangrene, bilateral (not specified as recurrent)', '(550.02) Inguinal hernia, with gangrene, bilateral (not specified as recurrent)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with gangrene (550.0)\(550.03) Inguinal hernia, with gangrene, bilateral, recurrent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with gangrene (550.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with gangrene (550.0)\(550.03) Inguinal hernia, with gangrene, bilateral, recurrent\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550.03''', NULL,
+ '(550.03) Inguinal hernia, with gangrene, bilateral, recurrent', '(550.03) Inguinal hernia, with gangrene, bilateral, recurrent', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550.1''', NULL,
+ 'Inguinal hernia, with obstruction, without mention of gangrene (550.1)', 'Inguinal hernia, with obstruction, without mention of gangrene (550.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\(550.10) Inguinal hernia, with obstruction, without mention of gangrene, unilateral or unspecified (not specified as recurrent)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\(550.10) Inguinal hernia, with obstruction, without mention of gangrene, unilateral or unspecified (not specified as recurrent)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550.10) Inguinal hernia, with obstruction, without mention of gangrene, unilateral or unspecified (not specified as recurrent''', NULL,
+ '(550.10) Inguinal hernia, with obstruction, without mention of gangrene, unilateral or unspecified (not specified as recurrent)', '(550.10) Inguinal hernia, with obstruction, without mention of gangrene, unilateral or unspecified (not specified as recurrent)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\(550.11) Inguinal hernia, with obstruction, without mention of gangrene, unilateral or unspecified,recurrent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\(550.11) Inguinal hernia, with obstruction, without mention of gangrene, unilateral or unspecified,recurrent\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550.11''', NULL,
+ '(550.11) Inguinal hernia, with obstruction, without mention of gangrene, unilateral or unspecified,recurrent', '(550.11) Inguinal hernia, with obstruction, without mention of gangrene, unilateral or unspecified,recurrent', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\(550.12) Inguinal hernia, with obstruction, without mention of gangrene, bilateral (not specified as recurrent)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\(550.12) Inguinal hernia, with obstruction, without mention of gangrene, bilateral (not specified as recurrent)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550.12) Inguinal hernia, with obstruction, without mention of gangrene, bilateral (not specified as recurrent''', NULL,
+ '(550.12) Inguinal hernia, with obstruction, without mention of gangrene, bilateral (not specified as recurrent)', '(550.12) Inguinal hernia, with obstruction, without mention of gangrene, bilateral (not specified as recurrent)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\(550.13) Inguinal hernia, with obstruction, without mention of gangrene, bilateral, recurrent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, with obstruction, without mention of gangrene (550.1)\(550.13) Inguinal hernia, with obstruction, without mention of gangrene, bilateral, recurrent\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550.13''', NULL,
+ '(550.13) Inguinal hernia, with obstruction, without mention of gangrene, bilateral, recurrent', '(550.13) Inguinal hernia, with obstruction, without mention of gangrene, bilateral, recurrent', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, without mention of obstruction or gangrene (550.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, without mention of obstruction or gangrene (550.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550.9''', NULL,
+ 'Inguinal hernia, without mention of obstruction or gangrene (550.9)', 'Inguinal hernia, without mention of obstruction or gangrene (550.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, without mention of obstruction or gangrene (550.9)\(550.90) Inguinal hernia, without mention of obstruction or gangrene, unilateral or unspecified (not specified as recurrent)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, without mention of obstruction or gangrene (550.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, without mention of obstruction or gangrene (550.9)\(550.90) Inguinal hernia, without mention of obstruction or gangrene, unilateral or unspecified (not specified as recurrent)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550.90) Inguinal hernia, without mention of obstruction or gangrene, unilateral or unspecified (not specified as recurrent''', NULL,
+ '(550.90) Inguinal hernia, without mention of obstruction or gangrene, unilateral or unspecified (not specified as recurrent)', '(550.90) Inguinal hernia, without mention of obstruction or gangrene, unilateral or unspecified (not specified as recurrent)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, without mention of obstruction or gangrene (550.9)\(550.91) Inguinal hernia, without mention of obstruction or gangrene, unilateral or unspecified, recurrent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, without mention of obstruction or gangrene (550.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, without mention of obstruction or gangrene (550.9)\(550.91) Inguinal hernia, without mention of obstruction or gangrene, unilateral or unspecified, recurrent\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550.91''', NULL,
+ '(550.91) Inguinal hernia, without mention of obstruction or gangrene, unilateral or unspecified, recurrent', '(550.91) Inguinal hernia, without mention of obstruction or gangrene, unilateral or unspecified, recurrent', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, without mention of obstruction or gangrene (550.9)\(550.92) Inguinal hernia, without mention of obstruction or gangrene, bilateral (not specified as recurrent)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, without mention of obstruction or gangrene (550.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, without mention of obstruction or gangrene (550.9)\(550.92) Inguinal hernia, without mention of obstruction or gangrene, bilateral (not specified as recurrent)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550.92) Inguinal hernia, without mention of obstruction or gangrene, bilateral (not specified as recurrent''', NULL,
+ '(550.92) Inguinal hernia, without mention of obstruction or gangrene, bilateral (not specified as recurrent)', '(550.92) Inguinal hernia, without mention of obstruction or gangrene, bilateral (not specified as recurrent)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, without mention of obstruction or gangrene (550.9)\(550.93) Inguinal hernia, without mention of obstruction or gangrene, bilateral, recurrent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, without mention of obstruction or gangrene (550.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Inguinal hernia (550)\Inguinal hernia, without mention of obstruction or gangrene (550.9)\(550.93) Inguinal hernia, without mention of obstruction or gangrene, bilateral, recurrent\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''550.93''', NULL,
+ '(550.93) Inguinal hernia, without mention of obstruction or gangrene, bilateral, recurrent', '(550.93) Inguinal hernia, without mention of obstruction or gangrene, bilateral, recurrent', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''553''', NULL,
+ 'Other hernia of abdominal cavity without mention of obstruction or gangrene (553)', 'Other hernia of abdominal cavity without mention of obstruction or gangrene (553)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\(553.1) Umbilical hernia without mention of obstruction or gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\(553.1) Umbilical hernia without mention of obstruction or gangrene\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''553.1''', NULL,
+ '(553.1) Umbilical hernia without mention of obstruction or gangrene', '(553.1) Umbilical hernia without mention of obstruction or gangrene', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\(553.3) Diaphragmatic hernia without mention of obstruction or gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\(553.3) Diaphragmatic hernia without mention of obstruction or gangrene\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''553.3''', NULL,
+ '(553.3) Diaphragmatic hernia without mention of obstruction or gangrene', '(553.3) Diaphragmatic hernia without mention of obstruction or gangrene', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\(553.8) Hernia of other specified sites without mention of obstruction or gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\(553.8) Hernia of other specified sites without mention of obstruction or gangrene\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''553.8''', NULL,
+ '(553.8) Hernia of other specified sites without mention of obstruction or gangrene', '(553.8) Hernia of other specified sites without mention of obstruction or gangrene', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\(553.9) Hernia of unspecified site without mention of obstruction or gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\(553.9) Hernia of unspecified site without mention of obstruction or gangrene\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''553.9''', NULL,
+ '(553.9) Hernia of unspecified site without mention of obstruction or gangrene', '(553.9) Hernia of unspecified site without mention of obstruction or gangrene', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Femoral hernia without mention of obstruction or gangrene (553.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Femoral hernia without mention of obstruction or gangrene (553.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''553.0''', NULL,
+ 'Femoral hernia without mention of obstruction or gangrene (553.0)', 'Femoral hernia without mention of obstruction or gangrene (553.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Femoral hernia without mention of obstruction or gangrene (553.0)\(553.00) Femoral hernia without mention of obstruction of gangrene, unilateral or unspecified(not specified as recurrent)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Femoral hernia without mention of obstruction or gangrene (553.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Femoral hernia without mention of obstruction or gangrene (553.0)\(553.00) Femoral hernia without mention of obstruction of gangrene, unilateral or unspecified(not specified as recurrent)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''553.00) Femoral hernia without mention of obstruction of gangrene, unilateral or unspecified(not specified as recurrent''', NULL,
+ '(553.00) Femoral hernia without mention of obstruction of gangrene, unilateral or unspecified(not specified as recurrent)', '(553.00) Femoral hernia without mention of obstruction of gangrene, unilateral or unspecified(not specified as recurrent)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Femoral hernia without mention of obstruction or gangrene (553.0)\(553.01) Femoral hernia without mention of obstruction or gangrene, unilateral or unspecified, recurrent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Femoral hernia without mention of obstruction or gangrene (553.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Femoral hernia without mention of obstruction or gangrene (553.0)\(553.01) Femoral hernia without mention of obstruction or gangrene, unilateral or unspecified, recurrent\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''553.01''', NULL,
+ '(553.01) Femoral hernia without mention of obstruction or gangrene, unilateral or unspecified, recurrent', '(553.01) Femoral hernia without mention of obstruction or gangrene, unilateral or unspecified, recurrent', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Femoral hernia without mention of obstruction or gangrene (553.0)\(553.02) Femoral hernia without mention of obstruction or gangrene, bilateral (not specified as recurrent)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Femoral hernia without mention of obstruction or gangrene (553.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Femoral hernia without mention of obstruction or gangrene (553.0)\(553.02) Femoral hernia without mention of obstruction or gangrene, bilateral (not specified as recurrent)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''553.02) Femoral hernia without mention of obstruction or gangrene, bilateral (not specified as recurrent''', NULL,
+ '(553.02) Femoral hernia without mention of obstruction or gangrene, bilateral (not specified as recurrent)', '(553.02) Femoral hernia without mention of obstruction or gangrene, bilateral (not specified as recurrent)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Femoral hernia without mention of obstruction or gangrene (553.0)\(553.03) Femoral hernia without mention of obstruction or gangrene, bilateral,recurrent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Femoral hernia without mention of obstruction or gangrene (553.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Femoral hernia without mention of obstruction or gangrene (553.0)\(553.03) Femoral hernia without mention of obstruction or gangrene, bilateral,recurrent\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''553.03''', NULL,
+ '(553.03) Femoral hernia without mention of obstruction or gangrene, bilateral,recurrent', '(553.03) Femoral hernia without mention of obstruction or gangrene, bilateral,recurrent', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Ventral hernia without mention of obstruction or gangrene (553.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Ventral hernia without mention of obstruction or gangrene (553.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''553.2''', NULL,
+ 'Ventral hernia without mention of obstruction or gangrene (553.2)', 'Ventral hernia without mention of obstruction or gangrene (553.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Ventral hernia without mention of obstruction or gangrene (553.2)\(553.20) Ventral, unspecified, hernia without mention of obstruction or gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Ventral hernia without mention of obstruction or gangrene (553.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Ventral hernia without mention of obstruction or gangrene (553.2)\(553.20) Ventral, unspecified, hernia without mention of obstruction or gangrene\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''553.20''', NULL,
+ '(553.20) Ventral, unspecified, hernia without mention of obstruction or gangrene', '(553.20) Ventral, unspecified, hernia without mention of obstruction or gangrene', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Ventral hernia without mention of obstruction or gangrene (553.2)\(553.21) Incisional hernia without mention of obstruction or gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Ventral hernia without mention of obstruction or gangrene (553.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Ventral hernia without mention of obstruction or gangrene (553.2)\(553.21) Incisional hernia without mention of obstruction or gangrene\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''553.21''', NULL,
+ '(553.21) Incisional hernia without mention of obstruction or gangrene', '(553.21) Incisional hernia without mention of obstruction or gangrene', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Ventral hernia without mention of obstruction or gangrene (553.2)\(553.29) Other ventral hernia without mention of obstruction or gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Ventral hernia without mention of obstruction or gangrene (553.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity without mention of obstruction or gangrene (553)\Ventral hernia without mention of obstruction or gangrene (553.2)\(553.29) Other ventral hernia without mention of obstruction or gangrene\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''553.29''', NULL,
+ '(553.29) Other ventral hernia without mention of obstruction or gangrene', '(553.29) Other ventral hernia without mention of obstruction or gangrene', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''551''', NULL,
+ 'Other hernia of abdominal cavity, with gangrene (551)', 'Other hernia of abdominal cavity, with gangrene (551)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\(551.1) Umbilical hernia with gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\(551.1) Umbilical hernia with gangrene\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''551.1''', NULL,
+ '(551.1) Umbilical hernia with gangrene', '(551.1) Umbilical hernia with gangrene', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\(551.3) Diaphragmatic hernia with gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\(551.3) Diaphragmatic hernia with gangrene\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''551.3''', NULL,
+ '(551.3) Diaphragmatic hernia with gangrene', '(551.3) Diaphragmatic hernia with gangrene', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\(551.8) Hernia of other specified sites, with gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\(551.8) Hernia of other specified sites, with gangrene\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''551.8''', NULL,
+ '(551.8) Hernia of other specified sites, with gangrene', '(551.8) Hernia of other specified sites, with gangrene', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\(551.9) Hernia of unspecified site, with gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\(551.9) Hernia of unspecified site, with gangrene\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''551.9''', NULL,
+ '(551.9) Hernia of unspecified site, with gangrene', '(551.9) Hernia of unspecified site, with gangrene', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Femoral hernia with gangrene (551.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Femoral hernia with gangrene (551.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''551.0''', NULL,
+ 'Femoral hernia with gangrene (551.0)', 'Femoral hernia with gangrene (551.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Femoral hernia with gangrene (551.0)\(551.00) Femoral hernia with gangrene, unilateral or unspecified (not specified as recurrent)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Femoral hernia with gangrene (551.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Femoral hernia with gangrene (551.0)\(551.00) Femoral hernia with gangrene, unilateral or unspecified (not specified as recurrent)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''551.00) Femoral hernia with gangrene, unilateral or unspecified (not specified as recurrent''', NULL,
+ '(551.00) Femoral hernia with gangrene, unilateral or unspecified (not specified as recurrent)', '(551.00) Femoral hernia with gangrene, unilateral or unspecified (not specified as recurrent)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Femoral hernia with gangrene (551.0)\(551.01) Femoral hernia with gangrene, unilateral or unspecified, recurrent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Femoral hernia with gangrene (551.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Femoral hernia with gangrene (551.0)\(551.01) Femoral hernia with gangrene, unilateral or unspecified, recurrent\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''551.01''', NULL,
+ '(551.01) Femoral hernia with gangrene, unilateral or unspecified, recurrent', '(551.01) Femoral hernia with gangrene, unilateral or unspecified, recurrent', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Femoral hernia with gangrene (551.0)\(551.02) Femoral hernia with gangrene, bilateral (not specified as recurrent)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Femoral hernia with gangrene (551.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Femoral hernia with gangrene (551.0)\(551.02) Femoral hernia with gangrene, bilateral (not specified as recurrent)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''551.02) Femoral hernia with gangrene, bilateral (not specified as recurrent''', NULL,
+ '(551.02) Femoral hernia with gangrene, bilateral (not specified as recurrent)', '(551.02) Femoral hernia with gangrene, bilateral (not specified as recurrent)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Femoral hernia with gangrene (551.0)\(551.03) Femoral hernia with gangrene, bilateral, recurrent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Femoral hernia with gangrene (551.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Femoral hernia with gangrene (551.0)\(551.03) Femoral hernia with gangrene, bilateral, recurrent\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''551.03''', NULL,
+ '(551.03) Femoral hernia with gangrene, bilateral, recurrent', '(551.03) Femoral hernia with gangrene, bilateral, recurrent', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Ventral hernia with gangrene (551.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Ventral hernia with gangrene (551.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''551.2''', NULL,
+ 'Ventral hernia with gangrene (551.2)', 'Ventral hernia with gangrene (551.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Ventral hernia with gangrene (551.2)\(551.20) Ventral hernia, unspecified, with gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Ventral hernia with gangrene (551.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Ventral hernia with gangrene (551.2)\(551.20) Ventral hernia, unspecified, with gangrene\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''551.20''', NULL,
+ '(551.20) Ventral hernia, unspecified, with gangrene', '(551.20) Ventral hernia, unspecified, with gangrene', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Ventral hernia with gangrene (551.2)\(551.21) Incisional ventral hernia, with gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Ventral hernia with gangrene (551.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Ventral hernia with gangrene (551.2)\(551.21) Incisional ventral hernia, with gangrene\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''551.21''', NULL,
+ '(551.21) Incisional ventral hernia, with gangrene', '(551.21) Incisional ventral hernia, with gangrene', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Ventral hernia with gangrene (551.2)\(551.29) Other ventral hernia with gangrene\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Ventral hernia with gangrene (551.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with gangrene (551)\Ventral hernia with gangrene (551.2)\(551.29) Other ventral hernia with gangrene\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''551.29''', NULL,
+ '(551.29) Other ventral hernia with gangrene', '(551.29) Other ventral hernia with gangrene', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''552''', NULL,
+ 'Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)', 'Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\(552.1) Umbilical hernia with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\(552.1) Umbilical hernia with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''552.1''', NULL,
+ '(552.1) Umbilical hernia with obstruction', '(552.1) Umbilical hernia with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\(552.3) Diaphragmatic hernia with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\(552.3) Diaphragmatic hernia with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''552.3''', NULL,
+ '(552.3) Diaphragmatic hernia with obstruction', '(552.3) Diaphragmatic hernia with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\(552.8) Hernia of other specified sites, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\(552.8) Hernia of other specified sites, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''552.8''', NULL,
+ '(552.8) Hernia of other specified sites, with obstruction', '(552.8) Hernia of other specified sites, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\(552.9) Hernia of unspecified site, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\(552.9) Hernia of unspecified site, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''552.9''', NULL,
+ '(552.9) Hernia of unspecified site, with obstruction', '(552.9) Hernia of unspecified site, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Femoral hernia with obstruction (552.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Femoral hernia with obstruction (552.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''552.0''', NULL,
+ 'Femoral hernia with obstruction (552.0)', 'Femoral hernia with obstruction (552.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Femoral hernia with obstruction (552.0)\(552.00) Femoral hernia with obstruction, unilateral or unspecified (not specified as recurrent)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Femoral hernia with obstruction (552.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Femoral hernia with obstruction (552.0)\(552.00) Femoral hernia with obstruction, unilateral or unspecified (not specified as recurrent)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''552.00) Femoral hernia with obstruction, unilateral or unspecified (not specified as recurrent''', NULL,
+ '(552.00) Femoral hernia with obstruction, unilateral or unspecified (not specified as recurrent)', '(552.00) Femoral hernia with obstruction, unilateral or unspecified (not specified as recurrent)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Femoral hernia with obstruction (552.0)\(552.01) Femoral hernia with obstruction, unilateral or unspecified, recurrent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Femoral hernia with obstruction (552.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Femoral hernia with obstruction (552.0)\(552.01) Femoral hernia with obstruction, unilateral or unspecified, recurrent\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''552.01''', NULL,
+ '(552.01) Femoral hernia with obstruction, unilateral or unspecified, recurrent', '(552.01) Femoral hernia with obstruction, unilateral or unspecified, recurrent', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Femoral hernia with obstruction (552.0)\(552.02) Femoral hernia with obstruction, bilateral (not specified as recurrent)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Femoral hernia with obstruction (552.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Femoral hernia with obstruction (552.0)\(552.02) Femoral hernia with obstruction, bilateral (not specified as recurrent)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''552.02) Femoral hernia with obstruction, bilateral (not specified as recurrent''', NULL,
+ '(552.02) Femoral hernia with obstruction, bilateral (not specified as recurrent)', '(552.02) Femoral hernia with obstruction, bilateral (not specified as recurrent)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Femoral hernia with obstruction (552.0)\(552.03) Femoral hernia with obstruction, bilateral, recurrent\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Femoral hernia with obstruction (552.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Femoral hernia with obstruction (552.0)\(552.03) Femoral hernia with obstruction, bilateral, recurrent\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''552.03''', NULL,
+ '(552.03) Femoral hernia with obstruction, bilateral, recurrent', '(552.03) Femoral hernia with obstruction, bilateral, recurrent', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Ventral hernia with obstruction (552.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Ventral hernia with obstruction (552.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''552.2''', NULL,
+ 'Ventral hernia with obstruction (552.2)', 'Ventral hernia with obstruction (552.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Ventral hernia with obstruction (552.2)\(552.20) Ventral, unspecified, hernia with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Ventral hernia with obstruction (552.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Ventral hernia with obstruction (552.2)\(552.20) Ventral, unspecified, hernia with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''552.20''', NULL,
+ '(552.20) Ventral, unspecified, hernia with obstruction', '(552.20) Ventral, unspecified, hernia with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Ventral hernia with obstruction (552.2)\(552.21) Incisional ventral hernia with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Ventral hernia with obstruction (552.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Ventral hernia with obstruction (552.2)\(552.21) Incisional ventral hernia with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''552.21''', NULL,
+ '(552.21) Incisional ventral hernia with obstruction', '(552.21) Incisional ventral hernia with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Ventral hernia with obstruction (552.2)\(552.29) Other ventral hernia with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Ventral hernia with obstruction (552.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Hernia of abdominal cavity (550-553.99)\Other hernia of abdominal cavity, with obstruction, but without mention of gangrene (552)\Ventral hernia with obstruction (552.2)\(552.29) Other ventral hernia with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''552.29''', NULL,
+ '(552.29) Other ventral hernia with obstruction', '(552.29) Other ventral hernia with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''555'' AND ''558.99''', NULL,
+ 'Noninfectious enteritis and colitis (555-558.99)', 'Noninfectious enteritis and colitis (555-558.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''558''', NULL,
+ 'Other and unspecified noninfectious gastroenteritis and colitis (558)', 'Other and unspecified noninfectious gastroenteritis and colitis (558)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\(558.1) Gastroenteritis and colitis due to radiation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\(558.1) Gastroenteritis and colitis due to radiation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''558.1''', NULL,
+ '(558.1) Gastroenteritis and colitis due to radiation', '(558.1) Gastroenteritis and colitis due to radiation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\(558.2) Toxic gastroenteritis and colitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\(558.2) Toxic gastroenteritis and colitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''558.2''', NULL,
+ '(558.2) Toxic gastroenteritis and colitis', '(558.2) Toxic gastroenteritis and colitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\(558.3) Allergic gastroenteritis and colitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\(558.3) Allergic gastroenteritis and colitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''558.3''', NULL,
+ '(558.3) Allergic gastroenteritis and colitis', '(558.3) Allergic gastroenteritis and colitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\(558.9) Other and unspecified noninfectious gastroenteritis and colitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\(558.9) Other and unspecified noninfectious gastroenteritis and colitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''558.9''', NULL,
+ '(558.9) Other and unspecified noninfectious gastroenteritis and colitis', '(558.9) Other and unspecified noninfectious gastroenteritis and colitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\Eosinophilic gastroenteritis and colitis (558.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\Eosinophilic gastroenteritis and colitis (558.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''558.4''', NULL,
+ 'Eosinophilic gastroenteritis and colitis (558.4)', 'Eosinophilic gastroenteritis and colitis (558.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\Eosinophilic gastroenteritis and colitis (558.4)\(558.41) Eosinophilic gastroenteritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\Eosinophilic gastroenteritis and colitis (558.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\Eosinophilic gastroenteritis and colitis (558.4)\(558.41) Eosinophilic gastroenteritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''558.41''', NULL,
+ '(558.41) Eosinophilic gastroenteritis', '(558.41) Eosinophilic gastroenteritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\Eosinophilic gastroenteritis and colitis (558.4)\(558.42) Eosinophilic colitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\Eosinophilic gastroenteritis and colitis (558.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Other and unspecified noninfectious gastroenteritis and colitis (558)\Eosinophilic gastroenteritis and colitis (558.4)\(558.42) Eosinophilic colitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''558.42''', NULL,
+ '(558.42) Eosinophilic colitis', '(558.42) Eosinophilic colitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Regional enteritis (555)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Regional enteritis (555)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''555''', NULL,
+ 'Regional enteritis (555)', 'Regional enteritis (555)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Regional enteritis (555)\(555.0) Regional enteritis of small intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Regional enteritis (555)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Regional enteritis (555)\(555.0) Regional enteritis of small intestine\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''555.0''', NULL,
+ '(555.0) Regional enteritis of small intestine', '(555.0) Regional enteritis of small intestine', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Regional enteritis (555)\(555.1) Regional enteritis of large intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Regional enteritis (555)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Regional enteritis (555)\(555.1) Regional enteritis of large intestine\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''555.1''', NULL,
+ '(555.1) Regional enteritis of large intestine', '(555.1) Regional enteritis of large intestine', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Regional enteritis (555)\(555.2) Regional enteritis of small intestine with large intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Regional enteritis (555)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Regional enteritis (555)\(555.2) Regional enteritis of small intestine with large intestine\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''555.2''', NULL,
+ '(555.2) Regional enteritis of small intestine with large intestine', '(555.2) Regional enteritis of small intestine with large intestine', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Regional enteritis (555)\(555.9) Regional enteritis of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Regional enteritis (555)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Regional enteritis (555)\(555.9) Regional enteritis of unspecified site\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''555.9''', NULL,
+ '(555.9) Regional enteritis of unspecified site', '(555.9) Regional enteritis of unspecified site', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''556''', NULL,
+ 'Ulcerative colitis (556)', 'Ulcerative colitis (556)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.0) Ulcerative (chronic) enterocolitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.0) Ulcerative (chronic) enterocolitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''556.0) Ulcerative (chronic''', NULL,
+ '(556.0) Ulcerative (chronic) enterocolitis', '(556.0) Ulcerative (chronic) enterocolitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.1) Ulcerative (chronic) ileocolitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.1) Ulcerative (chronic) ileocolitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''556.1) Ulcerative (chronic''', NULL,
+ '(556.1) Ulcerative (chronic) ileocolitis', '(556.1) Ulcerative (chronic) ileocolitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.2) Ulcerative (chronic) proctitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.2) Ulcerative (chronic) proctitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''556.2) Ulcerative (chronic''', NULL,
+ '(556.2) Ulcerative (chronic) proctitis', '(556.2) Ulcerative (chronic) proctitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.3) Ulcerative (chronic) proctosigmoiditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.3) Ulcerative (chronic) proctosigmoiditis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''556.3) Ulcerative (chronic''', NULL,
+ '(556.3) Ulcerative (chronic) proctosigmoiditis', '(556.3) Ulcerative (chronic) proctosigmoiditis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.4) Pseudopolyposis of colon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.4) Pseudopolyposis of colon\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''556.4''', NULL,
+ '(556.4) Pseudopolyposis of colon', '(556.4) Pseudopolyposis of colon', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.5) Left-sided ulcerative (chronic) colitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.5) Left-sided ulcerative (chronic) colitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''556.5) Left'' AND ''sided ulcerative (chronic''', NULL,
+ '(556.5) Left-sided ulcerative (chronic) colitis', '(556.5) Left-sided ulcerative (chronic) colitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.6) Universal ulcerative (chronic) colitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.6) Universal ulcerative (chronic) colitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''556.6) Universal ulcerative (chronic''', NULL,
+ '(556.6) Universal ulcerative (chronic) colitis', '(556.6) Universal ulcerative (chronic) colitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.8) Other ulcerative colitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.8) Other ulcerative colitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''556.8''', NULL,
+ '(556.8) Other ulcerative colitis', '(556.8) Other ulcerative colitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.9) Ulcerative colitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Ulcerative colitis (556)\(556.9) Ulcerative colitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''556.9''', NULL,
+ '(556.9) Ulcerative colitis, unspecified', '(556.9) Ulcerative colitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Vascular insufficiency of intestine (557)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Vascular insufficiency of intestine (557)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''557''', NULL,
+ 'Vascular insufficiency of intestine (557)', 'Vascular insufficiency of intestine (557)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Vascular insufficiency of intestine (557)\(557.0) Acute vascular insufficiency of intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Vascular insufficiency of intestine (557)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Vascular insufficiency of intestine (557)\(557.0) Acute vascular insufficiency of intestine\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''557.0''', NULL,
+ '(557.0) Acute vascular insufficiency of intestine', '(557.0) Acute vascular insufficiency of intestine', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Vascular insufficiency of intestine (557)\(557.1) Chronic vascular insufficiency of intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Vascular insufficiency of intestine (557)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Vascular insufficiency of intestine (557)\(557.1) Chronic vascular insufficiency of intestine\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''557.1''', NULL,
+ '(557.1) Chronic vascular insufficiency of intestine', '(557.1) Chronic vascular insufficiency of intestine', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Vascular insufficiency of intestine (557)\(557.9) Unspecified vascular insufficiency of intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Vascular insufficiency of intestine (557)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Noninfectious enteritis and colitis (555-558.99)\Vascular insufficiency of intestine (557)\(557.9) Unspecified vascular insufficiency of intestine\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''557.9''', NULL,
+ '(557.9) Unspecified vascular insufficiency of intestine', '(557.9) Unspecified vascular insufficiency of intestine', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''570'' AND ''579.99''', NULL,
+ 'Other diseases of digestive system (570-579.99)', 'Other diseases of digestive system (570-579.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\(570) Acute and subacute necrosis of liver\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\(570) Acute and subacute necrosis of liver\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''570''', NULL,
+ '(570) Acute and subacute necrosis of liver', '(570) Acute and subacute necrosis of liver', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574''', NULL,
+ 'Cholelithiasis (574)', 'Cholelithiasis (574)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with acute cholecystitis (574.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with acute cholecystitis (574.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.3''', NULL,
+ 'Calculus of bile duct with acute cholecystitis (574.3)', 'Calculus of bile duct with acute cholecystitis (574.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with acute cholecystitis (574.3)\(574.30) Calculus of bile duct with acute cholecystitis, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with acute cholecystitis (574.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with acute cholecystitis (574.3)\(574.30) Calculus of bile duct with acute cholecystitis, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.30''', NULL,
+ '(574.30) Calculus of bile duct with acute cholecystitis, without mention of obstruction', '(574.30) Calculus of bile duct with acute cholecystitis, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with acute cholecystitis (574.3)\(574.31) Calculus of bile duct with acute cholecystitis, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with acute cholecystitis (574.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with acute cholecystitis (574.3)\(574.31) Calculus of bile duct with acute cholecystitis, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.31''', NULL,
+ '(574.31) Calculus of bile duct with acute cholecystitis, with obstruction', '(574.31) Calculus of bile duct with acute cholecystitis, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with other cholecystitis (574.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with other cholecystitis (574.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.4''', NULL,
+ 'Calculus of bile duct with other cholecystitis (574.4)', 'Calculus of bile duct with other cholecystitis (574.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with other cholecystitis (574.4)\(574.40) Calculus of bile duct with other cholecystitis, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with other cholecystitis (574.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with other cholecystitis (574.4)\(574.40) Calculus of bile duct with other cholecystitis, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.40''', NULL,
+ '(574.40) Calculus of bile duct with other cholecystitis, without mention of obstruction', '(574.40) Calculus of bile duct with other cholecystitis, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with other cholecystitis (574.4)\(574.41) Calculus of bile duct with other cholecystitis, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with other cholecystitis (574.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct with other cholecystitis (574.4)\(574.41) Calculus of bile duct with other cholecystitis, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.41''', NULL,
+ '(574.41) Calculus of bile duct with other cholecystitis, with obstruction', '(574.41) Calculus of bile duct with other cholecystitis, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct without mention of cholecystitis (574.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct without mention of cholecystitis (574.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.5''', NULL,
+ 'Calculus of bile duct without mention of cholecystitis (574.5)', 'Calculus of bile duct without mention of cholecystitis (574.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct without mention of cholecystitis (574.5)\(574.50) Calculus of bile duct without mention of cholecystitis, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct without mention of cholecystitis (574.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct without mention of cholecystitis (574.5)\(574.50) Calculus of bile duct without mention of cholecystitis, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.50''', NULL,
+ '(574.50) Calculus of bile duct without mention of cholecystitis, without mention of obstruction', '(574.50) Calculus of bile duct without mention of cholecystitis, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct without mention of cholecystitis (574.5)\(574.51) Calculus of bile duct without mention of cholecystitis, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct without mention of cholecystitis (574.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of bile duct without mention of cholecystitis (574.5)\(574.51) Calculus of bile duct without mention of cholecystitis, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.51''', NULL,
+ '(574.51) Calculus of bile duct without mention of cholecystitis, with obstruction', '(574.51) Calculus of bile duct without mention of cholecystitis, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute and chronic cholecystitis (574.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute and chronic cholecystitis (574.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.8''', NULL,
+ 'Calculus of gallbladder and bile duct with acute and chronic cholecystitis (574.8)', 'Calculus of gallbladder and bile duct with acute and chronic cholecystitis (574.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute and chronic cholecystitis (574.8)\(574.80) Calculus of gallbladder and bile duct with acute and chronic cholecystitis, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute and chronic cholecystitis (574.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute and chronic cholecystitis (574.8)\(574.80) Calculus of gallbladder and bile duct with acute and chronic cholecystitis, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.80''', NULL,
+ '(574.80) Calculus of gallbladder and bile duct with acute and chronic cholecystitis, without mention of obstruction', '(574.80) Calculus of gallbladder and bile duct with acute and chronic cholecystitis, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute and chronic cholecystitis (574.8)\(574.81) Calculus of gallbladder and bile duct with acute and chronic cholecystitis, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute and chronic cholecystitis (574.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute and chronic cholecystitis (574.8)\(574.81) Calculus of gallbladder and bile duct with acute and chronic cholecystitis, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.81''', NULL,
+ '(574.81) Calculus of gallbladder and bile duct with acute and chronic cholecystitis, with obstruction', '(574.81) Calculus of gallbladder and bile duct with acute and chronic cholecystitis, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute cholecystitis (574.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute cholecystitis (574.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.6''', NULL,
+ 'Calculus of gallbladder and bile duct with acute cholecystitis (574.6)', 'Calculus of gallbladder and bile duct with acute cholecystitis (574.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute cholecystitis (574.6)\(574.60) Calculus of gallbladder and bile duct with acute cholecystitis, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute cholecystitis (574.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute cholecystitis (574.6)\(574.60) Calculus of gallbladder and bile duct with acute cholecystitis, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.60''', NULL,
+ '(574.60) Calculus of gallbladder and bile duct with acute cholecystitis, without mention of obstruction', '(574.60) Calculus of gallbladder and bile duct with acute cholecystitis, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute cholecystitis (574.6)\(574.61) Calculus of gallbladder and bile duct with acute cholecystitis, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute cholecystitis (574.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with acute cholecystitis (574.6)\(574.61) Calculus of gallbladder and bile duct with acute cholecystitis, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.61''', NULL,
+ '(574.61) Calculus of gallbladder and bile duct with acute cholecystitis, with obstruction', '(574.61) Calculus of gallbladder and bile duct with acute cholecystitis, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with other cholecystitis (574.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with other cholecystitis (574.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.7''', NULL,
+ 'Calculus of gallbladder and bile duct with other cholecystitis (574.7)', 'Calculus of gallbladder and bile duct with other cholecystitis (574.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with other cholecystitis (574.7)\(574.70) Calculus of gallbladder and bile duct with other cholecystitis, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with other cholecystitis (574.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with other cholecystitis (574.7)\(574.70) Calculus of gallbladder and bile duct with other cholecystitis, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.70''', NULL,
+ '(574.70) Calculus of gallbladder and bile duct with other cholecystitis, without mention of obstruction', '(574.70) Calculus of gallbladder and bile duct with other cholecystitis, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with other cholecystitis (574.7)\(574.71) Calculus of gallbladder and bile duct with other cholecystitis, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with other cholecystitis (574.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct with other cholecystitis (574.7)\(574.71) Calculus of gallbladder and bile duct with other cholecystitis, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.71''', NULL,
+ '(574.71) Calculus of gallbladder and bile duct with other cholecystitis, with obstruction', '(574.71) Calculus of gallbladder and bile duct with other cholecystitis, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct without cholecystitis (574.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct without cholecystitis (574.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.9''', NULL,
+ 'Calculus of gallbladder and bile duct without cholecystitis (574.9)', 'Calculus of gallbladder and bile duct without cholecystitis (574.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct without cholecystitis (574.9)\(574.90) Calculus of gallbladder and bile duct without cholecystitis, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct without cholecystitis (574.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct without cholecystitis (574.9)\(574.90) Calculus of gallbladder and bile duct without cholecystitis, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.90''', NULL,
+ '(574.90) Calculus of gallbladder and bile duct without cholecystitis, without mention of obstruction', '(574.90) Calculus of gallbladder and bile duct without cholecystitis, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct without cholecystitis (574.9)\(574.91) Calculus of gallbladder and bile duct without cholecystitis, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct without cholecystitis (574.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder and bile duct without cholecystitis (574.9)\(574.91) Calculus of gallbladder and bile duct without cholecystitis, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.91''', NULL,
+ '(574.91) Calculus of gallbladder and bile duct without cholecystitis, with obstruction', '(574.91) Calculus of gallbladder and bile duct without cholecystitis, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with acute cholecystitis (574.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with acute cholecystitis (574.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.0''', NULL,
+ 'Calculus of gallbladder with acute cholecystitis (574.0)', 'Calculus of gallbladder with acute cholecystitis (574.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with acute cholecystitis (574.0)\(574.00) Calculus of gallbladder with acute cholecystitis, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with acute cholecystitis (574.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with acute cholecystitis (574.0)\(574.00) Calculus of gallbladder with acute cholecystitis, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.00''', NULL,
+ '(574.00) Calculus of gallbladder with acute cholecystitis, without mention of obstruction', '(574.00) Calculus of gallbladder with acute cholecystitis, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with acute cholecystitis (574.0)\(574.01) Calculus of gallbladder with acute cholecystitis, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with acute cholecystitis (574.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with acute cholecystitis (574.0)\(574.01) Calculus of gallbladder with acute cholecystitis, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.01''', NULL,
+ '(574.01) Calculus of gallbladder with acute cholecystitis, with obstruction', '(574.01) Calculus of gallbladder with acute cholecystitis, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with other cholecystitis (574.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with other cholecystitis (574.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.1''', NULL,
+ 'Calculus of gallbladder with other cholecystitis (574.1)', 'Calculus of gallbladder with other cholecystitis (574.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with other cholecystitis (574.1)\(574.10) Calculus of gallbladder with other cholecystitis, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with other cholecystitis (574.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with other cholecystitis (574.1)\(574.10) Calculus of gallbladder with other cholecystitis, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.10''', NULL,
+ '(574.10) Calculus of gallbladder with other cholecystitis, without mention of obstruction', '(574.10) Calculus of gallbladder with other cholecystitis, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with other cholecystitis (574.1)\(574.11) Calculus of gallbladder with other cholecystitis, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with other cholecystitis (574.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder with other cholecystitis (574.1)\(574.11) Calculus of gallbladder with other cholecystitis, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.11''', NULL,
+ '(574.11) Calculus of gallbladder with other cholecystitis, with obstruction', '(574.11) Calculus of gallbladder with other cholecystitis, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder without mention of cholecystitis (574.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder without mention of cholecystitis (574.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.2''', NULL,
+ 'Calculus of gallbladder without mention of cholecystitis (574.2)', 'Calculus of gallbladder without mention of cholecystitis (574.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder without mention of cholecystitis (574.2)\(574.20) Calculus of gallbladder without mention of cholecystitis, without mention of obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder without mention of cholecystitis (574.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder without mention of cholecystitis (574.2)\(574.20) Calculus of gallbladder without mention of cholecystitis, without mention of obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.20''', NULL,
+ '(574.20) Calculus of gallbladder without mention of cholecystitis, without mention of obstruction', '(574.20) Calculus of gallbladder without mention of cholecystitis, without mention of obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder without mention of cholecystitis (574.2)\(574.21) Calculus of gallbladder without mention of cholecystitis, with obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder without mention of cholecystitis (574.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Cholelithiasis (574)\Calculus of gallbladder without mention of cholecystitis (574.2)\(574.21) Calculus of gallbladder without mention of cholecystitis, with obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''574.21''', NULL,
+ '(574.21) Calculus of gallbladder without mention of cholecystitis, with obstruction', '(574.21) Calculus of gallbladder without mention of cholecystitis, with obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''571''', NULL,
+ 'Chronic liver disease and cirrhosis (571)', 'Chronic liver disease and cirrhosis (571)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.0) Alcoholic fatty liver\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.0) Alcoholic fatty liver\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''571.0''', NULL,
+ '(571.0) Alcoholic fatty liver', '(571.0) Alcoholic fatty liver', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.1) Acute alcoholic hepatitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.1) Acute alcoholic hepatitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''571.1''', NULL,
+ '(571.1) Acute alcoholic hepatitis', '(571.1) Acute alcoholic hepatitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.2) Alcoholic cirrhosis of liver\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.2) Alcoholic cirrhosis of liver\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''571.2''', NULL,
+ '(571.2) Alcoholic cirrhosis of liver', '(571.2) Alcoholic cirrhosis of liver', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.3) Alcoholic liver damage, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.3) Alcoholic liver damage, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''571.3''', NULL,
+ '(571.3) Alcoholic liver damage, unspecified', '(571.3) Alcoholic liver damage, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.5) Cirrhosis of liver without mention of alcohol\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.5) Cirrhosis of liver without mention of alcohol\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''571.5''', NULL,
+ '(571.5) Cirrhosis of liver without mention of alcohol', '(571.5) Cirrhosis of liver without mention of alcohol', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.6) Biliary cirrhosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.6) Biliary cirrhosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''571.6''', NULL,
+ '(571.6) Biliary cirrhosis', '(571.6) Biliary cirrhosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.8) Other chronic nonalcoholic liver disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.8) Other chronic nonalcoholic liver disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''571.8''', NULL,
+ '(571.8) Other chronic nonalcoholic liver disease', '(571.8) Other chronic nonalcoholic liver disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.9) Unspecified chronic liver disease without mention of alcohol\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\(571.9) Unspecified chronic liver disease without mention of alcohol\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''571.9''', NULL,
+ '(571.9) Unspecified chronic liver disease without mention of alcohol', '(571.9) Unspecified chronic liver disease without mention of alcohol', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\Chronic hepatitis (571.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\Chronic hepatitis (571.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''571.4''', NULL,
+ 'Chronic hepatitis (571.4)', 'Chronic hepatitis (571.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\Chronic hepatitis (571.4)\(571.40) Chronic hepatitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\Chronic hepatitis (571.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\Chronic hepatitis (571.4)\(571.40) Chronic hepatitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''571.40''', NULL,
+ '(571.40) Chronic hepatitis, unspecified', '(571.40) Chronic hepatitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\Chronic hepatitis (571.4)\(571.41) Chronic persistent hepatitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\Chronic hepatitis (571.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\Chronic hepatitis (571.4)\(571.41) Chronic persistent hepatitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''571.41''', NULL,
+ '(571.41) Chronic persistent hepatitis', '(571.41) Chronic persistent hepatitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\Chronic hepatitis (571.4)\(571.42) Autoimmune hepatitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\Chronic hepatitis (571.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\Chronic hepatitis (571.4)\(571.42) Autoimmune hepatitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''571.42''', NULL,
+ '(571.42) Autoimmune hepatitis', '(571.42) Autoimmune hepatitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\Chronic hepatitis (571.4)\(571.49) Other chronic hepatitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\Chronic hepatitis (571.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Chronic liver disease and cirrhosis (571)\Chronic hepatitis (571.4)\(571.49) Other chronic hepatitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''571.49''', NULL,
+ '(571.49) Other chronic hepatitis', '(571.49) Other chronic hepatitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''577''', NULL,
+ 'Diseases of pancreas (577)', 'Diseases of pancreas (577)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\(577.0) Acute pancreatitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\(577.0) Acute pancreatitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''577.0''', NULL,
+ '(577.0) Acute pancreatitis', '(577.0) Acute pancreatitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\(577.1) Chronic pancreatitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\(577.1) Chronic pancreatitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''577.1''', NULL,
+ '(577.1) Chronic pancreatitis', '(577.1) Chronic pancreatitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\(577.2) Cyst and pseudocyst of pancreas\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\(577.2) Cyst and pseudocyst of pancreas\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''577.2''', NULL,
+ '(577.2) Cyst and pseudocyst of pancreas', '(577.2) Cyst and pseudocyst of pancreas', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\(577.8) Other specified diseases of pancreas\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\(577.8) Other specified diseases of pancreas\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''577.8''', NULL,
+ '(577.8) Other specified diseases of pancreas', '(577.8) Other specified diseases of pancreas', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\(577.9) Unspecified disease of pancreas\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Diseases of pancreas (577)\(577.9) Unspecified disease of pancreas\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''577.9''', NULL,
+ '(577.9) Unspecified disease of pancreas', '(577.9) Unspecified disease of pancreas', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Gastrointestinal hemorrhage (578)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Gastrointestinal hemorrhage (578)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''578''', NULL,
+ 'Gastrointestinal hemorrhage (578)', 'Gastrointestinal hemorrhage (578)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Gastrointestinal hemorrhage (578)\(578.0) Hematemesis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Gastrointestinal hemorrhage (578)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Gastrointestinal hemorrhage (578)\(578.0) Hematemesis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''578.0''', NULL,
+ '(578.0) Hematemesis', '(578.0) Hematemesis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Gastrointestinal hemorrhage (578)\(578.1) Blood in stool\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Gastrointestinal hemorrhage (578)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Gastrointestinal hemorrhage (578)\(578.1) Blood in stool\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''578.1''', NULL,
+ '(578.1) Blood in stool', '(578.1) Blood in stool', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Gastrointestinal hemorrhage (578)\(578.9) Hemorrhage of gastrointestinal tract, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Gastrointestinal hemorrhage (578)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Gastrointestinal hemorrhage (578)\(578.9) Hemorrhage of gastrointestinal tract, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''578.9''', NULL,
+ '(578.9) Hemorrhage of gastrointestinal tract, unspecified', '(578.9) Hemorrhage of gastrointestinal tract, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''579''', NULL,
+ 'Intestinal malabsorption (579)', 'Intestinal malabsorption (579)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\(579.0) Celiac disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\(579.0) Celiac disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''579.0''', NULL,
+ '(579.0) Celiac disease', '(579.0) Celiac disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\(579.1) Tropical sprue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\(579.1) Tropical sprue\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''579.1''', NULL,
+ '(579.1) Tropical sprue', '(579.1) Tropical sprue', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\(579.2) Blind loop syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\(579.2) Blind loop syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''579.2''', NULL,
+ '(579.2) Blind loop syndrome', '(579.2) Blind loop syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\(579.3) Other and unspecified postsurgical nonabsorption\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\(579.3) Other and unspecified postsurgical nonabsorption\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''579.3''', NULL,
+ '(579.3) Other and unspecified postsurgical nonabsorption', '(579.3) Other and unspecified postsurgical nonabsorption', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\(579.4) Pancreatic steatorrhea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\(579.4) Pancreatic steatorrhea\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''579.4''', NULL,
+ '(579.4) Pancreatic steatorrhea', '(579.4) Pancreatic steatorrhea', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\(579.8) Other specified intestinal malabsorption\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\(579.8) Other specified intestinal malabsorption\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''579.8''', NULL,
+ '(579.8) Other specified intestinal malabsorption', '(579.8) Other specified intestinal malabsorption', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\(579.9) Unspecified intestinal malabsorption\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Intestinal malabsorption (579)\(579.9) Unspecified intestinal malabsorption\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''579.9''', NULL,
+ '(579.9) Unspecified intestinal malabsorption', '(579.9) Unspecified intestinal malabsorption', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''572''', NULL,
+ 'Liver abscess and sequelae of chronic liver disease (572)', 'Liver abscess and sequelae of chronic liver disease (572)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\(572.0) Abscess of liver\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\(572.0) Abscess of liver\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''572.0''', NULL,
+ '(572.0) Abscess of liver', '(572.0) Abscess of liver', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\(572.1) Portal pyemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\(572.1) Portal pyemia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''572.1''', NULL,
+ '(572.1) Portal pyemia', '(572.1) Portal pyemia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\(572.2) Hepatic encephalopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\(572.2) Hepatic encephalopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''572.2''', NULL,
+ '(572.2) Hepatic encephalopathy', '(572.2) Hepatic encephalopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\(572.3) Portal hypertension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\(572.3) Portal hypertension\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''572.3''', NULL,
+ '(572.3) Portal hypertension', '(572.3) Portal hypertension', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\(572.4) Hepatorenal syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\(572.4) Hepatorenal syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''572.4''', NULL,
+ '(572.4) Hepatorenal syndrome', '(572.4) Hepatorenal syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\(572.8) Other sequelae of chronic liver disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Liver abscess and sequelae of chronic liver disease (572)\(572.8) Other sequelae of chronic liver disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''572.8''', NULL,
+ '(572.8) Other sequelae of chronic liver disease', '(572.8) Other sequelae of chronic liver disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''576''', NULL,
+ 'Other disorders of biliary tract (576)', 'Other disorders of biliary tract (576)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.0) Postcholecystectomy syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.0) Postcholecystectomy syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''576.0''', NULL,
+ '(576.0) Postcholecystectomy syndrome', '(576.0) Postcholecystectomy syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.1) Cholangitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.1) Cholangitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''576.1''', NULL,
+ '(576.1) Cholangitis', '(576.1) Cholangitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.2) Obstruction of bile duct\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.2) Obstruction of bile duct\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''576.2''', NULL,
+ '(576.2) Obstruction of bile duct', '(576.2) Obstruction of bile duct', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.3) Perforation of bile duct\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.3) Perforation of bile duct\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''576.3''', NULL,
+ '(576.3) Perforation of bile duct', '(576.3) Perforation of bile duct', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.4) Fistula of bile duct\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.4) Fistula of bile duct\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''576.4''', NULL,
+ '(576.4) Fistula of bile duct', '(576.4) Fistula of bile duct', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.5) Spasm of sphincter of Oddi\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.5) Spasm of sphincter of Oddi\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''576.5''', NULL,
+ '(576.5) Spasm of sphincter of Oddi', '(576.5) Spasm of sphincter of Oddi', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.8) Other specified disorders of biliary tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.8) Other specified disorders of biliary tract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''576.8''', NULL,
+ '(576.8) Other specified disorders of biliary tract', '(576.8) Other specified disorders of biliary tract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.9) Unspecified disorder of biliary tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of biliary tract (576)\(576.9) Unspecified disorder of biliary tract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''576.9''', NULL,
+ '(576.9) Unspecified disorder of biliary tract', '(576.9) Unspecified disorder of biliary tract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''575''', NULL,
+ 'Other disorders of gallbladder (575)', 'Other disorders of gallbladder (575)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.0) Acute cholecystitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.0) Acute cholecystitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''575.0''', NULL,
+ '(575.0) Acute cholecystitis', '(575.0) Acute cholecystitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.2) Obstruction of gallbladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.2) Obstruction of gallbladder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''575.2''', NULL,
+ '(575.2) Obstruction of gallbladder', '(575.2) Obstruction of gallbladder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.3) Hydrops of gallbladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.3) Hydrops of gallbladder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''575.3''', NULL,
+ '(575.3) Hydrops of gallbladder', '(575.3) Hydrops of gallbladder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.4) Perforation of gallbladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.4) Perforation of gallbladder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''575.4''', NULL,
+ '(575.4) Perforation of gallbladder', '(575.4) Perforation of gallbladder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.5) Fistula of gallbladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.5) Fistula of gallbladder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''575.5''', NULL,
+ '(575.5) Fistula of gallbladder', '(575.5) Fistula of gallbladder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.6) Cholesterolosis of gallbladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.6) Cholesterolosis of gallbladder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''575.6''', NULL,
+ '(575.6) Cholesterolosis of gallbladder', '(575.6) Cholesterolosis of gallbladder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.8) Other specified disorders of gallbladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.8) Other specified disorders of gallbladder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''575.8''', NULL,
+ '(575.8) Other specified disorders of gallbladder', '(575.8) Other specified disorders of gallbladder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.9) Unspecified disorder of gallbladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\(575.9) Unspecified disorder of gallbladder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''575.9''', NULL,
+ '(575.9) Unspecified disorder of gallbladder', '(575.9) Unspecified disorder of gallbladder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\Other cholecystitis (575.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\Other cholecystitis (575.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''575.1''', NULL,
+ 'Other cholecystitis (575.1)', 'Other cholecystitis (575.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\Other cholecystitis (575.1)\(575.10) Cholecystitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\Other cholecystitis (575.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\Other cholecystitis (575.1)\(575.10) Cholecystitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''575.10''', NULL,
+ '(575.10) Cholecystitis, unspecified', '(575.10) Cholecystitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\Other cholecystitis (575.1)\(575.11) Chronic cholecystitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\Other cholecystitis (575.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\Other cholecystitis (575.1)\(575.11) Chronic cholecystitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''575.11''', NULL,
+ '(575.11) Chronic cholecystitis', '(575.11) Chronic cholecystitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\Other cholecystitis (575.1)\(575.12) Acute and chronic cholecystitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\Other cholecystitis (575.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of gallbladder (575)\Other cholecystitis (575.1)\(575.12) Acute and chronic cholecystitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''575.12''', NULL,
+ '(575.12) Acute and chronic cholecystitis', '(575.12) Acute and chronic cholecystitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''573''', NULL,
+ 'Other disorders of liver (573)', 'Other disorders of liver (573)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\(573.0) Chronic passive congestion of liver\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\(573.0) Chronic passive congestion of liver\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''573.0''', NULL,
+ '(573.0) Chronic passive congestion of liver', '(573.0) Chronic passive congestion of liver', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\(573.1) Hepatitis in viral diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\(573.1) Hepatitis in viral diseases classified elsewhere\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''573.1''', NULL,
+ '(573.1) Hepatitis in viral diseases classified elsewhere', '(573.1) Hepatitis in viral diseases classified elsewhere', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\(573.2) Hepatitis in other infectious diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\(573.2) Hepatitis in other infectious diseases classified elsewhere\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''573.2''', NULL,
+ '(573.2) Hepatitis in other infectious diseases classified elsewhere', '(573.2) Hepatitis in other infectious diseases classified elsewhere', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\(573.3) Hepatitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\(573.3) Hepatitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''573.3''', NULL,
+ '(573.3) Hepatitis, unspecified', '(573.3) Hepatitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\(573.4) Hepatic infarction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\(573.4) Hepatic infarction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''573.4''', NULL,
+ '(573.4) Hepatic infarction', '(573.4) Hepatic infarction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\(573.8) Other specified disorders of liver\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\(573.8) Other specified disorders of liver\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''573.8''', NULL,
+ '(573.8) Other specified disorders of liver', '(573.8) Other specified disorders of liver', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\(573.9) Unspecified disorder of liver\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of digestive system (570-579.99)\Other disorders of liver (573)\(573.9) Unspecified disorder of liver\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''573.9''', NULL,
+ '(573.9) Unspecified disorder of liver', '(573.9) Unspecified disorder of liver', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''560'' AND ''569.99''', NULL,
+ 'Other diseases of intestines and peritoneum (560-569.99)', 'Other diseases of intestines and peritoneum (560-569.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\(566) Abscess of anal and rectal regions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\(566) Abscess of anal and rectal regions\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''566''', NULL,
+ '(566) Abscess of anal and rectal regions', '(566) Abscess of anal and rectal regions', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Anal fissure and fistula (565)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Anal fissure and fistula (565)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''565''', NULL,
+ 'Anal fissure and fistula (565)', 'Anal fissure and fistula (565)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Anal fissure and fistula (565)\(565.0) Anal fissure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Anal fissure and fistula (565)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Anal fissure and fistula (565)\(565.0) Anal fissure\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''565.0''', NULL,
+ '(565.0) Anal fissure', '(565.0) Anal fissure', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Anal fissure and fistula (565)\(565.1) Anal fistula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Anal fissure and fistula (565)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Anal fissure and fistula (565)\(565.1) Anal fistula\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''565.1''', NULL,
+ '(565.1) Anal fistula', '(565.1) Anal fistula', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''562''', NULL,
+ 'Diverticula of intestine (562)', 'Diverticula of intestine (562)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of colon (562.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of colon (562.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''562.1''', NULL,
+ 'Diverticula of colon (562.1)', 'Diverticula of colon (562.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of colon (562.1)\(562.10) Diverticulosis of colon (without mention of hemorrhage)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of colon (562.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of colon (562.1)\(562.10) Diverticulosis of colon (without mention of hemorrhage)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''562.10) Diverticulosis of colon (without mention of hemorrhage''', NULL,
+ '(562.10) Diverticulosis of colon (without mention of hemorrhage)', '(562.10) Diverticulosis of colon (without mention of hemorrhage)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of colon (562.1)\(562.11) Diverticulitis of colon (without mention of hemorrhage)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of colon (562.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of colon (562.1)\(562.11) Diverticulitis of colon (without mention of hemorrhage)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''562.11) Diverticulitis of colon (without mention of hemorrhage''', NULL,
+ '(562.11) Diverticulitis of colon (without mention of hemorrhage)', '(562.11) Diverticulitis of colon (without mention of hemorrhage)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of colon (562.1)\(562.12) Diverticulosis of colon with hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of colon (562.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of colon (562.1)\(562.12) Diverticulosis of colon with hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''562.12''', NULL,
+ '(562.12) Diverticulosis of colon with hemorrhage', '(562.12) Diverticulosis of colon with hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of colon (562.1)\(562.13) Diverticulitis of colon with hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of colon (562.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of colon (562.1)\(562.13) Diverticulitis of colon with hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''562.13''', NULL,
+ '(562.13) Diverticulitis of colon with hemorrhage', '(562.13) Diverticulitis of colon with hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of small intestine (562.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of small intestine (562.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''562.0''', NULL,
+ 'Diverticula of small intestine (562.0)', 'Diverticula of small intestine (562.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of small intestine (562.0)\(562.00) Diverticulosis of small intestine (without mention of hemorrhage)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of small intestine (562.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of small intestine (562.0)\(562.00) Diverticulosis of small intestine (without mention of hemorrhage)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''562.00) Diverticulosis of small intestine (without mention of hemorrhage''', NULL,
+ '(562.00) Diverticulosis of small intestine (without mention of hemorrhage)', '(562.00) Diverticulosis of small intestine (without mention of hemorrhage)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of small intestine (562.0)\(562.01) Diverticulitis of small intestine (without mention of hemorrhage)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of small intestine (562.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of small intestine (562.0)\(562.01) Diverticulitis of small intestine (without mention of hemorrhage)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''562.01) Diverticulitis of small intestine (without mention of hemorrhage''', NULL,
+ '(562.01) Diverticulitis of small intestine (without mention of hemorrhage)', '(562.01) Diverticulitis of small intestine (without mention of hemorrhage)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of small intestine (562.0)\(562.02) Diverticulosis of small intestine with hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of small intestine (562.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of small intestine (562.0)\(562.02) Diverticulosis of small intestine with hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''562.02''', NULL,
+ '(562.02) Diverticulosis of small intestine with hemorrhage', '(562.02) Diverticulosis of small intestine with hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of small intestine (562.0)\(562.03) Diverticulitis of small intestine with hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of small intestine (562.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Diverticula of intestine (562)\Diverticula of small intestine (562.0)\(562.03) Diverticulitis of small intestine with hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''562.03''', NULL,
+ '(562.03) Diverticulitis of small intestine with hemorrhage', '(562.03) Diverticulitis of small intestine with hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564''', NULL,
+ 'Functional digestive disorders, not elsewhere classified (564)', 'Functional digestive disorders, not elsewhere classified (564)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.1) Irritable bowel syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.1) Irritable bowel syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.1''', NULL,
+ '(564.1) Irritable bowel syndrome', '(564.1) Irritable bowel syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.2) Postgastric surgery syndromes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.2) Postgastric surgery syndromes\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.2''', NULL,
+ '(564.2) Postgastric surgery syndromes', '(564.2) Postgastric surgery syndromes', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.3) Vomiting following gastrointestinal surgery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.3) Vomiting following gastrointestinal surgery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.3''', NULL,
+ '(564.3) Vomiting following gastrointestinal surgery', '(564.3) Vomiting following gastrointestinal surgery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.4) Other postoperative functional disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.4) Other postoperative functional disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.4''', NULL,
+ '(564.4) Other postoperative functional disorders', '(564.4) Other postoperative functional disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.5) Functional diarrhea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.5) Functional diarrhea\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.5''', NULL,
+ '(564.5) Functional diarrhea', '(564.5) Functional diarrhea', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.6) Anal spasm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.6) Anal spasm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.6''', NULL,
+ '(564.6) Anal spasm', '(564.6) Anal spasm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.7) Megacolon, other than Hirschsprung''s\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.7) Megacolon, other than Hirschsprung''s\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.7''', NULL,
+ '(564.7) Megacolon, other than Hirschsprung''s', '(564.7) Megacolon, other than Hirschsprung''s', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.9) Unspecified functional disorder of intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\(564.9) Unspecified functional disorder of intestine\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.9''', NULL,
+ '(564.9) Unspecified functional disorder of intestine', '(564.9) Unspecified functional disorder of intestine', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Constipation (564.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Constipation (564.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.0''', NULL,
+ 'Constipation (564.0)', 'Constipation (564.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Constipation (564.0)\(564.00) Constipation, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Constipation (564.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Constipation (564.0)\(564.00) Constipation, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.00''', NULL,
+ '(564.00) Constipation, unspecified', '(564.00) Constipation, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Constipation (564.0)\(564.01) Slow transit constipation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Constipation (564.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Constipation (564.0)\(564.01) Slow transit constipation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.01''', NULL,
+ '(564.01) Slow transit constipation', '(564.01) Slow transit constipation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Constipation (564.0)\(564.02) Outlet dysfunction constipation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Constipation (564.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Constipation (564.0)\(564.02) Outlet dysfunction constipation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.02''', NULL,
+ '(564.02) Outlet dysfunction constipation', '(564.02) Outlet dysfunction constipation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Constipation (564.0)\(564.09) Other constipation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Constipation (564.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Constipation (564.0)\(564.09) Other constipation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.09''', NULL,
+ '(564.09) Other constipation', '(564.09) Other constipation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Other specified functional disorders of intestine (564.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Other specified functional disorders of intestine (564.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.8''', NULL,
+ 'Other specified functional disorders of intestine (564.8)', 'Other specified functional disorders of intestine (564.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Other specified functional disorders of intestine (564.8)\(564.81) Neurogenic bowel\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Other specified functional disorders of intestine (564.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Other specified functional disorders of intestine (564.8)\(564.81) Neurogenic bowel\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.81''', NULL,
+ '(564.81) Neurogenic bowel', '(564.81) Neurogenic bowel', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Other specified functional disorders of intestine (564.8)\(564.89) Other functional disorders of intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Other specified functional disorders of intestine (564.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Functional digestive disorders, not elsewhere classified (564)\Other specified functional disorders of intestine (564.8)\(564.89) Other functional disorders of intestine\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''564.89''', NULL,
+ '(564.89) Other functional disorders of intestine', '(564.89) Other functional disorders of intestine', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''560''', NULL,
+ 'Intestinal obstruction without mention of hernia (560)', 'Intestinal obstruction without mention of hernia (560)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\(560.0) Intussusception\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\(560.0) Intussusception\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''560.0''', NULL,
+ '(560.0) Intussusception', '(560.0) Intussusception', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\(560.1) Paralytic ileus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\(560.1) Paralytic ileus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''560.1''', NULL,
+ '(560.1) Paralytic ileus', '(560.1) Paralytic ileus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\(560.2) Volvulus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\(560.2) Volvulus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''560.2''', NULL,
+ '(560.2) Volvulus', '(560.2) Volvulus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\(560.9) Unspecified intestinal obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\(560.9) Unspecified intestinal obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''560.9''', NULL,
+ '(560.9) Unspecified intestinal obstruction', '(560.9) Unspecified intestinal obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Impaction of intestine (560.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Impaction of intestine (560.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''560.3''', NULL,
+ 'Impaction of intestine (560.3)', 'Impaction of intestine (560.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Impaction of intestine (560.3)\(560.30) Impaction of intestine, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Impaction of intestine (560.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Impaction of intestine (560.3)\(560.30) Impaction of intestine, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''560.30''', NULL,
+ '(560.30) Impaction of intestine, unspecified', '(560.30) Impaction of intestine, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Impaction of intestine (560.3)\(560.31) Gallstone ileus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Impaction of intestine (560.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Impaction of intestine (560.3)\(560.31) Gallstone ileus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''560.31''', NULL,
+ '(560.31) Gallstone ileus', '(560.31) Gallstone ileus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Impaction of intestine (560.3)\(560.32) Fecal impaction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Impaction of intestine (560.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Impaction of intestine (560.3)\(560.32) Fecal impaction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''560.32''', NULL,
+ '(560.32) Fecal impaction', '(560.32) Fecal impaction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Impaction of intestine (560.3)\(560.39) Other impaction of intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Impaction of intestine (560.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Impaction of intestine (560.3)\(560.39) Other impaction of intestine\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''560.39''', NULL,
+ '(560.39) Other impaction of intestine', '(560.39) Other impaction of intestine', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Other specified intestinal obstruction (560.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Other specified intestinal obstruction (560.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''560.8''', NULL,
+ 'Other specified intestinal obstruction (560.8)', 'Other specified intestinal obstruction (560.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Other specified intestinal obstruction (560.8)\(560.81) Intestinal or peritoneal adhesions with obstruction (postoperative) (postinfection)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Other specified intestinal obstruction (560.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Other specified intestinal obstruction (560.8)\(560.81) Intestinal or peritoneal adhesions with obstruction (postoperative) (postinfection)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''560.81) Intestinal or peritoneal adhesions with obstruction (postoperative) (postinfection''', NULL,
+ '(560.81) Intestinal or peritoneal adhesions with obstruction (postoperative) (postinfection)', '(560.81) Intestinal or peritoneal adhesions with obstruction (postoperative) (postinfection)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Other specified intestinal obstruction (560.8)\(560.89) Other specified intestinal obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Other specified intestinal obstruction (560.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Intestinal obstruction without mention of hernia (560)\Other specified intestinal obstruction (560.8)\(560.89) Other specified intestinal obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''560.89''', NULL,
+ '(560.89) Other specified intestinal obstruction', '(560.89) Other specified intestinal obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569''', NULL,
+ 'Other disorders of intestine (569)', 'Other disorders of intestine (569)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\(569.0) Anal and rectal polyp\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\(569.0) Anal and rectal polyp\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.0''', NULL,
+ '(569.0) Anal and rectal polyp', '(569.0) Anal and rectal polyp', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\(569.1) Rectal prolapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\(569.1) Rectal prolapse\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.1''', NULL,
+ '(569.1) Rectal prolapse', '(569.1) Rectal prolapse', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\(569.2) Stenosis of rectum and anus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\(569.2) Stenosis of rectum and anus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.2''', NULL,
+ '(569.2) Stenosis of rectum and anus', '(569.2) Stenosis of rectum and anus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\(569.3) Hemorrhage of rectum and anus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\(569.3) Hemorrhage of rectum and anus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.3''', NULL,
+ '(569.3) Hemorrhage of rectum and anus', '(569.3) Hemorrhage of rectum and anus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\(569.5) Abscess of intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\(569.5) Abscess of intestine\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.5''', NULL,
+ '(569.5) Abscess of intestine', '(569.5) Abscess of intestine', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\(569.9) Unspecified disorder of intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\(569.9) Unspecified disorder of intestine\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.9''', NULL,
+ '(569.9) Unspecified disorder of intestine', '(569.9) Unspecified disorder of intestine', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Colostomy and enterostomy complications (569.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Colostomy and enterostomy complications (569.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.6''', NULL,
+ 'Colostomy and enterostomy complications (569.6)', 'Colostomy and enterostomy complications (569.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Colostomy and enterostomy complications (569.6)\(569.60) Colostomy and enterostomy complication, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Colostomy and enterostomy complications (569.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Colostomy and enterostomy complications (569.6)\(569.60) Colostomy and enterostomy complication, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.60''', NULL,
+ '(569.60) Colostomy and enterostomy complication, unspecified', '(569.60) Colostomy and enterostomy complication, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Colostomy and enterostomy complications (569.6)\(569.61) Infection of colostomy or enterostomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Colostomy and enterostomy complications (569.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Colostomy and enterostomy complications (569.6)\(569.61) Infection of colostomy or enterostomy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.61''', NULL,
+ '(569.61) Infection of colostomy or enterostomy', '(569.61) Infection of colostomy or enterostomy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Colostomy and enterostomy complications (569.6)\(569.62) Mechanical complication of colostomy and enterostomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Colostomy and enterostomy complications (569.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Colostomy and enterostomy complications (569.6)\(569.62) Mechanical complication of colostomy and enterostomy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.62''', NULL,
+ '(569.62) Mechanical complication of colostomy and enterostomy', '(569.62) Mechanical complication of colostomy and enterostomy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Colostomy and enterostomy complications (569.6)\(569.69) Other colostomy and enterostomy complication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Colostomy and enterostomy complications (569.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Colostomy and enterostomy complications (569.6)\(569.69) Other colostomy and enterostomy complication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.69''', NULL,
+ '(569.69) Other colostomy and enterostomy complication', '(569.69) Other colostomy and enterostomy complication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Complications of intestinal pouch (569.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Complications of intestinal pouch (569.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.7''', NULL,
+ 'Complications of intestinal pouch (569.7)', 'Complications of intestinal pouch (569.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Complications of intestinal pouch (569.7)\(569.71) Pouchitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Complications of intestinal pouch (569.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Complications of intestinal pouch (569.7)\(569.71) Pouchitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.71''', NULL,
+ '(569.71) Pouchitis', '(569.71) Pouchitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Complications of intestinal pouch (569.7)\(569.79) Other complications of intestinal pouch\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Complications of intestinal pouch (569.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Complications of intestinal pouch (569.7)\(569.79) Other complications of intestinal pouch\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.79''', NULL,
+ '(569.79) Other complications of intestinal pouch', '(569.79) Other complications of intestinal pouch', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.8''', NULL,
+ 'Other specified disorders of intestine (569.8)', 'Other specified disorders of intestine (569.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\(569.81) Fistula of intestine, excluding rectum and anus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\(569.81) Fistula of intestine, excluding rectum and anus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.81''', NULL,
+ '(569.81) Fistula of intestine, excluding rectum and anus', '(569.81) Fistula of intestine, excluding rectum and anus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\(569.82) Ulceration of intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\(569.82) Ulceration of intestine\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.82''', NULL,
+ '(569.82) Ulceration of intestine', '(569.82) Ulceration of intestine', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\(569.83) Perforation of intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\(569.83) Perforation of intestine\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.83''', NULL,
+ '(569.83) Perforation of intestine', '(569.83) Perforation of intestine', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\(569.84) Angiodysplasia of intestine (without mention of hemorrhage)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\(569.84) Angiodysplasia of intestine (without mention of hemorrhage)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.84) Angiodysplasia of intestine (without mention of hemorrhage''', NULL,
+ '(569.84) Angiodysplasia of intestine (without mention of hemorrhage)', '(569.84) Angiodysplasia of intestine (without mention of hemorrhage)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\(569.85) Angiodysplasia of intestine with hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\(569.85) Angiodysplasia of intestine with hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.85''', NULL,
+ '(569.85) Angiodysplasia of intestine with hemorrhage', '(569.85) Angiodysplasia of intestine with hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\(569.86) Dieulafoy lesion (hemorrhagic) of intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\(569.86) Dieulafoy lesion (hemorrhagic) of intestine\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.86) Dieulafoy lesion (hemorrhagic''', NULL,
+ '(569.86) Dieulafoy lesion (hemorrhagic) of intestine', '(569.86) Dieulafoy lesion (hemorrhagic) of intestine', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\(569.89) Other specified disorders of intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of intestine (569.8)\(569.89) Other specified disorders of intestine\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.89''', NULL,
+ '(569.89) Other specified disorders of intestine', '(569.89) Other specified disorders of intestine', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.4''', NULL,
+ 'Other specified disorders of rectum and anus (569.4)', 'Other specified disorders of rectum and anus (569.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\(569.41) Ulcer of anus and rectum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\(569.41) Ulcer of anus and rectum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.41''', NULL,
+ '(569.41) Ulcer of anus and rectum', '(569.41) Ulcer of anus and rectum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\(569.42) Anal or rectal pain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\(569.42) Anal or rectal pain\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.42''', NULL,
+ '(569.42) Anal or rectal pain', '(569.42) Anal or rectal pain', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\(569.43) Anal sphincter tear (healed) (old)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\(569.43) Anal sphincter tear (healed) (old)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.43) Anal sphincter tear (healed) (old''', NULL,
+ '(569.43) Anal sphincter tear (healed) (old)', '(569.43) Anal sphincter tear (healed) (old)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\(569.44) Dysplasia of anus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\(569.44) Dysplasia of anus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.44''', NULL,
+ '(569.44) Dysplasia of anus', '(569.44) Dysplasia of anus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\(569.49) Other specified disorders of rectum and anus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of intestine (569)\Other specified disorders of rectum and anus (569.4)\(569.49) Other specified disorders of rectum and anus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''569.49''', NULL,
+ '(569.49) Other specified disorders of rectum and anus', '(569.49) Other specified disorders of rectum and anus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''568''', NULL,
+ 'Other disorders of peritoneum (568)', 'Other disorders of peritoneum (568)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\(568.0) Peritoneal adhesions (postoperative) (postinfection)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\(568.0) Peritoneal adhesions (postoperative) (postinfection)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''568.0) Peritoneal adhesions (postoperative) (postinfection''', NULL,
+ '(568.0) Peritoneal adhesions (postoperative) (postinfection)', '(568.0) Peritoneal adhesions (postoperative) (postinfection)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\(568.9) Unspecified disorder of peritoneum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\(568.9) Unspecified disorder of peritoneum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''568.9''', NULL,
+ '(568.9) Unspecified disorder of peritoneum', '(568.9) Unspecified disorder of peritoneum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\Other specified disorders of peritoneum (568.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\Other specified disorders of peritoneum (568.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''568.8''', NULL,
+ 'Other specified disorders of peritoneum (568.8)', 'Other specified disorders of peritoneum (568.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\Other specified disorders of peritoneum (568.8)\(568.81) Hemoperitoneum (nontraumatic)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\Other specified disorders of peritoneum (568.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\Other specified disorders of peritoneum (568.8)\(568.81) Hemoperitoneum (nontraumatic)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''568.81) Hemoperitoneum (nontraumatic''', NULL,
+ '(568.81) Hemoperitoneum (nontraumatic)', '(568.81) Hemoperitoneum (nontraumatic)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\Other specified disorders of peritoneum (568.8)\(568.82) Peritoneal effusion (chronic)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\Other specified disorders of peritoneum (568.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\Other specified disorders of peritoneum (568.8)\(568.82) Peritoneal effusion (chronic)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''568.82) Peritoneal effusion (chronic''', NULL,
+ '(568.82) Peritoneal effusion (chronic)', '(568.82) Peritoneal effusion (chronic)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\Other specified disorders of peritoneum (568.8)\(568.89) Other specified disorders of peritoneum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\Other specified disorders of peritoneum (568.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Other disorders of peritoneum (568)\Other specified disorders of peritoneum (568.8)\(568.89) Other specified disorders of peritoneum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''568.89''', NULL,
+ '(568.89) Other specified disorders of peritoneum', '(568.89) Other specified disorders of peritoneum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567''', NULL,
+ 'Peritonitis and retroperitoneal infections (567)', 'Peritonitis and retroperitoneal infections (567)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\(567.0) Peritonitis in infectious diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\(567.0) Peritonitis in infectious diseases classified elsewhere\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.0''', NULL,
+ '(567.0) Peritonitis in infectious diseases classified elsewhere', '(567.0) Peritonitis in infectious diseases classified elsewhere', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\(567.1) Pneumococcal peritonitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\(567.1) Pneumococcal peritonitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.1''', NULL,
+ '(567.1) Pneumococcal peritonitis', '(567.1) Pneumococcal peritonitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\(567.9) Unspecified peritonitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\(567.9) Unspecified peritonitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.9''', NULL,
+ '(567.9) Unspecified peritonitis', '(567.9) Unspecified peritonitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other specified peritonitis (567.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other specified peritonitis (567.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.8''', NULL,
+ 'Other specified peritonitis (567.8)', 'Other specified peritonitis (567.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other specified peritonitis (567.8)\(567.81) Choleperitonitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other specified peritonitis (567.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other specified peritonitis (567.8)\(567.81) Choleperitonitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.81''', NULL,
+ '(567.81) Choleperitonitis', '(567.81) Choleperitonitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other specified peritonitis (567.8)\(567.82) Sclerosing mesenteritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other specified peritonitis (567.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other specified peritonitis (567.8)\(567.82) Sclerosing mesenteritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.82''', NULL,
+ '(567.82) Sclerosing mesenteritis', '(567.82) Sclerosing mesenteritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other specified peritonitis (567.8)\(567.89) Other specified peritonitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other specified peritonitis (567.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other specified peritonitis (567.8)\(567.89) Other specified peritonitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.89''', NULL,
+ '(567.89) Other specified peritonitis', '(567.89) Other specified peritonitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other suppurative peritonitis (567.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other suppurative peritonitis (567.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.2''', NULL,
+ 'Other suppurative peritonitis (567.2)', 'Other suppurative peritonitis (567.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other suppurative peritonitis (567.2)\(567.21) Peritonitis (acute) generalized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other suppurative peritonitis (567.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other suppurative peritonitis (567.2)\(567.21) Peritonitis (acute) generalized\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.21) Peritonitis (acute''', NULL,
+ '(567.21) Peritonitis (acute) generalized', '(567.21) Peritonitis (acute) generalized', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other suppurative peritonitis (567.2)\(567.22) Peritoneal abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other suppurative peritonitis (567.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other suppurative peritonitis (567.2)\(567.22) Peritoneal abscess\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.22''', NULL,
+ '(567.22) Peritoneal abscess', '(567.22) Peritoneal abscess', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other suppurative peritonitis (567.2)\(567.23) Spontaneous bacterial peritonitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other suppurative peritonitis (567.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other suppurative peritonitis (567.2)\(567.23) Spontaneous bacterial peritonitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.23''', NULL,
+ '(567.23) Spontaneous bacterial peritonitis', '(567.23) Spontaneous bacterial peritonitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other suppurative peritonitis (567.2)\(567.29) Other suppurative peritonitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other suppurative peritonitis (567.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Other suppurative peritonitis (567.2)\(567.29) Other suppurative peritonitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.29''', NULL,
+ '(567.29) Other suppurative peritonitis', '(567.29) Other suppurative peritonitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Retroperitoneal infections (567.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Retroperitoneal infections (567.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.3''', NULL,
+ 'Retroperitoneal infections (567.3)', 'Retroperitoneal infections (567.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Retroperitoneal infections (567.3)\(567.31) Psoas muscle abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Retroperitoneal infections (567.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Retroperitoneal infections (567.3)\(567.31) Psoas muscle abscess\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.31''', NULL,
+ '(567.31) Psoas muscle abscess', '(567.31) Psoas muscle abscess', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Retroperitoneal infections (567.3)\(567.38) Other retroperitoneal abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Retroperitoneal infections (567.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Retroperitoneal infections (567.3)\(567.38) Other retroperitoneal abscess\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.38''', NULL,
+ '(567.38) Other retroperitoneal abscess', '(567.38) Other retroperitoneal abscess', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Retroperitoneal infections (567.3)\(567.39) Other retroperitoneal infections\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Retroperitoneal infections (567.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the digestive system (520-579.99)\Other diseases of intestines and peritoneum (560-569.99)\Peritonitis and retroperitoneal infections (567)\Retroperitoneal infections (567.3)\(567.39) Other retroperitoneal infections\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''567.39''', NULL,
+ '(567.39) Other retroperitoneal infections', '(567.39) Other retroperitoneal infections', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''580'' AND ''629.99''', NULL,
+ 'Diseases of the genitourinary system (580-629.99)', 'Diseases of the genitourinary system (580-629.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''600'' AND ''608.99''', NULL,
+ 'Diseases of male genital organs (600-608.99)', 'Diseases of male genital organs (600-608.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\(605) Redundant prepuce and phimosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\(605) Redundant prepuce and phimosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''605''', NULL,
+ '(605) Redundant prepuce and phimosis', '(605) Redundant prepuce and phimosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''607''', NULL,
+ 'Disorders of penis (607)', 'Disorders of penis (607)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\(607.0) Leukoplakia of penis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\(607.0) Leukoplakia of penis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''607.0''', NULL,
+ '(607.0) Leukoplakia of penis', '(607.0) Leukoplakia of penis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\(607.1) Balanoposthitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\(607.1) Balanoposthitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''607.1''', NULL,
+ '(607.1) Balanoposthitis', '(607.1) Balanoposthitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\(607.2) Other inflammatory disorders of penis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\(607.2) Other inflammatory disorders of penis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''607.2''', NULL,
+ '(607.2) Other inflammatory disorders of penis', '(607.2) Other inflammatory disorders of penis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\(607.3) Priapism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\(607.3) Priapism\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''607.3''', NULL,
+ '(607.3) Priapism', '(607.3) Priapism', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\(607.9) Unspecified disorder of penis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\(607.9) Unspecified disorder of penis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''607.9''', NULL,
+ '(607.9) Unspecified disorder of penis', '(607.9) Unspecified disorder of penis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''607.8''', NULL,
+ 'Other specified disorders of penis (607.8)', 'Other specified disorders of penis (607.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\(607.81) Balanitis xerotica obliterans\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\(607.81) Balanitis xerotica obliterans\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''607.81''', NULL,
+ '(607.81) Balanitis xerotica obliterans', '(607.81) Balanitis xerotica obliterans', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\(607.82) Vascular disorders of penis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\(607.82) Vascular disorders of penis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''607.82''', NULL,
+ '(607.82) Vascular disorders of penis', '(607.82) Vascular disorders of penis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\(607.83) Edema of penis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\(607.83) Edema of penis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''607.83''', NULL,
+ '(607.83) Edema of penis', '(607.83) Edema of penis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\(607.84) Impotence of organic origin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\(607.84) Impotence of organic origin\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''607.84''', NULL,
+ '(607.84) Impotence of organic origin', '(607.84) Impotence of organic origin', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\(607.85) Peyronie''s disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\(607.85) Peyronie''s disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''607.85''', NULL,
+ '(607.85) Peyronie''s disease', '(607.85) Peyronie''s disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\(607.89) Other specified disorders of penis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Disorders of penis (607)\Other specified disorders of penis (607.8)\(607.89) Other specified disorders of penis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''607.89''', NULL,
+ '(607.89) Other specified disorders of penis', '(607.89) Other specified disorders of penis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hydrocele (603)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hydrocele (603)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''603''', NULL,
+ 'Hydrocele (603)', 'Hydrocele (603)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hydrocele (603)\(603.0) Encysted hydrocele\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hydrocele (603)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hydrocele (603)\(603.0) Encysted hydrocele\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''603.0''', NULL,
+ '(603.0) Encysted hydrocele', '(603.0) Encysted hydrocele', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hydrocele (603)\(603.1) Infected hydrocele\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hydrocele (603)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hydrocele (603)\(603.1) Infected hydrocele\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''603.1''', NULL,
+ '(603.1) Infected hydrocele', '(603.1) Infected hydrocele', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hydrocele (603)\(603.8) Other specified types of hydrocele\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hydrocele (603)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hydrocele (603)\(603.8) Other specified types of hydrocele\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''603.8''', NULL,
+ '(603.8) Other specified types of hydrocele', '(603.8) Other specified types of hydrocele', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hydrocele (603)\(603.9) Hydrocele, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hydrocele (603)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hydrocele (603)\(603.9) Hydrocele, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''603.9''', NULL,
+ '(603.9) Hydrocele, unspecified', '(603.9) Hydrocele, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''600''', NULL,
+ 'Hyperplasia of prostate (600)', 'Hyperplasia of prostate (600)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\(600.3) Cyst of prostate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\(600.3) Cyst of prostate\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''600.3''', NULL,
+ '(600.3) Cyst of prostate', '(600.3) Cyst of prostate', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Benign localized hyperplasia of prostate (600.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Benign localized hyperplasia of prostate (600.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''600.2''', NULL,
+ 'Benign localized hyperplasia of prostate (600.2)', 'Benign localized hyperplasia of prostate (600.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Benign localized hyperplasia of prostate (600.2)\(600.20) Benign localized hyperplasia of prostate without urinary obstruction and other lower urinary tract symptoms (LUTS)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Benign localized hyperplasia of prostate (600.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Benign localized hyperplasia of prostate (600.2)\(600.20) Benign localized hyperplasia of prostate without urinary obstruction and other lower urinary tract symptoms (LUTS)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''600.20) Benign localized hyperplasia of prostate without urinary obstruction and other lower urinary tract symptoms (LUTS''', NULL,
+ '(600.20) Benign localized hyperplasia of prostate without urinary obstruction and other lower urinary tract symptoms (LUTS)', '(600.20) Benign localized hyperplasia of prostate without urinary obstruction and other lower urinary tract symptoms (LUTS)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Benign localized hyperplasia of prostate (600.2)\(600.21) Benign localized hyperplasia of prostate with urinary obstruction and other lower urinary tract symptoms (LUTS)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Benign localized hyperplasia of prostate (600.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Benign localized hyperplasia of prostate (600.2)\(600.21) Benign localized hyperplasia of prostate with urinary obstruction and other lower urinary tract symptoms (LUTS)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''600.21) Benign localized hyperplasia of prostate with urinary obstruction and other lower urinary tract symptoms (LUTS''', NULL,
+ '(600.21) Benign localized hyperplasia of prostate with urinary obstruction and other lower urinary tract symptoms (LUTS)', '(600.21) Benign localized hyperplasia of prostate with urinary obstruction and other lower urinary tract symptoms (LUTS)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hyperplasia of prostate, unspecified (600.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hyperplasia of prostate, unspecified (600.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''600.9''', NULL,
+ 'Hyperplasia of prostate, unspecified (600.9)', 'Hyperplasia of prostate, unspecified (600.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hyperplasia of prostate, unspecified (600.9)\(600.90) Hyperplasia of prostate, unspecified, without urinary obstruction and other lower urinary symptoms (LUTS)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hyperplasia of prostate, unspecified (600.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hyperplasia of prostate, unspecified (600.9)\(600.90) Hyperplasia of prostate, unspecified, without urinary obstruction and other lower urinary symptoms (LUTS)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''600.90) Hyperplasia of prostate, unspecified, without urinary obstruction and other lower urinary symptoms (LUTS''', NULL,
+ '(600.90) Hyperplasia of prostate, unspecified, without urinary obstruction and other lower urinary symptoms (LUTS)', '(600.90) Hyperplasia of prostate, unspecified, without urinary obstruction and other lower urinary symptoms (LUTS)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hyperplasia of prostate, unspecified (600.9)\(600.91) Hyperplasia of prostate, unspecified, with urinary obstruction and other lower urinary symptoms (LUTS)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hyperplasia of prostate, unspecified (600.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hyperplasia of prostate, unspecified (600.9)\(600.91) Hyperplasia of prostate, unspecified, with urinary obstruction and other lower urinary symptoms (LUTS)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''600.91) Hyperplasia of prostate, unspecified, with urinary obstruction and other lower urinary symptoms (LUTS''', NULL,
+ '(600.91) Hyperplasia of prostate, unspecified, with urinary obstruction and other lower urinary symptoms (LUTS)', '(600.91) Hyperplasia of prostate, unspecified, with urinary obstruction and other lower urinary symptoms (LUTS)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hypertrophy (benign) of prostate (600.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hypertrophy (benign) of prostate (600.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''benign) of prostate (600.0''', NULL,
+ 'Hypertrophy (benign) of prostate (600.0)', 'Hypertrophy (benign) of prostate (600.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hypertrophy (benign) of prostate (600.0)\(600.00) Hypertrophy (benign) of prostate without urinary obstruction and other lower urinary tract symptom (LUTS)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hypertrophy (benign) of prostate (600.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hypertrophy (benign) of prostate (600.0)\(600.00) Hypertrophy (benign) of prostate without urinary obstruction and other lower urinary tract symptom (LUTS)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''600.00) Hypertrophy (benign) of prostate without urinary obstruction and other lower urinary tract symptom (LUTS''', NULL,
+ '(600.00) Hypertrophy (benign) of prostate without urinary obstruction and other lower urinary tract symptom (LUTS)', '(600.00) Hypertrophy (benign) of prostate without urinary obstruction and other lower urinary tract symptom (LUTS)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hypertrophy (benign) of prostate (600.0)\(600.01) Hypertrophy (benign) of prostate with urinary obstruction and other lower urinary tract symptoms (LUTS)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hypertrophy (benign) of prostate (600.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Hypertrophy (benign) of prostate (600.0)\(600.01) Hypertrophy (benign) of prostate with urinary obstruction and other lower urinary tract symptoms (LUTS)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''600.01) Hypertrophy (benign) of prostate with urinary obstruction and other lower urinary tract symptoms (LUTS''', NULL,
+ '(600.01) Hypertrophy (benign) of prostate with urinary obstruction and other lower urinary tract symptoms (LUTS)', '(600.01) Hypertrophy (benign) of prostate with urinary obstruction and other lower urinary tract symptoms (LUTS)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Nodular prostate (600.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Nodular prostate (600.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''600.1''', NULL,
+ 'Nodular prostate (600.1)', 'Nodular prostate (600.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Nodular prostate (600.1)\(600.10) Nodular prostate without urinary obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Nodular prostate (600.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Nodular prostate (600.1)\(600.10) Nodular prostate without urinary obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''600.10''', NULL,
+ '(600.10) Nodular prostate without urinary obstruction', '(600.10) Nodular prostate without urinary obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Nodular prostate (600.1)\(600.11) Nodular prostate with urinary obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Nodular prostate (600.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Hyperplasia of prostate (600)\Nodular prostate (600.1)\(600.11) Nodular prostate with urinary obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''600.11''', NULL,
+ '(600.11) Nodular prostate with urinary obstruction', '(600.11) Nodular prostate with urinary obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Infertility, male (606)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Infertility, male (606)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''606''', NULL,
+ 'Infertility, male (606)', 'Infertility, male (606)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Infertility, male (606)\(606.0) Azoospermia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Infertility, male (606)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Infertility, male (606)\(606.0) Azoospermia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''606.0''', NULL,
+ '(606.0) Azoospermia', '(606.0) Azoospermia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Infertility, male (606)\(606.1) Oligospermia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Infertility, male (606)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Infertility, male (606)\(606.1) Oligospermia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''606.1''', NULL,
+ '(606.1) Oligospermia', '(606.1) Oligospermia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Infertility, male (606)\(606.8) Infertility due to extratesticular causes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Infertility, male (606)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Infertility, male (606)\(606.8) Infertility due to extratesticular causes\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''606.8''', NULL,
+ '(606.8) Infertility due to extratesticular causes', '(606.8) Infertility due to extratesticular causes', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Infertility, male (606)\(606.9) Male infertility, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Infertility, male (606)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Infertility, male (606)\(606.9) Male infertility, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''606.9''', NULL,
+ '(606.9) Male infertility, unspecified', '(606.9) Male infertility, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''601''', NULL,
+ 'Inflammatory diseases of prostate (601)', 'Inflammatory diseases of prostate (601)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\(601.0) Acute prostatitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\(601.0) Acute prostatitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''601.0''', NULL,
+ '(601.0) Acute prostatitis', '(601.0) Acute prostatitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\(601.1) Chronic prostatitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\(601.1) Chronic prostatitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''601.1''', NULL,
+ '(601.1) Chronic prostatitis', '(601.1) Chronic prostatitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\(601.2) Abscess of prostate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\(601.2) Abscess of prostate\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''601.2''', NULL,
+ '(601.2) Abscess of prostate', '(601.2) Abscess of prostate', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\(601.3) Prostatocystitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\(601.3) Prostatocystitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''601.3''', NULL,
+ '(601.3) Prostatocystitis', '(601.3) Prostatocystitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\(601.4) Prostatitis in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\(601.4) Prostatitis in diseases classified elsewhere\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''601.4''', NULL,
+ '(601.4) Prostatitis in diseases classified elsewhere', '(601.4) Prostatitis in diseases classified elsewhere', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\(601.8) Other specified inflammatory diseases of prostate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\(601.8) Other specified inflammatory diseases of prostate\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''601.8''', NULL,
+ '(601.8) Other specified inflammatory diseases of prostate', '(601.8) Other specified inflammatory diseases of prostate', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\(601.9) Prostatitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Inflammatory diseases of prostate (601)\(601.9) Prostatitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''601.9''', NULL,
+ '(601.9) Prostatitis, unspecified', '(601.9) Prostatitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''604''', NULL,
+ 'Orchitis and epididymitis (604)', 'Orchitis and epididymitis (604)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\(604.0) Orchitis, epididymitis, and epididymo-orchitis, with abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\(604.0) Orchitis, epididymitis, and epididymo-orchitis, with abscess\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''604.0''', NULL,
+ '(604.0) Orchitis, epididymitis, and epididymo-orchitis, with abscess', '(604.0) Orchitis, epididymitis, and epididymo-orchitis, with abscess', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''604.9''', NULL,
+ 'Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)', 'Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)\(604.90) Orchitis and epididymitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)\(604.90) Orchitis and epididymitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''604.90''', NULL,
+ '(604.90) Orchitis and epididymitis, unspecified', '(604.90) Orchitis and epididymitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)\(604.91) Orchitis and epididymitis in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)\(604.91) Orchitis and epididymitis in diseases classified elsewhere\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''604.91''', NULL,
+ '(604.91) Orchitis and epididymitis in diseases classified elsewhere', '(604.91) Orchitis and epididymitis in diseases classified elsewhere', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)\(604.99) Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Orchitis and epididymitis (604)\Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess (604.9)\(604.99) Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''604.99''', NULL,
+ '(604.99) Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess', '(604.99) Other orchitis, epididymitis, and epididymo-orchitis, without mention of abscess', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608''', NULL,
+ 'Other disorders of male genital organs (608)', 'Other disorders of male genital organs (608)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\(608.0) Seminal vesiculitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\(608.0) Seminal vesiculitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.0''', NULL,
+ '(608.0) Seminal vesiculitis', '(608.0) Seminal vesiculitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\(608.1) Spermatocele\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\(608.1) Spermatocele\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.1''', NULL,
+ '(608.1) Spermatocele', '(608.1) Spermatocele', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\(608.3) Atrophy of testis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\(608.3) Atrophy of testis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.3''', NULL,
+ '(608.3) Atrophy of testis', '(608.3) Atrophy of testis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\(608.4) Other inflammatory disorders of male genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\(608.4) Other inflammatory disorders of male genital organs\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.4''', NULL,
+ '(608.4) Other inflammatory disorders of male genital organs', '(608.4) Other inflammatory disorders of male genital organs', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\(608.9) Unspecified disorder of male genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\(608.9) Unspecified disorder of male genital organs\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.9''', NULL,
+ '(608.9) Unspecified disorder of male genital organs', '(608.9) Unspecified disorder of male genital organs', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.8''', NULL,
+ 'Other specified disorders of male genital organs (608.8)', 'Other specified disorders of male genital organs (608.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.81) Disorders of male genital organs in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.81) Disorders of male genital organs in diseases classified elsewhere\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.81''', NULL,
+ '(608.81) Disorders of male genital organs in diseases classified elsewhere', '(608.81) Disorders of male genital organs in diseases classified elsewhere', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.82) Hematospermia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.82) Hematospermia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.82''', NULL,
+ '(608.82) Hematospermia', '(608.82) Hematospermia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.83) Vascular disorders of male genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.83) Vascular disorders of male genital organs\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.83''', NULL,
+ '(608.83) Vascular disorders of male genital organs', '(608.83) Vascular disorders of male genital organs', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.84) Chylocele of tunica vaginalis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.84) Chylocele of tunica vaginalis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.84''', NULL,
+ '(608.84) Chylocele of tunica vaginalis', '(608.84) Chylocele of tunica vaginalis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.85) Stricture of male genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.85) Stricture of male genital organs\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.85''', NULL,
+ '(608.85) Stricture of male genital organs', '(608.85) Stricture of male genital organs', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.86) Edema of male genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.86) Edema of male genital organs\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.86''', NULL,
+ '(608.86) Edema of male genital organs', '(608.86) Edema of male genital organs', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.87) Retrograde ejaculation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.87) Retrograde ejaculation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.87''', NULL,
+ '(608.87) Retrograde ejaculation', '(608.87) Retrograde ejaculation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.89) Other specified disorders of male genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Other specified disorders of male genital organs (608.8)\(608.89) Other specified disorders of male genital organs\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.89''', NULL,
+ '(608.89) Other specified disorders of male genital organs', '(608.89) Other specified disorders of male genital organs', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.2''', NULL,
+ 'Torsion of testis (608.2)', 'Torsion of testis (608.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\(608.20) Torsion of testis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\(608.20) Torsion of testis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.20''', NULL,
+ '(608.20) Torsion of testis, unspecified', '(608.20) Torsion of testis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\(608.21) Extravaginal torsion of spermatic cord\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\(608.21) Extravaginal torsion of spermatic cord\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.21''', NULL,
+ '(608.21) Extravaginal torsion of spermatic cord', '(608.21) Extravaginal torsion of spermatic cord', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\(608.22) Intravaginal torsion of spermatic cord\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\(608.22) Intravaginal torsion of spermatic cord\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.22''', NULL,
+ '(608.22) Intravaginal torsion of spermatic cord', '(608.22) Intravaginal torsion of spermatic cord', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\(608.23) Torsion of appendix testis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\(608.23) Torsion of appendix testis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.23''', NULL,
+ '(608.23) Torsion of appendix testis', '(608.23) Torsion of appendix testis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\(608.24) Torsion of appendix epididymis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of male genital organs (608)\Torsion of testis (608.2)\(608.24) Torsion of appendix epididymis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''608.24''', NULL,
+ '(608.24) Torsion of appendix epididymis', '(608.24) Torsion of appendix epididymis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''602''', NULL,
+ 'Other disorders of prostate (602)', 'Other disorders of prostate (602)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\(602.0) Calculus of prostate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\(602.0) Calculus of prostate\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''602.0''', NULL,
+ '(602.0) Calculus of prostate', '(602.0) Calculus of prostate', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\(602.1) Congestion or hemorrhage of prostate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\(602.1) Congestion or hemorrhage of prostate\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''602.1''', NULL,
+ '(602.1) Congestion or hemorrhage of prostate', '(602.1) Congestion or hemorrhage of prostate', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\(602.2) Atrophy of prostate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\(602.2) Atrophy of prostate\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''602.2''', NULL,
+ '(602.2) Atrophy of prostate', '(602.2) Atrophy of prostate', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\(602.3) Dysplasia of prostate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\(602.3) Dysplasia of prostate\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''602.3''', NULL,
+ '(602.3) Dysplasia of prostate', '(602.3) Dysplasia of prostate', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\(602.8) Other specified disorders of prostate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\(602.8) Other specified disorders of prostate\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''602.8''', NULL,
+ '(602.8) Other specified disorders of prostate', '(602.8) Other specified disorders of prostate', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\(602.9) Unspecified disorder of prostate\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Diseases of male genital organs (600-608.99)\Other disorders of prostate (602)\(602.9) Unspecified disorder of prostate\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''602.9''', NULL,
+ '(602.9) Unspecified disorder of prostate', '(602.9) Unspecified disorder of prostate', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''610'' AND ''612.99''', NULL,
+ 'Disorders of breast (610-612.99)', 'Disorders of breast (610-612.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''610''', NULL,
+ 'Benign mammary dysplasias (610)', 'Benign mammary dysplasias (610)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\(610.0) Solitary cyst of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\(610.0) Solitary cyst of breast\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''610.0''', NULL,
+ '(610.0) Solitary cyst of breast', '(610.0) Solitary cyst of breast', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\(610.1) Diffuse cystic mastopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\(610.1) Diffuse cystic mastopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''610.1''', NULL,
+ '(610.1) Diffuse cystic mastopathy', '(610.1) Diffuse cystic mastopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\(610.2) Fibroadenosis of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\(610.2) Fibroadenosis of breast\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''610.2''', NULL,
+ '(610.2) Fibroadenosis of breast', '(610.2) Fibroadenosis of breast', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\(610.3) Fibrosclerosis of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\(610.3) Fibrosclerosis of breast\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''610.3''', NULL,
+ '(610.3) Fibrosclerosis of breast', '(610.3) Fibrosclerosis of breast', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\(610.4) Mammary duct ectasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\(610.4) Mammary duct ectasia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''610.4''', NULL,
+ '(610.4) Mammary duct ectasia', '(610.4) Mammary duct ectasia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\(610.8) Other specified benign mammary dysplasias\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\(610.8) Other specified benign mammary dysplasias\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''610.8''', NULL,
+ '(610.8) Other specified benign mammary dysplasias', '(610.8) Other specified benign mammary dysplasias', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\(610.9) Benign mammary dysplasia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Benign mammary dysplasias (610)\(610.9) Benign mammary dysplasia, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''610.9''', NULL,
+ '(610.9) Benign mammary dysplasia, unspecified', '(610.9) Benign mammary dysplasia, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Deformity and disproportion of reconstructed breast (612)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Deformity and disproportion of reconstructed breast (612)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''612''', NULL,
+ 'Deformity and disproportion of reconstructed breast (612)', 'Deformity and disproportion of reconstructed breast (612)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Deformity and disproportion of reconstructed breast (612)\(612.0) Deformity of reconstructed breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Deformity and disproportion of reconstructed breast (612)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Deformity and disproportion of reconstructed breast (612)\(612.0) Deformity of reconstructed breast\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''612.0''', NULL,
+ '(612.0) Deformity of reconstructed breast', '(612.0) Deformity of reconstructed breast', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Deformity and disproportion of reconstructed breast (612)\(612.1) Disproportion of reconstructed breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Deformity and disproportion of reconstructed breast (612)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Deformity and disproportion of reconstructed breast (612)\(612.1) Disproportion of reconstructed breast\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''612.1''', NULL,
+ '(612.1) Disproportion of reconstructed breast', '(612.1) Disproportion of reconstructed breast', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611''', NULL,
+ 'Other disorders of breast (611)', 'Other disorders of breast (611)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.0) Inflammatory disease of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.0) Inflammatory disease of breast\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.0''', NULL,
+ '(611.0) Inflammatory disease of breast', '(611.0) Inflammatory disease of breast', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.1) Hypertrophy of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.1) Hypertrophy of breast\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.1''', NULL,
+ '(611.1) Hypertrophy of breast', '(611.1) Hypertrophy of breast', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.2) Fissure of nipple\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.2) Fissure of nipple\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.2''', NULL,
+ '(611.2) Fissure of nipple', '(611.2) Fissure of nipple', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.3) Fat necrosis of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.3) Fat necrosis of breast\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.3''', NULL,
+ '(611.3) Fat necrosis of breast', '(611.3) Fat necrosis of breast', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.4) Atrophy of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.4) Atrophy of breast\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.4''', NULL,
+ '(611.4) Atrophy of breast', '(611.4) Atrophy of breast', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.5) Galactocele\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.5) Galactocele\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.5''', NULL,
+ '(611.5) Galactocele', '(611.5) Galactocele', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.6) Galactorrhea not associated with childbirth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.6) Galactorrhea not associated with childbirth\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.6''', NULL,
+ '(611.6) Galactorrhea not associated with childbirth', '(611.6) Galactorrhea not associated with childbirth', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.9) Unspecified breast disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\(611.9) Unspecified breast disorder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.9''', NULL,
+ '(611.9) Unspecified breast disorder', '(611.9) Unspecified breast disorder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Other specified disorders of breast (611.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Other specified disorders of breast (611.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.8''', NULL,
+ 'Other specified disorders of breast (611.8)', 'Other specified disorders of breast (611.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Other specified disorders of breast (611.8)\(611.81) Ptosis of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Other specified disorders of breast (611.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Other specified disorders of breast (611.8)\(611.81) Ptosis of breast\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.81''', NULL,
+ '(611.81) Ptosis of breast', '(611.81) Ptosis of breast', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Other specified disorders of breast (611.8)\(611.82) Hypoplasia of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Other specified disorders of breast (611.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Other specified disorders of breast (611.8)\(611.82) Hypoplasia of breast\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.82''', NULL,
+ '(611.82) Hypoplasia of breast', '(611.82) Hypoplasia of breast', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Other specified disorders of breast (611.8)\(611.83) Capsular contracture of breast implant\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Other specified disorders of breast (611.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Other specified disorders of breast (611.8)\(611.83) Capsular contracture of breast implant\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.83''', NULL,
+ '(611.83) Capsular contracture of breast implant', '(611.83) Capsular contracture of breast implant', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Other specified disorders of breast (611.8)\(611.89) Other specified disorders of breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Other specified disorders of breast (611.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Other specified disorders of breast (611.8)\(611.89) Other specified disorders of breast\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.89''', NULL,
+ '(611.89) Other specified disorders of breast', '(611.89) Other specified disorders of breast', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Signs and symptoms in breast (611.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Signs and symptoms in breast (611.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.7''', NULL,
+ 'Signs and symptoms in breast (611.7)', 'Signs and symptoms in breast (611.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Signs and symptoms in breast (611.7)\(611.71) Mastodynia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Signs and symptoms in breast (611.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Signs and symptoms in breast (611.7)\(611.71) Mastodynia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.71''', NULL,
+ '(611.71) Mastodynia', '(611.71) Mastodynia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Signs and symptoms in breast (611.7)\(611.72) Lump or mass in breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Signs and symptoms in breast (611.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Signs and symptoms in breast (611.7)\(611.72) Lump or mass in breast\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.72''', NULL,
+ '(611.72) Lump or mass in breast', '(611.72) Lump or mass in breast', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Signs and symptoms in breast (611.7)\(611.79) Other signs and symptoms in breast\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Signs and symptoms in breast (611.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Disorders of breast (610-612.99)\Other disorders of breast (611)\Signs and symptoms in breast (611.7)\(611.79) Other signs and symptoms in breast\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''611.79''', NULL,
+ '(611.79) Other signs and symptoms in breast', '(611.79) Other signs and symptoms in breast', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''614'' AND ''616.99''', NULL,
+ 'Inflammatory disease of female pelvic organs (614-616.99)', 'Inflammatory disease of female pelvic organs (614-616.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''616''', NULL,
+ 'Inflammatory disease of cervix, vagina, and vulva (616)', 'Inflammatory disease of cervix, vagina, and vulva (616)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\(616.0) Cervicitis and endocervicitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\(616.0) Cervicitis and endocervicitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''616.0''', NULL,
+ '(616.0) Cervicitis and endocervicitis', '(616.0) Cervicitis and endocervicitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\(616.2) Cyst of Bartholin''s gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\(616.2) Cyst of Bartholin''s gland\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''616.2''', NULL,
+ '(616.2) Cyst of Bartholin''s gland', '(616.2) Cyst of Bartholin''s gland', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\(616.3) Abscess of Bartholin''s gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\(616.3) Abscess of Bartholin''s gland\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''616.3''', NULL,
+ '(616.3) Abscess of Bartholin''s gland', '(616.3) Abscess of Bartholin''s gland', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\(616.4) Other abscess of vulva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\(616.4) Other abscess of vulva\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''616.4''', NULL,
+ '(616.4) Other abscess of vulva', '(616.4) Other abscess of vulva', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\(616.9) Unspecified inflammatory disease of cervix, vagina, and vulva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\(616.9) Unspecified inflammatory disease of cervix, vagina, and vulva\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''616.9''', NULL,
+ '(616.9) Unspecified inflammatory disease of cervix, vagina, and vulva', '(616.9) Unspecified inflammatory disease of cervix, vagina, and vulva', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Other specified inflammatory diseases of cervix, vagina, and vulva (616.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Other specified inflammatory diseases of cervix, vagina, and vulva (616.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''616.8''', NULL,
+ 'Other specified inflammatory diseases of cervix, vagina, and vulva (616.8)', 'Other specified inflammatory diseases of cervix, vagina, and vulva (616.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Other specified inflammatory diseases of cervix, vagina, and vulva (616.8)\(616.81) Mucositis (ulcerative) of cervix, vagina, and vulva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Other specified inflammatory diseases of cervix, vagina, and vulva (616.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Other specified inflammatory diseases of cervix, vagina, and vulva (616.8)\(616.81) Mucositis (ulcerative) of cervix, vagina, and vulva\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''616.81) Mucositis (ulcerative''', NULL,
+ '(616.81) Mucositis (ulcerative) of cervix, vagina, and vulva', '(616.81) Mucositis (ulcerative) of cervix, vagina, and vulva', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Other specified inflammatory diseases of cervix, vagina, and vulva (616.8)\(616.89) Other inflammatory disease of cervix, vagina and vulva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Other specified inflammatory diseases of cervix, vagina, and vulva (616.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Other specified inflammatory diseases of cervix, vagina, and vulva (616.8)\(616.89) Other inflammatory disease of cervix, vagina and vulva\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''616.89''', NULL,
+ '(616.89) Other inflammatory disease of cervix, vagina and vulva', '(616.89) Other inflammatory disease of cervix, vagina and vulva', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Ulceration of vulva (616.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Ulceration of vulva (616.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''616.5''', NULL,
+ 'Ulceration of vulva (616.5)', 'Ulceration of vulva (616.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Ulceration of vulva (616.5)\(616.50) Ulceration of vulva, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Ulceration of vulva (616.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Ulceration of vulva (616.5)\(616.50) Ulceration of vulva, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''616.50''', NULL,
+ '(616.50) Ulceration of vulva, unspecified', '(616.50) Ulceration of vulva, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Ulceration of vulva (616.5)\(616.51) Ulceration of vulva in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Ulceration of vulva (616.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Ulceration of vulva (616.5)\(616.51) Ulceration of vulva in diseases classified elsewhere\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''616.51''', NULL,
+ '(616.51) Ulceration of vulva in diseases classified elsewhere', '(616.51) Ulceration of vulva in diseases classified elsewhere', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Vaginitis and vulvovaginitis (616.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Vaginitis and vulvovaginitis (616.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''616.1''', NULL,
+ 'Vaginitis and vulvovaginitis (616.1)', 'Vaginitis and vulvovaginitis (616.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Vaginitis and vulvovaginitis (616.1)\(616.10) Vaginitis and vulvovaginitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Vaginitis and vulvovaginitis (616.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Vaginitis and vulvovaginitis (616.1)\(616.10) Vaginitis and vulvovaginitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''616.10''', NULL,
+ '(616.10) Vaginitis and vulvovaginitis, unspecified', '(616.10) Vaginitis and vulvovaginitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Vaginitis and vulvovaginitis (616.1)\(616.11) Vaginitis and vulvovaginitis in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Vaginitis and vulvovaginitis (616.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of cervix, vagina, and vulva (616)\Vaginitis and vulvovaginitis (616.1)\(616.11) Vaginitis and vulvovaginitis in diseases classified elsewhere\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''616.11''', NULL,
+ '(616.11) Vaginitis and vulvovaginitis in diseases classified elsewhere', '(616.11) Vaginitis and vulvovaginitis in diseases classified elsewhere', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''614''', NULL,
+ 'Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)', 'Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.0) Acute salpingitis and oophoritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.0) Acute salpingitis and oophoritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''614.0''', NULL,
+ '(614.0) Acute salpingitis and oophoritis', '(614.0) Acute salpingitis and oophoritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.1) Chronic salpingitis and oophoritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.1) Chronic salpingitis and oophoritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''614.1''', NULL,
+ '(614.1) Chronic salpingitis and oophoritis', '(614.1) Chronic salpingitis and oophoritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.2) Salpingitis and oophoritis not specified as acute, subacute, or chronic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.2) Salpingitis and oophoritis not specified as acute, subacute, or chronic\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''614.2''', NULL,
+ '(614.2) Salpingitis and oophoritis not specified as acute, subacute, or chronic', '(614.2) Salpingitis and oophoritis not specified as acute, subacute, or chronic', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.3) Acute parametritis and pelvic cellulitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.3) Acute parametritis and pelvic cellulitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''614.3''', NULL,
+ '(614.3) Acute parametritis and pelvic cellulitis', '(614.3) Acute parametritis and pelvic cellulitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.4) Chronic or unspecified parametritis and pelvic cellulitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.4) Chronic or unspecified parametritis and pelvic cellulitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''614.4''', NULL,
+ '(614.4) Chronic or unspecified parametritis and pelvic cellulitis', '(614.4) Chronic or unspecified parametritis and pelvic cellulitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.5) Acute or unspecified pelvic peritonitis, female\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.5) Acute or unspecified pelvic peritonitis, female\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''614.5''', NULL,
+ '(614.5) Acute or unspecified pelvic peritonitis, female', '(614.5) Acute or unspecified pelvic peritonitis, female', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.6) Pelvic peritoneal adhesions, female (postoperative) (postinfection)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.6) Pelvic peritoneal adhesions, female (postoperative) (postinfection)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''614.6) Pelvic peritoneal adhesions, female (postoperative) (postinfection''', NULL,
+ '(614.6) Pelvic peritoneal adhesions, female (postoperative) (postinfection)', '(614.6) Pelvic peritoneal adhesions, female (postoperative) (postinfection)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.7) Other chronic pelvic peritonitis, female\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.7) Other chronic pelvic peritonitis, female\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''614.7''', NULL,
+ '(614.7) Other chronic pelvic peritonitis, female', '(614.7) Other chronic pelvic peritonitis, female', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.8) Other specified inflammatory disease of female pelvic organs and tissues\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.8) Other specified inflammatory disease of female pelvic organs and tissues\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''614.8''', NULL,
+ '(614.8) Other specified inflammatory disease of female pelvic organs and tissues', '(614.8) Other specified inflammatory disease of female pelvic organs and tissues', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.9) Unspecified inflammatory disease of female pelvic organs and tissues\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory disease of ovary, fallopian tube, pelvic cellular tissue, and peritoneum (614)\(614.9) Unspecified inflammatory disease of female pelvic organs and tissues\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''614.9''', NULL,
+ '(614.9) Unspecified inflammatory disease of female pelvic organs and tissues', '(614.9) Unspecified inflammatory disease of female pelvic organs and tissues', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory diseases of uterus, except cervix (615)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory diseases of uterus, except cervix (615)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''615''', NULL,
+ 'Inflammatory diseases of uterus, except cervix (615)', 'Inflammatory diseases of uterus, except cervix (615)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory diseases of uterus, except cervix (615)\(615.0) Acute inflammatory diseases of uterus, except cervix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory diseases of uterus, except cervix (615)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory diseases of uterus, except cervix (615)\(615.0) Acute inflammatory diseases of uterus, except cervix\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''615.0''', NULL,
+ '(615.0) Acute inflammatory diseases of uterus, except cervix', '(615.0) Acute inflammatory diseases of uterus, except cervix', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory diseases of uterus, except cervix (615)\(615.1) Chronic inflammatory diseases of uterus, except cervix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory diseases of uterus, except cervix (615)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory diseases of uterus, except cervix (615)\(615.1) Chronic inflammatory diseases of uterus, except cervix\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''615.1''', NULL,
+ '(615.1) Chronic inflammatory diseases of uterus, except cervix', '(615.1) Chronic inflammatory diseases of uterus, except cervix', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory diseases of uterus, except cervix (615)\(615.9) Unspecified inflammatory disease of uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory diseases of uterus, except cervix (615)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Inflammatory disease of female pelvic organs (614-616.99)\Inflammatory diseases of uterus, except cervix (615)\(615.9) Unspecified inflammatory disease of uterus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''615.9''', NULL,
+ '(615.9) Unspecified inflammatory disease of uterus', '(615.9) Unspecified inflammatory disease of uterus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''580'' AND ''589.99''', NULL,
+ 'Nephritis, nephrotic syndrome, and nephrosis (580-589.99)', 'Nephritis, nephrotic syndrome, and nephrosis (580-589.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\(586) Renal failure, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\(586) Renal failure, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''586''', NULL,
+ '(586) Renal failure, unspecified', '(586) Renal failure, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\(587) Renal sclerosis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\(587) Renal sclerosis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''587''', NULL,
+ '(587) Renal sclerosis, unspecified', '(587) Renal sclerosis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''580''', NULL,
+ 'Acute glomerulonephritis (580)', 'Acute glomerulonephritis (580)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\(580.0) Acute glomerulonephritis with lesion of proliferative glomerulonephritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\(580.0) Acute glomerulonephritis with lesion of proliferative glomerulonephritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''580.0''', NULL,
+ '(580.0) Acute glomerulonephritis with lesion of proliferative glomerulonephritis', '(580.0) Acute glomerulonephritis with lesion of proliferative glomerulonephritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\(580.4) Acute glomerulonephritis with lesion of rapidly progressive glomerulonephritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\(580.4) Acute glomerulonephritis with lesion of rapidly progressive glomerulonephritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''580.4''', NULL,
+ '(580.4) Acute glomerulonephritis with lesion of rapidly progressive glomerulonephritis', '(580.4) Acute glomerulonephritis with lesion of rapidly progressive glomerulonephritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\(580.9) Acute glomerulonephritis with unspecified pathological lesion in kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\(580.9) Acute glomerulonephritis with unspecified pathological lesion in kidney\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''580.9''', NULL,
+ '(580.9) Acute glomerulonephritis with unspecified pathological lesion in kidney', '(580.9) Acute glomerulonephritis with unspecified pathological lesion in kidney', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\Acute glomerulonephritis with other specified pathological lesion in kidney (580.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\Acute glomerulonephritis with other specified pathological lesion in kidney (580.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''580.8''', NULL,
+ 'Acute glomerulonephritis with other specified pathological lesion in kidney (580.8)', 'Acute glomerulonephritis with other specified pathological lesion in kidney (580.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\Acute glomerulonephritis with other specified pathological lesion in kidney (580.8)\(580.81) Acute glomerulonephritis in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\Acute glomerulonephritis with other specified pathological lesion in kidney (580.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\Acute glomerulonephritis with other specified pathological lesion in kidney (580.8)\(580.81) Acute glomerulonephritis in diseases classified elsewhere\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''580.81''', NULL,
+ '(580.81) Acute glomerulonephritis in diseases classified elsewhere', '(580.81) Acute glomerulonephritis in diseases classified elsewhere', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\Acute glomerulonephritis with other specified pathological lesion in kidney (580.8)\(580.89) Acute glomerulonephritis with other specified pathological lesion in kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\Acute glomerulonephritis with other specified pathological lesion in kidney (580.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute glomerulonephritis (580)\Acute glomerulonephritis with other specified pathological lesion in kidney (580.8)\(580.89) Acute glomerulonephritis with other specified pathological lesion in kidney\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''580.89''', NULL,
+ '(580.89) Acute glomerulonephritis with other specified pathological lesion in kidney', '(580.89) Acute glomerulonephritis with other specified pathological lesion in kidney', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''584''', NULL,
+ 'Acute kidney failure (584)', 'Acute kidney failure (584)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\(584.5) Acute kidney failure with lesion of tubular necrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\(584.5) Acute kidney failure with lesion of tubular necrosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''584.5''', NULL,
+ '(584.5) Acute kidney failure with lesion of tubular necrosis', '(584.5) Acute kidney failure with lesion of tubular necrosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\(584.6) Acute kidney failure with lesion of renal cortical necrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\(584.6) Acute kidney failure with lesion of renal cortical necrosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''584.6''', NULL,
+ '(584.6) Acute kidney failure with lesion of renal cortical necrosis', '(584.6) Acute kidney failure with lesion of renal cortical necrosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\(584.7) Acute kidney failure with lesion of renal medullary [papillary] necrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\(584.7) Acute kidney failure with lesion of renal medullary [papillary] necrosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''584.7''', NULL,
+ '(584.7) Acute kidney failure with lesion of renal medullary [papillary] necrosis', '(584.7) Acute kidney failure with lesion of renal medullary [papillary] necrosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\(584.8) Acute kidney failure with other specified pathological lesion in kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\(584.8) Acute kidney failure with other specified pathological lesion in kidney\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''584.8''', NULL,
+ '(584.8) Acute kidney failure with other specified pathological lesion in kidney', '(584.8) Acute kidney failure with other specified pathological lesion in kidney', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\(584.9) Acute kidney failure, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Acute kidney failure (584)\(584.9) Acute kidney failure, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''584.9''', NULL,
+ '(584.9) Acute kidney failure, unspecified', '(584.9) Acute kidney failure, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''582''', NULL,
+ 'Chronic glomerulonephritis (582)', 'Chronic glomerulonephritis (582)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\(582.0) Chronic glomerulonephritis with lesion of proliferative glomerulonephritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\(582.0) Chronic glomerulonephritis with lesion of proliferative glomerulonephritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''582.0''', NULL,
+ '(582.0) Chronic glomerulonephritis with lesion of proliferative glomerulonephritis', '(582.0) Chronic glomerulonephritis with lesion of proliferative glomerulonephritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\(582.1) Chronic glomerulonephritis with lesion of membranous glomerulonephritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\(582.1) Chronic glomerulonephritis with lesion of membranous glomerulonephritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''582.1''', NULL,
+ '(582.1) Chronic glomerulonephritis with lesion of membranous glomerulonephritis', '(582.1) Chronic glomerulonephritis with lesion of membranous glomerulonephritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\(582.2) Chronic glomerulonephritis with lesion of membranoproliferative glomerulonephritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\(582.2) Chronic glomerulonephritis with lesion of membranoproliferative glomerulonephritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''582.2''', NULL,
+ '(582.2) Chronic glomerulonephritis with lesion of membranoproliferative glomerulonephritis', '(582.2) Chronic glomerulonephritis with lesion of membranoproliferative glomerulonephritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\(582.4) Chronic glomerulonephritis with lesion of rapidly progressive glomerulonephritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\(582.4) Chronic glomerulonephritis with lesion of rapidly progressive glomerulonephritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''582.4''', NULL,
+ '(582.4) Chronic glomerulonephritis with lesion of rapidly progressive glomerulonephritis', '(582.4) Chronic glomerulonephritis with lesion of rapidly progressive glomerulonephritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\(582.9) Chronic glomerulonephritis with unspecified pathological lesion in kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\(582.9) Chronic glomerulonephritis with unspecified pathological lesion in kidney\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''582.9''', NULL,
+ '(582.9) Chronic glomerulonephritis with unspecified pathological lesion in kidney', '(582.9) Chronic glomerulonephritis with unspecified pathological lesion in kidney', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\Chronic glomerulonephritis with other specified pathological lesion in kidney (582.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\Chronic glomerulonephritis with other specified pathological lesion in kidney (582.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''582.8''', NULL,
+ 'Chronic glomerulonephritis with other specified pathological lesion in kidney (582.8)', 'Chronic glomerulonephritis with other specified pathological lesion in kidney (582.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\Chronic glomerulonephritis with other specified pathological lesion in kidney (582.8)\(582.81) Chronic glomerulonephritis in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\Chronic glomerulonephritis with other specified pathological lesion in kidney (582.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\Chronic glomerulonephritis with other specified pathological lesion in kidney (582.8)\(582.81) Chronic glomerulonephritis in diseases classified elsewhere\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''582.81''', NULL,
+ '(582.81) Chronic glomerulonephritis in diseases classified elsewhere', '(582.81) Chronic glomerulonephritis in diseases classified elsewhere', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\Chronic glomerulonephritis with other specified pathological lesion in kidney (582.8)\(582.89) Chronic glomerulonephritis with other specified pathological lesion in kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\Chronic glomerulonephritis with other specified pathological lesion in kidney (582.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic glomerulonephritis (582)\Chronic glomerulonephritis with other specified pathological lesion in kidney (582.8)\(582.89) Chronic glomerulonephritis with other specified pathological lesion in kidney\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''582.89''', NULL,
+ '(582.89) Chronic glomerulonephritis with other specified pathological lesion in kidney', '(582.89) Chronic glomerulonephritis with other specified pathological lesion in kidney', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''CKD) (585''', NULL,
+ 'Chronic kidney disease (CKD) (585)', 'Chronic kidney disease (CKD) (585)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\(585.1) Chronic kidney disease, Stage I\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\(585.1) Chronic kidney disease, Stage I\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''585.1''', NULL,
+ '(585.1) Chronic kidney disease, Stage I', '(585.1) Chronic kidney disease, Stage I', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\(585.2) Chronic kidney disease, Stage II (mild)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\(585.2) Chronic kidney disease, Stage II (mild)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''585.2) Chronic kidney disease, Stage II (mild''', NULL,
+ '(585.2) Chronic kidney disease, Stage II (mild)', '(585.2) Chronic kidney disease, Stage II (mild)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\(585.3) Chronic kidney disease, Stage III (moderate)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\(585.3) Chronic kidney disease, Stage III (moderate)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''585.3) Chronic kidney disease, Stage III (moderate''', NULL,
+ '(585.3) Chronic kidney disease, Stage III (moderate)', '(585.3) Chronic kidney disease, Stage III (moderate)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\(585.4) Chronic kidney disease, Stage IV (severe)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\(585.4) Chronic kidney disease, Stage IV (severe)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''585.4) Chronic kidney disease, Stage IV (severe''', NULL,
+ '(585.4) Chronic kidney disease, Stage IV (severe)', '(585.4) Chronic kidney disease, Stage IV (severe)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\(585.5) Chronic kidney disease, Stage V\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\(585.5) Chronic kidney disease, Stage V\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''585.5''', NULL,
+ '(585.5) Chronic kidney disease, Stage V', '(585.5) Chronic kidney disease, Stage V', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\(585.6) End stage renal disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\(585.6) End stage renal disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''585.6''', NULL,
+ '(585.6) End stage renal disease', '(585.6) End stage renal disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\(585.9) Chronic kidney disease, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Chronic kidney disease (CKD) (585)\(585.9) Chronic kidney disease, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''585.9''', NULL,
+ '(585.9) Chronic kidney disease, unspecified', '(585.9) Chronic kidney disease, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''588''', NULL,
+ 'Disorders resulting from impaired renal function (588)', 'Disorders resulting from impaired renal function (588)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\(588.0) Renal osteodystrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\(588.0) Renal osteodystrophy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''588.0''', NULL,
+ '(588.0) Renal osteodystrophy', '(588.0) Renal osteodystrophy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\(588.1) Nephrogenic diabetes insipidus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\(588.1) Nephrogenic diabetes insipidus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''588.1''', NULL,
+ '(588.1) Nephrogenic diabetes insipidus', '(588.1) Nephrogenic diabetes insipidus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\(588.9) Unspecified disorder resulting from impaired renal function\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\(588.9) Unspecified disorder resulting from impaired renal function\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''588.9''', NULL,
+ '(588.9) Unspecified disorder resulting from impaired renal function', '(588.9) Unspecified disorder resulting from impaired renal function', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\Other specified disorders resulting from impaired renal function (588.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\Other specified disorders resulting from impaired renal function (588.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''588.8''', NULL,
+ 'Other specified disorders resulting from impaired renal function (588.8)', 'Other specified disorders resulting from impaired renal function (588.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\Other specified disorders resulting from impaired renal function (588.8)\(588.81) Secondary hyperparathyroidism (of renal origin)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\Other specified disorders resulting from impaired renal function (588.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\Other specified disorders resulting from impaired renal function (588.8)\(588.81) Secondary hyperparathyroidism (of renal origin)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''588.81) Secondary hyperparathyroidism (of renal origin''', NULL,
+ '(588.81) Secondary hyperparathyroidism (of renal origin)', '(588.81) Secondary hyperparathyroidism (of renal origin)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\Other specified disorders resulting from impaired renal function (588.8)\(588.89) Other specified disorders resulting from impaired renal function\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\Other specified disorders resulting from impaired renal function (588.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Disorders resulting from impaired renal function (588)\Other specified disorders resulting from impaired renal function (588.8)\(588.89) Other specified disorders resulting from impaired renal function\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''588.89''', NULL,
+ '(588.89) Other specified disorders resulting from impaired renal function', '(588.89) Other specified disorders resulting from impaired renal function', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''583''', NULL,
+ 'Nephritis and nephropathy, not specified as acute or chronic (583)', 'Nephritis and nephropathy, not specified as acute or chronic (583)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\(583.0) Nephritis and nephropathy, not specified as acute or chronic, with lesion of proliferative glomerulonephritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\(583.0) Nephritis and nephropathy, not specified as acute or chronic, with lesion of proliferative glomerulonephritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''583.0''', NULL,
+ '(583.0) Nephritis and nephropathy, not specified as acute or chronic, with lesion of proliferative glomerulonephritis', '(583.0) Nephritis and nephropathy, not specified as acute or chronic, with lesion of proliferative glomerulonephritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\(583.1) Nephritis and nephropathy, not specified as acute or chronic, with lesion of membranous glomerulonephritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\(583.1) Nephritis and nephropathy, not specified as acute or chronic, with lesion of membranous glomerulonephritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''583.1''', NULL,
+ '(583.1) Nephritis and nephropathy, not specified as acute or chronic, with lesion of membranous glomerulonephritis', '(583.1) Nephritis and nephropathy, not specified as acute or chronic, with lesion of membranous glomerulonephritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\(583.2) Nephritis and nephropathy, not specified as acute or chronic, with lesion of membranoproliferative glomerulonephritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\(583.2) Nephritis and nephropathy, not specified as acute or chronic, with lesion of membranoproliferative glomerulonephritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''583.2''', NULL,
+ '(583.2) Nephritis and nephropathy, not specified as acute or chronic, with lesion of membranoproliferative glomerulonephritis', '(583.2) Nephritis and nephropathy, not specified as acute or chronic, with lesion of membranoproliferative glomerulonephritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\(583.4) Nephritis and nephropathy, not specified as acute or chronic, with lesion of rapidly progressive glomerulonephritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\(583.4) Nephritis and nephropathy, not specified as acute or chronic, with lesion of rapidly progressive glomerulonephritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''583.4''', NULL,
+ '(583.4) Nephritis and nephropathy, not specified as acute or chronic, with lesion of rapidly progressive glomerulonephritis', '(583.4) Nephritis and nephropathy, not specified as acute or chronic, with lesion of rapidly progressive glomerulonephritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\(583.6) Nephritis and nephropathy, not specified as acute or chronic, with lesion of renal cortical necrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\(583.6) Nephritis and nephropathy, not specified as acute or chronic, with lesion of renal cortical necrosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''583.6''', NULL,
+ '(583.6) Nephritis and nephropathy, not specified as acute or chronic, with lesion of renal cortical necrosis', '(583.6) Nephritis and nephropathy, not specified as acute or chronic, with lesion of renal cortical necrosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\(583.7) Nephritis and nephropathy, not specified as acute or chronic, with lesion of renal medullary necrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\(583.7) Nephritis and nephropathy, not specified as acute or chronic, with lesion of renal medullary necrosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''583.7''', NULL,
+ '(583.7) Nephritis and nephropathy, not specified as acute or chronic, with lesion of renal medullary necrosis', '(583.7) Nephritis and nephropathy, not specified as acute or chronic, with lesion of renal medullary necrosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\(583.9) Nephritis and nephropathy, not specified as acute or chronic, with unspecified pathological lesion in kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\(583.9) Nephritis and nephropathy, not specified as acute or chronic, with unspecified pathological lesion in kidney\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''583.9''', NULL,
+ '(583.9) Nephritis and nephropathy, not specified as acute or chronic, with unspecified pathological lesion in kidney', '(583.9) Nephritis and nephropathy, not specified as acute or chronic, with unspecified pathological lesion in kidney', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney (583.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney (583.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''583.8''', NULL,
+ 'Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney (583.8)', 'Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney (583.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney (583.8)\(583.81) Nephritis and nephropathy, not specified as acute or chronic, in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney (583.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney (583.8)\(583.81) Nephritis and nephropathy, not specified as acute or chronic, in diseases classified elsewhere\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''583.81''', NULL,
+ '(583.81) Nephritis and nephropathy, not specified as acute or chronic, in diseases classified elsewhere', '(583.81) Nephritis and nephropathy, not specified as acute or chronic, in diseases classified elsewhere', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney (583.8)\(583.89) Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney (583.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephritis and nephropathy, not specified as acute or chronic (583)\Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney (583.8)\(583.89) Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''583.89''', NULL,
+ '(583.89) Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney', '(583.89) Nephritis and nephropathy, not specified as acute or chronic, with other specified pathological lesion in kidney', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''581''', NULL,
+ 'Nephrotic syndrome (581)', 'Nephrotic syndrome (581)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\(581.0) Nephrotic syndrome with lesion of proliferative glomerulonephritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\(581.0) Nephrotic syndrome with lesion of proliferative glomerulonephritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''581.0''', NULL,
+ '(581.0) Nephrotic syndrome with lesion of proliferative glomerulonephritis', '(581.0) Nephrotic syndrome with lesion of proliferative glomerulonephritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\(581.1) Nephrotic syndrome with lesion of membranous glomerulonephritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\(581.1) Nephrotic syndrome with lesion of membranous glomerulonephritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''581.1''', NULL,
+ '(581.1) Nephrotic syndrome with lesion of membranous glomerulonephritis', '(581.1) Nephrotic syndrome with lesion of membranous glomerulonephritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\(581.2) Nephrotic syndrome with lesion of membranoproliferative glomerulonephritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\(581.2) Nephrotic syndrome with lesion of membranoproliferative glomerulonephritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''581.2''', NULL,
+ '(581.2) Nephrotic syndrome with lesion of membranoproliferative glomerulonephritis', '(581.2) Nephrotic syndrome with lesion of membranoproliferative glomerulonephritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\(581.3) Nephrotic syndrome with lesion of minimal change glomerulonephritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\(581.3) Nephrotic syndrome with lesion of minimal change glomerulonephritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''581.3''', NULL,
+ '(581.3) Nephrotic syndrome with lesion of minimal change glomerulonephritis', '(581.3) Nephrotic syndrome with lesion of minimal change glomerulonephritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\(581.9) Nephrotic syndrome with unspecified pathological lesion in kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\(581.9) Nephrotic syndrome with unspecified pathological lesion in kidney\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''581.9''', NULL,
+ '(581.9) Nephrotic syndrome with unspecified pathological lesion in kidney', '(581.9) Nephrotic syndrome with unspecified pathological lesion in kidney', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\Nephrotic syndrome with other specified pathological lesion in kidney (581.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\Nephrotic syndrome with other specified pathological lesion in kidney (581.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''581.8''', NULL,
+ 'Nephrotic syndrome with other specified pathological lesion in kidney (581.8)', 'Nephrotic syndrome with other specified pathological lesion in kidney (581.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\Nephrotic syndrome with other specified pathological lesion in kidney (581.8)\(581.81) Nephrotic syndrome in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\Nephrotic syndrome with other specified pathological lesion in kidney (581.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\Nephrotic syndrome with other specified pathological lesion in kidney (581.8)\(581.81) Nephrotic syndrome in diseases classified elsewhere\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''581.81''', NULL,
+ '(581.81) Nephrotic syndrome in diseases classified elsewhere', '(581.81) Nephrotic syndrome in diseases classified elsewhere', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\Nephrotic syndrome with other specified pathological lesion in kidney (581.8)\(581.89) Nephrotic syndrome with other specified pathological lesion in kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\Nephrotic syndrome with other specified pathological lesion in kidney (581.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Nephrotic syndrome (581)\Nephrotic syndrome with other specified pathological lesion in kidney (581.8)\(581.89) Nephrotic syndrome with other specified pathological lesion in kidney\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''581.89''', NULL,
+ '(581.89) Nephrotic syndrome with other specified pathological lesion in kidney', '(581.89) Nephrotic syndrome with other specified pathological lesion in kidney', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Small kidney of unknown cause (589)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Small kidney of unknown cause (589)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''589''', NULL,
+ 'Small kidney of unknown cause (589)', 'Small kidney of unknown cause (589)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Small kidney of unknown cause (589)\(589.0) Unilateral small kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Small kidney of unknown cause (589)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Small kidney of unknown cause (589)\(589.0) Unilateral small kidney\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''589.0''', NULL,
+ '(589.0) Unilateral small kidney', '(589.0) Unilateral small kidney', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Small kidney of unknown cause (589)\(589.1) Bilateral small kidneys\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Small kidney of unknown cause (589)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Small kidney of unknown cause (589)\(589.1) Bilateral small kidneys\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''589.1''', NULL,
+ '(589.1) Bilateral small kidneys', '(589.1) Bilateral small kidneys', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Small kidney of unknown cause (589)\(589.9) Small kidney, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Small kidney of unknown cause (589)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Nephritis, nephrotic syndrome, and nephrosis (580-589.99)\Small kidney of unknown cause (589)\(589.9) Small kidney, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''589.9''', NULL,
+ '(589.9) Small kidney, unspecified', '(589.9) Small kidney, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''590'' AND ''599.99''', NULL,
+ 'Other diseases of urinary system (590-599.99)', 'Other diseases of urinary system (590-599.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\(591) Hydronephrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\(591) Hydronephrosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''591''', NULL,
+ '(591) Hydronephrosis', '(591) Hydronephrosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of kidney and ureter (592)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of kidney and ureter (592)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''592''', NULL,
+ 'Calculus of kidney and ureter (592)', 'Calculus of kidney and ureter (592)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of kidney and ureter (592)\(592.0) Calculus of kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of kidney and ureter (592)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of kidney and ureter (592)\(592.0) Calculus of kidney\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''592.0''', NULL,
+ '(592.0) Calculus of kidney', '(592.0) Calculus of kidney', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of kidney and ureter (592)\(592.1) Calculus of ureter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of kidney and ureter (592)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of kidney and ureter (592)\(592.1) Calculus of ureter\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''592.1''', NULL,
+ '(592.1) Calculus of ureter', '(592.1) Calculus of ureter', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of kidney and ureter (592)\(592.9) Urinary calculus, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of kidney and ureter (592)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of kidney and ureter (592)\(592.9) Urinary calculus, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''592.9''', NULL,
+ '(592.9) Urinary calculus, unspecified', '(592.9) Urinary calculus, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''594''', NULL,
+ 'Calculus of lower urinary tract (594)', 'Calculus of lower urinary tract (594)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\(594.0) Calculus in diverticulum of bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\(594.0) Calculus in diverticulum of bladder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''594.0''', NULL,
+ '(594.0) Calculus in diverticulum of bladder', '(594.0) Calculus in diverticulum of bladder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\(594.1) Other calculus in bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\(594.1) Other calculus in bladder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''594.1''', NULL,
+ '(594.1) Other calculus in bladder', '(594.1) Other calculus in bladder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\(594.2) Calculus in urethra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\(594.2) Calculus in urethra\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''594.2''', NULL,
+ '(594.2) Calculus in urethra', '(594.2) Calculus in urethra', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\(594.8) Other lower urinary tract calculus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\(594.8) Other lower urinary tract calculus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''594.8''', NULL,
+ '(594.8) Other lower urinary tract calculus', '(594.8) Other lower urinary tract calculus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\(594.9) Calculus of lower urinary tract, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Calculus of lower urinary tract (594)\(594.9) Calculus of lower urinary tract, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''594.9''', NULL,
+ '(594.9) Calculus of lower urinary tract, unspecified', '(594.9) Calculus of lower urinary tract, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''595''', NULL,
+ 'Cystitis (595)', 'Cystitis (595)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\(595.0) Acute cystitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\(595.0) Acute cystitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''595.0''', NULL,
+ '(595.0) Acute cystitis', '(595.0) Acute cystitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\(595.1) Chronic interstitial cystitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\(595.1) Chronic interstitial cystitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''595.1''', NULL,
+ '(595.1) Chronic interstitial cystitis', '(595.1) Chronic interstitial cystitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\(595.2) Other chronic cystitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\(595.2) Other chronic cystitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''595.2''', NULL,
+ '(595.2) Other chronic cystitis', '(595.2) Other chronic cystitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\(595.3) Trigonitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\(595.3) Trigonitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''595.3''', NULL,
+ '(595.3) Trigonitis', '(595.3) Trigonitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\(595.4) Cystitis in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\(595.4) Cystitis in diseases classified elsewhere\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''595.4''', NULL,
+ '(595.4) Cystitis in diseases classified elsewhere', '(595.4) Cystitis in diseases classified elsewhere', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\(595.9) Cystitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\(595.9) Cystitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''595.9''', NULL,
+ '(595.9) Cystitis, unspecified', '(595.9) Cystitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\Other specified types of cystitis (595.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\Other specified types of cystitis (595.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''595.8''', NULL,
+ 'Other specified types of cystitis (595.8)', 'Other specified types of cystitis (595.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\Other specified types of cystitis (595.8)\(595.81) Cystitis cystica\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\Other specified types of cystitis (595.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\Other specified types of cystitis (595.8)\(595.81) Cystitis cystica\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''595.81''', NULL,
+ '(595.81) Cystitis cystica', '(595.81) Cystitis cystica', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\Other specified types of cystitis (595.8)\(595.82) Irradiation cystitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\Other specified types of cystitis (595.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\Other specified types of cystitis (595.8)\(595.82) Irradiation cystitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''595.82''', NULL,
+ '(595.82) Irradiation cystitis', '(595.82) Irradiation cystitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\Other specified types of cystitis (595.8)\(595.89) Other specified types of cystitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\Other specified types of cystitis (595.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Cystitis (595)\Other specified types of cystitis (595.8)\(595.89) Other specified types of cystitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''595.89''', NULL,
+ '(595.89) Other specified types of cystitis', '(595.89) Other specified types of cystitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''590''', NULL,
+ 'Infections of kidney (590)', 'Infections of kidney (590)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\(590.2) Renal and perinephric abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\(590.2) Renal and perinephric abscess\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''590.2''', NULL,
+ '(590.2) Renal and perinephric abscess', '(590.2) Renal and perinephric abscess', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\(590.3) Pyeloureteritis cystica\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\(590.3) Pyeloureteritis cystica\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''590.3''', NULL,
+ '(590.3) Pyeloureteritis cystica', '(590.3) Pyeloureteritis cystica', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\(590.9) Infection of kidney, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\(590.9) Infection of kidney, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''590.9''', NULL,
+ '(590.9) Infection of kidney, unspecified', '(590.9) Infection of kidney, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Acute pyelonephritis (590.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Acute pyelonephritis (590.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''590.1''', NULL,
+ 'Acute pyelonephritis (590.1)', 'Acute pyelonephritis (590.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Acute pyelonephritis (590.1)\(590.10) Acute pyelonephritis without lesion of renal medullary necrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Acute pyelonephritis (590.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Acute pyelonephritis (590.1)\(590.10) Acute pyelonephritis without lesion of renal medullary necrosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''590.10''', NULL,
+ '(590.10) Acute pyelonephritis without lesion of renal medullary necrosis', '(590.10) Acute pyelonephritis without lesion of renal medullary necrosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Acute pyelonephritis (590.1)\(590.11) Acute pyelonephritis with lesion of renal medullary necrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Acute pyelonephritis (590.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Acute pyelonephritis (590.1)\(590.11) Acute pyelonephritis with lesion of renal medullary necrosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''590.11''', NULL,
+ '(590.11) Acute pyelonephritis with lesion of renal medullary necrosis', '(590.11) Acute pyelonephritis with lesion of renal medullary necrosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Chronic pyelonephritis (590.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Chronic pyelonephritis (590.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''590.0''', NULL,
+ 'Chronic pyelonephritis (590.0)', 'Chronic pyelonephritis (590.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Chronic pyelonephritis (590.0)\(590.00) Chronic pyelonephritis without lesion of renal medullary necrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Chronic pyelonephritis (590.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Chronic pyelonephritis (590.0)\(590.00) Chronic pyelonephritis without lesion of renal medullary necrosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''590.00''', NULL,
+ '(590.00) Chronic pyelonephritis without lesion of renal medullary necrosis', '(590.00) Chronic pyelonephritis without lesion of renal medullary necrosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Chronic pyelonephritis (590.0)\(590.01) Chronic pyelonephritis with lesion of renal medullary necrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Chronic pyelonephritis (590.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Chronic pyelonephritis (590.0)\(590.01) Chronic pyelonephritis with lesion of renal medullary necrosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''590.01''', NULL,
+ '(590.01) Chronic pyelonephritis with lesion of renal medullary necrosis', '(590.01) Chronic pyelonephritis with lesion of renal medullary necrosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Other pyelonephritis or pyonephrosis, not specified as acute or chronic (590.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Other pyelonephritis or pyonephrosis, not specified as acute or chronic (590.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''590.8''', NULL,
+ 'Other pyelonephritis or pyonephrosis, not specified as acute or chronic (590.8)', 'Other pyelonephritis or pyonephrosis, not specified as acute or chronic (590.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Other pyelonephritis or pyonephrosis, not specified as acute or chronic (590.8)\(590.80) Pyelonephritis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Other pyelonephritis or pyonephrosis, not specified as acute or chronic (590.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Other pyelonephritis or pyonephrosis, not specified as acute or chronic (590.8)\(590.80) Pyelonephritis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''590.80''', NULL,
+ '(590.80) Pyelonephritis, unspecified', '(590.80) Pyelonephritis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Other pyelonephritis or pyonephrosis, not specified as acute or chronic (590.8)\(590.81) Pyelitis or pyelonephritis in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Other pyelonephritis or pyonephrosis, not specified as acute or chronic (590.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Infections of kidney (590)\Other pyelonephritis or pyonephrosis, not specified as acute or chronic (590.8)\(590.81) Pyelitis or pyelonephritis in diseases classified elsewhere\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''590.81''', NULL,
+ '(590.81) Pyelitis or pyelonephritis in diseases classified elsewhere', '(590.81) Pyelitis or pyelonephritis in diseases classified elsewhere', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596''', NULL,
+ 'Other disorders of bladder (596)', 'Other disorders of bladder (596)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.0) Bladder neck obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.0) Bladder neck obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.0''', NULL,
+ '(596.0) Bladder neck obstruction', '(596.0) Bladder neck obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.1) Intestinovesical fistula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.1) Intestinovesical fistula\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.1''', NULL,
+ '(596.1) Intestinovesical fistula', '(596.1) Intestinovesical fistula', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.2) Vesical fistula, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.2) Vesical fistula, not elsewhere classified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.2''', NULL,
+ '(596.2) Vesical fistula, not elsewhere classified', '(596.2) Vesical fistula, not elsewhere classified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.3) Diverticulum of bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.3) Diverticulum of bladder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.3''', NULL,
+ '(596.3) Diverticulum of bladder', '(596.3) Diverticulum of bladder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.4) Atony of bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.4) Atony of bladder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.4''', NULL,
+ '(596.4) Atony of bladder', '(596.4) Atony of bladder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.6) Rupture of bladder, nontraumatic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.6) Rupture of bladder, nontraumatic\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.6''', NULL,
+ '(596.6) Rupture of bladder, nontraumatic', '(596.6) Rupture of bladder, nontraumatic', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.7) Hemorrhage into bladder wall\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.7) Hemorrhage into bladder wall\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.7''', NULL,
+ '(596.7) Hemorrhage into bladder wall', '(596.7) Hemorrhage into bladder wall', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.9) Unspecified disorder of bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\(596.9) Unspecified disorder of bladder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.9''', NULL,
+ '(596.9) Unspecified disorder of bladder', '(596.9) Unspecified disorder of bladder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.5''', NULL,
+ 'Other functional disorders of bladder (596.5)', 'Other functional disorders of bladder (596.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\(596.51) Hypertonicity of bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\(596.51) Hypertonicity of bladder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.51''', NULL,
+ '(596.51) Hypertonicity of bladder', '(596.51) Hypertonicity of bladder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\(596.52) Low bladder compliance\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\(596.52) Low bladder compliance\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.52''', NULL,
+ '(596.52) Low bladder compliance', '(596.52) Low bladder compliance', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\(596.53) Paralysis of bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\(596.53) Paralysis of bladder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.53''', NULL,
+ '(596.53) Paralysis of bladder', '(596.53) Paralysis of bladder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\(596.54) Neurogenic bladder NOS\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\(596.54) Neurogenic bladder NOS\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.54''', NULL,
+ '(596.54) Neurogenic bladder NOS', '(596.54) Neurogenic bladder NOS', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\(596.55) Detrusor sphincter dyssynergia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\(596.55) Detrusor sphincter dyssynergia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.55''', NULL,
+ '(596.55) Detrusor sphincter dyssynergia', '(596.55) Detrusor sphincter dyssynergia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\(596.59) Other functional disorder of bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other functional disorders of bladder (596.5)\(596.59) Other functional disorder of bladder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.59''', NULL,
+ '(596.59) Other functional disorder of bladder', '(596.59) Other functional disorder of bladder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other specified disorders of bladder (596.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other specified disorders of bladder (596.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.8''', NULL,
+ 'Other specified disorders of bladder (596.8)', 'Other specified disorders of bladder (596.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other specified disorders of bladder (596.8)\(596.81) Infection of cystostomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other specified disorders of bladder (596.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other specified disorders of bladder (596.8)\(596.81) Infection of cystostomy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.81''', NULL,
+ '(596.81) Infection of cystostomy', '(596.81) Infection of cystostomy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other specified disorders of bladder (596.8)\(596.82) Mechanical complication of cystostomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other specified disorders of bladder (596.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other specified disorders of bladder (596.8)\(596.82) Mechanical complication of cystostomy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.82''', NULL,
+ '(596.82) Mechanical complication of cystostomy', '(596.82) Mechanical complication of cystostomy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other specified disorders of bladder (596.8)\(596.83) Other complication of cystostomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other specified disorders of bladder (596.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other specified disorders of bladder (596.8)\(596.83) Other complication of cystostomy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.83''', NULL,
+ '(596.83) Other complication of cystostomy', '(596.83) Other complication of cystostomy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other specified disorders of bladder (596.8)\(596.89) Other specified disorders of bladder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other specified disorders of bladder (596.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of bladder (596)\Other specified disorders of bladder (596.8)\(596.89) Other specified disorders of bladder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''596.89''', NULL,
+ '(596.89) Other specified disorders of bladder', '(596.89) Other specified disorders of bladder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593''', NULL,
+ 'Other disorders of kidney and ureter (593)', 'Other disorders of kidney and ureter (593)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.0) Nephroptosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.0) Nephroptosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.0''', NULL,
+ '(593.0) Nephroptosis', '(593.0) Nephroptosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.1) Hypertrophy of kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.1) Hypertrophy of kidney\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.1''', NULL,
+ '(593.1) Hypertrophy of kidney', '(593.1) Hypertrophy of kidney', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.2) Cyst of kidney, acquired\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.2) Cyst of kidney, acquired\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.2''', NULL,
+ '(593.2) Cyst of kidney, acquired', '(593.2) Cyst of kidney, acquired', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.3) Stricture or kinking of ureter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.3) Stricture or kinking of ureter\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.3''', NULL,
+ '(593.3) Stricture or kinking of ureter', '(593.3) Stricture or kinking of ureter', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.4) Other ureteric obstruction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.4) Other ureteric obstruction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.4''', NULL,
+ '(593.4) Other ureteric obstruction', '(593.4) Other ureteric obstruction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.5) Hydroureter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.5) Hydroureter\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.5''', NULL,
+ '(593.5) Hydroureter', '(593.5) Hydroureter', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.6) Postural proteinuria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.6) Postural proteinuria\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.6''', NULL,
+ '(593.6) Postural proteinuria', '(593.6) Postural proteinuria', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.9) Unspecified disorder of kidney and ureter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\(593.9) Unspecified disorder of kidney and ureter\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.9''', NULL,
+ '(593.9) Unspecified disorder of kidney and ureter', '(593.9) Unspecified disorder of kidney and ureter', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Other specified disorders of kidney and ureter (593.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Other specified disorders of kidney and ureter (593.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.8''', NULL,
+ 'Other specified disorders of kidney and ureter (593.8)', 'Other specified disorders of kidney and ureter (593.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Other specified disorders of kidney and ureter (593.8)\(593.81) Vascular disorders of kidney\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Other specified disorders of kidney and ureter (593.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Other specified disorders of kidney and ureter (593.8)\(593.81) Vascular disorders of kidney\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.81''', NULL,
+ '(593.81) Vascular disorders of kidney', '(593.81) Vascular disorders of kidney', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Other specified disorders of kidney and ureter (593.8)\(593.82) Ureteral fistula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Other specified disorders of kidney and ureter (593.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Other specified disorders of kidney and ureter (593.8)\(593.82) Ureteral fistula\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.82''', NULL,
+ '(593.82) Ureteral fistula', '(593.82) Ureteral fistula', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Other specified disorders of kidney and ureter (593.8)\(593.89) Other specified disorders of kidney and ureter\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Other specified disorders of kidney and ureter (593.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Other specified disorders of kidney and ureter (593.8)\(593.89) Other specified disorders of kidney and ureter\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.89''', NULL,
+ '(593.89) Other specified disorders of kidney and ureter', '(593.89) Other specified disorders of kidney and ureter', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Vesicoureteral reflux (593.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Vesicoureteral reflux (593.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.7''', NULL,
+ 'Vesicoureteral reflux (593.7)', 'Vesicoureteral reflux (593.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Vesicoureteral reflux (593.7)\(593.70) Vesicoureteral reflux unspecified or without reflux nephropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Vesicoureteral reflux (593.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Vesicoureteral reflux (593.7)\(593.70) Vesicoureteral reflux unspecified or without reflux nephropathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.70''', NULL,
+ '(593.70) Vesicoureteral reflux unspecified or without reflux nephropathy', '(593.70) Vesicoureteral reflux unspecified or without reflux nephropathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Vesicoureteral reflux (593.7)\(593.71) Vesicoureteral reflux with reflux nephropathy, unilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Vesicoureteral reflux (593.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Vesicoureteral reflux (593.7)\(593.71) Vesicoureteral reflux with reflux nephropathy, unilateral\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.71''', NULL,
+ '(593.71) Vesicoureteral reflux with reflux nephropathy, unilateral', '(593.71) Vesicoureteral reflux with reflux nephropathy, unilateral', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Vesicoureteral reflux (593.7)\(593.72) Vesicoureteral reflux with reflux nephropathy, bilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Vesicoureteral reflux (593.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Vesicoureteral reflux (593.7)\(593.72) Vesicoureteral reflux with reflux nephropathy, bilateral\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.72''', NULL,
+ '(593.72) Vesicoureteral reflux with reflux nephropathy, bilateral', '(593.72) Vesicoureteral reflux with reflux nephropathy, bilateral', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Vesicoureteral reflux (593.7)\(593.73) Other vesicoureteral reflux with reflux nephropathy NOS\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Vesicoureteral reflux (593.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of kidney and ureter (593)\Vesicoureteral reflux (593.7)\(593.73) Other vesicoureteral reflux with reflux nephropathy NOS\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''593.73''', NULL,
+ '(593.73) Other vesicoureteral reflux with reflux nephropathy NOS', '(593.73) Other vesicoureteral reflux with reflux nephropathy NOS', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599''', NULL,
+ 'Other disorders of urethra and urinary tract (599)', 'Other disorders of urethra and urinary tract (599)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\(599.0) Urinary tract infection, site not specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\(599.0) Urinary tract infection, site not specified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.0''', NULL,
+ '(599.0) Urinary tract infection, site not specified', '(599.0) Urinary tract infection, site not specified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\(599.1) Urethral fistula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\(599.1) Urethral fistula\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.1''', NULL,
+ '(599.1) Urethral fistula', '(599.1) Urethral fistula', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\(599.2) Urethral diverticulum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\(599.2) Urethral diverticulum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.2''', NULL,
+ '(599.2) Urethral diverticulum', '(599.2) Urethral diverticulum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\(599.3) Urethral caruncle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\(599.3) Urethral caruncle\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.3''', NULL,
+ '(599.3) Urethral caruncle', '(599.3) Urethral caruncle', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\(599.4) Urethral false passage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\(599.4) Urethral false passage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.4''', NULL,
+ '(599.4) Urethral false passage', '(599.4) Urethral false passage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\(599.5) Prolapsed urethral mucosa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\(599.5) Prolapsed urethral mucosa\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.5''', NULL,
+ '(599.5) Prolapsed urethral mucosa', '(599.5) Prolapsed urethral mucosa', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\(599.9) Unspecified disorder of urethra and urinary tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\(599.9) Unspecified disorder of urethra and urinary tract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.9''', NULL,
+ '(599.9) Unspecified disorder of urethra and urinary tract', '(599.9) Unspecified disorder of urethra and urinary tract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Hematuria (599.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Hematuria (599.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.7''', NULL,
+ 'Hematuria (599.7)', 'Hematuria (599.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Hematuria (599.7)\(599.70) Hematuria, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Hematuria (599.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Hematuria (599.7)\(599.70) Hematuria, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.70''', NULL,
+ '(599.70) Hematuria, unspecified', '(599.70) Hematuria, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Hematuria (599.7)\(599.71) Gross hematuria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Hematuria (599.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Hematuria (599.7)\(599.71) Gross hematuria\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.71''', NULL,
+ '(599.71) Gross hematuria', '(599.71) Gross hematuria', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Hematuria (599.7)\(599.72) Microscopic hematuria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Hematuria (599.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Hematuria (599.7)\(599.72) Microscopic hematuria\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.72''', NULL,
+ '(599.72) Microscopic hematuria', '(599.72) Microscopic hematuria', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.8''', NULL,
+ 'Other specified disorders of urethra and urinary tract (599.8)', 'Other specified disorders of urethra and urinary tract (599.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\(599.81) Urethral hypermobility\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\(599.81) Urethral hypermobility\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.81''', NULL,
+ '(599.81) Urethral hypermobility', '(599.81) Urethral hypermobility', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\(599.82) Intrinsic (urethral) sphincter deficiency [ISD]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\(599.82) Intrinsic (urethral) sphincter deficiency [ISD]\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.82) Intrinsic (urethral''', NULL,
+ '(599.82) Intrinsic (urethral) sphincter deficiency [ISD]', '(599.82) Intrinsic (urethral) sphincter deficiency [ISD]', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\(599.83) Urethral instability\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\(599.83) Urethral instability\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.83''', NULL,
+ '(599.83) Urethral instability', '(599.83) Urethral instability', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\(599.84) Other specified disorders of urethra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\(599.84) Other specified disorders of urethra\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.84''', NULL,
+ '(599.84) Other specified disorders of urethra', '(599.84) Other specified disorders of urethra', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\(599.89) Other specified disorders of urinary tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Other specified disorders of urethra and urinary tract (599.8)\(599.89) Other specified disorders of urinary tract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.89''', NULL,
+ '(599.89) Other specified disorders of urinary tract', '(599.89) Other specified disorders of urinary tract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Urinary obstruction (599.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Urinary obstruction (599.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.6''', NULL,
+ 'Urinary obstruction (599.6)', 'Urinary obstruction (599.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Urinary obstruction (599.6)\(599.60) Urinary obstruction, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Urinary obstruction (599.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Urinary obstruction (599.6)\(599.60) Urinary obstruction, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.60''', NULL,
+ '(599.60) Urinary obstruction, unspecified', '(599.60) Urinary obstruction, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Urinary obstruction (599.6)\(599.69) Urinary obstruction, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Urinary obstruction (599.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Other disorders of urethra and urinary tract (599)\Urinary obstruction (599.6)\(599.69) Urinary obstruction, not elsewhere classified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''599.69''', NULL,
+ '(599.69) Urinary obstruction, not elsewhere classified', '(599.69) Urinary obstruction, not elsewhere classified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''598''', NULL,
+ 'Urethral stricture (598)', 'Urethral stricture (598)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\(598.1) Traumatic urethral stricture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\(598.1) Traumatic urethral stricture\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''598.1''', NULL,
+ '(598.1) Traumatic urethral stricture', '(598.1) Traumatic urethral stricture', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\(598.2) Postoperative urethral stricture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\(598.2) Postoperative urethral stricture\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''598.2''', NULL,
+ '(598.2) Postoperative urethral stricture', '(598.2) Postoperative urethral stricture', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\(598.8) Other specified causes of urethral stricture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\(598.8) Other specified causes of urethral stricture\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''598.8''', NULL,
+ '(598.8) Other specified causes of urethral stricture', '(598.8) Other specified causes of urethral stricture', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\(598.9) Urethral stricture, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\(598.9) Urethral stricture, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''598.9''', NULL,
+ '(598.9) Urethral stricture, unspecified', '(598.9) Urethral stricture, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\Urethral stricture due to infection (598.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\Urethral stricture due to infection (598.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''598.0''', NULL,
+ 'Urethral stricture due to infection (598.0)', 'Urethral stricture due to infection (598.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\Urethral stricture due to infection (598.0)\(598.00) Urethral stricture due to unspecified infection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\Urethral stricture due to infection (598.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\Urethral stricture due to infection (598.0)\(598.00) Urethral stricture due to unspecified infection\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''598.00''', NULL,
+ '(598.00) Urethral stricture due to unspecified infection', '(598.00) Urethral stricture due to unspecified infection', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\Urethral stricture due to infection (598.0)\(598.01) Urethral stricture due to infective diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\Urethral stricture due to infection (598.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethral stricture (598)\Urethral stricture due to infection (598.0)\(598.01) Urethral stricture due to infective diseases classified elsewhere\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''598.01''', NULL,
+ '(598.01) Urethral stricture due to infective diseases classified elsewhere', '(598.01) Urethral stricture due to infective diseases classified elsewhere', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''597''', NULL,
+ 'Urethritis, not sexually transmitted, and urethral syndrome (597)', 'Urethritis, not sexually transmitted, and urethral syndrome (597)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\(597.0) Urethral abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\(597.0) Urethral abscess\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''597.0''', NULL,
+ '(597.0) Urethral abscess', '(597.0) Urethral abscess', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\Other urethritis (597.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\Other urethritis (597.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''597.8''', NULL,
+ 'Other urethritis (597.8)', 'Other urethritis (597.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\Other urethritis (597.8)\(597.80) Urethritis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\Other urethritis (597.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\Other urethritis (597.8)\(597.80) Urethritis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''597.80''', NULL,
+ '(597.80) Urethritis, unspecified', '(597.80) Urethritis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\Other urethritis (597.8)\(597.81) Urethral syndrome NOS\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\Other urethritis (597.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\Other urethritis (597.8)\(597.81) Urethral syndrome NOS\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''597.81''', NULL,
+ '(597.81) Urethral syndrome NOS', '(597.81) Urethral syndrome NOS', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\Other urethritis (597.8)\(597.89) Other urethritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\Other urethritis (597.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other diseases of urinary system (590-599.99)\Urethritis, not sexually transmitted, and urethral syndrome (597)\Other urethritis (597.8)\(597.89) Other urethritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''597.89''', NULL,
+ '(597.89) Other urethritis', '(597.89) Other urethritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''617'' AND ''629.99''', NULL,
+ 'Other disorders of female genital tract (617-629.99)', 'Other disorders of female genital tract (617-629.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''626''', NULL,
+ 'Disorders of menstruation and other abnormal bleeding from female genital tract (626)', 'Disorders of menstruation and other abnormal bleeding from female genital tract (626)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.0) Absence of menstruation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.0) Absence of menstruation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''626.0''', NULL,
+ '(626.0) Absence of menstruation', '(626.0) Absence of menstruation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.1) Scanty or infrequent menstruation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.1) Scanty or infrequent menstruation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''626.1''', NULL,
+ '(626.1) Scanty or infrequent menstruation', '(626.1) Scanty or infrequent menstruation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.2) Excessive or frequent menstruation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.2) Excessive or frequent menstruation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''626.2''', NULL,
+ '(626.2) Excessive or frequent menstruation', '(626.2) Excessive or frequent menstruation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.3) Puberty bleeding\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.3) Puberty bleeding\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''626.3''', NULL,
+ '(626.3) Puberty bleeding', '(626.3) Puberty bleeding', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.4) Irregular menstrual cycle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.4) Irregular menstrual cycle\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''626.4''', NULL,
+ '(626.4) Irregular menstrual cycle', '(626.4) Irregular menstrual cycle', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.5) Ovulation bleeding\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.5) Ovulation bleeding\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''626.5''', NULL,
+ '(626.5) Ovulation bleeding', '(626.5) Ovulation bleeding', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.6) Metrorrhagia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.6) Metrorrhagia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''626.6''', NULL,
+ '(626.6) Metrorrhagia', '(626.6) Metrorrhagia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.7) Postcoital bleeding\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.7) Postcoital bleeding\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''626.7''', NULL,
+ '(626.7) Postcoital bleeding', '(626.7) Postcoital bleeding', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.8) Other disorders of menstruation and other abnormal bleeding from female genital tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.8) Other disorders of menstruation and other abnormal bleeding from female genital tract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''626.8''', NULL,
+ '(626.8) Other disorders of menstruation and other abnormal bleeding from female genital tract', '(626.8) Other disorders of menstruation and other abnormal bleeding from female genital tract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.9) Unspecified disorders of menstruation and other abnormal bleeding from female genital tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of menstruation and other abnormal bleeding from female genital tract (626)\(626.9) Unspecified disorders of menstruation and other abnormal bleeding from female genital tract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''626.9''', NULL,
+ '(626.9) Unspecified disorders of menstruation and other abnormal bleeding from female genital tract', '(626.9) Unspecified disorders of menstruation and other abnormal bleeding from female genital tract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621''', NULL,
+ 'Disorders of uterus, not elsewhere classified (621)', 'Disorders of uterus, not elsewhere classified (621)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.0) Polyp of corpus uteri\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.0) Polyp of corpus uteri\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.0''', NULL,
+ '(621.0) Polyp of corpus uteri', '(621.0) Polyp of corpus uteri', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.1) Chronic subinvolution of uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.1) Chronic subinvolution of uterus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.1''', NULL,
+ '(621.1) Chronic subinvolution of uterus', '(621.1) Chronic subinvolution of uterus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.2) Hypertrophy of uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.2) Hypertrophy of uterus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.2''', NULL,
+ '(621.2) Hypertrophy of uterus', '(621.2) Hypertrophy of uterus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.4) Hematometra\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.4) Hematometra\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.4''', NULL,
+ '(621.4) Hematometra', '(621.4) Hematometra', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.5) Intrauterine synechiae\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.5) Intrauterine synechiae\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.5''', NULL,
+ '(621.5) Intrauterine synechiae', '(621.5) Intrauterine synechiae', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.6) Malposition of uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.6) Malposition of uterus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.6''', NULL,
+ '(621.6) Malposition of uterus', '(621.6) Malposition of uterus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.7) Chronic inversion of uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.7) Chronic inversion of uterus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.7''', NULL,
+ '(621.7) Chronic inversion of uterus', '(621.7) Chronic inversion of uterus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.8) Other specified disorders of uterus, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.8) Other specified disorders of uterus, not elsewhere classified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.8''', NULL,
+ '(621.8) Other specified disorders of uterus, not elsewhere classified', '(621.8) Other specified disorders of uterus, not elsewhere classified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.9) Unspecified disorder of uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\(621.9) Unspecified disorder of uterus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.9''', NULL,
+ '(621.9) Unspecified disorder of uterus', '(621.9) Unspecified disorder of uterus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.3''', NULL,
+ 'Endometrial hyperplasia (621.3)', 'Endometrial hyperplasia (621.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\(621.30) Endometrial hyperplasia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\(621.30) Endometrial hyperplasia, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.30''', NULL,
+ '(621.30) Endometrial hyperplasia, unspecified', '(621.30) Endometrial hyperplasia, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\(621.31) Simple endometrial hyperplasia without atypia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\(621.31) Simple endometrial hyperplasia without atypia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.31''', NULL,
+ '(621.31) Simple endometrial hyperplasia without atypia', '(621.31) Simple endometrial hyperplasia without atypia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\(621.32) Complex endometrial hyperplasia without atypia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\(621.32) Complex endometrial hyperplasia without atypia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.32''', NULL,
+ '(621.32) Complex endometrial hyperplasia without atypia', '(621.32) Complex endometrial hyperplasia without atypia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\(621.33) Endometrial hyperplasia with atypia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\(621.33) Endometrial hyperplasia with atypia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.33''', NULL,
+ '(621.33) Endometrial hyperplasia with atypia', '(621.33) Endometrial hyperplasia with atypia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\(621.34) Benign endometrial hyperplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\(621.34) Benign endometrial hyperplasia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.34''', NULL,
+ '(621.34) Benign endometrial hyperplasia', '(621.34) Benign endometrial hyperplasia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\(621.35) Endometrial intraepithelial neoplasia [EIN]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Disorders of uterus, not elsewhere classified (621)\Endometrial hyperplasia (621.3)\(621.35) Endometrial intraepithelial neoplasia [EIN]\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''621.35''', NULL,
+ '(621.35) Endometrial intraepithelial neoplasia [EIN]', '(621.35) Endometrial intraepithelial neoplasia [EIN]', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''617''', NULL,
+ 'Endometriosis (617)', 'Endometriosis (617)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.0) Endometriosis of uterus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.0) Endometriosis of uterus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''617.0''', NULL,
+ '(617.0) Endometriosis of uterus', '(617.0) Endometriosis of uterus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.1) Endometriosis of ovary\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.1) Endometriosis of ovary\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''617.1''', NULL,
+ '(617.1) Endometriosis of ovary', '(617.1) Endometriosis of ovary', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.2) Endometriosis of fallopian tube\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.2) Endometriosis of fallopian tube\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''617.2''', NULL,
+ '(617.2) Endometriosis of fallopian tube', '(617.2) Endometriosis of fallopian tube', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.3) Endometriosis of pelvic peritoneum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.3) Endometriosis of pelvic peritoneum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''617.3''', NULL,
+ '(617.3) Endometriosis of pelvic peritoneum', '(617.3) Endometriosis of pelvic peritoneum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.4) Endometriosis of rectovaginal septum and vagina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.4) Endometriosis of rectovaginal septum and vagina\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''617.4''', NULL,
+ '(617.4) Endometriosis of rectovaginal septum and vagina', '(617.4) Endometriosis of rectovaginal septum and vagina', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.5) Endometriosis of intestine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.5) Endometriosis of intestine\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''617.5''', NULL,
+ '(617.5) Endometriosis of intestine', '(617.5) Endometriosis of intestine', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.6) Endometriosis in scar of skin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.6) Endometriosis in scar of skin\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''617.6''', NULL,
+ '(617.6) Endometriosis in scar of skin', '(617.6) Endometriosis in scar of skin', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.8) Endometriosis of other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.8) Endometriosis of other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''617.8''', NULL,
+ '(617.8) Endometriosis of other specified sites', '(617.8) Endometriosis of other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.9) Endometriosis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Endometriosis (617)\(617.9) Endometriosis, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''617.9''', NULL,
+ '(617.9) Endometriosis, site unspecified', '(617.9) Endometriosis, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''619''', NULL,
+ 'Fistula involving female genital tract (619)', 'Fistula involving female genital tract (619)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\(619.0) Urinary-genital tract fistula, female\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\(619.0) Urinary-genital tract fistula, female\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''619.0''', NULL,
+ '(619.0) Urinary-genital tract fistula, female', '(619.0) Urinary-genital tract fistula, female', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\(619.1) Digestive-genital tract fistula, female\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\(619.1) Digestive-genital tract fistula, female\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''619.1''', NULL,
+ '(619.1) Digestive-genital tract fistula, female', '(619.1) Digestive-genital tract fistula, female', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\(619.2) Genital tract-skin fistula, female\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\(619.2) Genital tract-skin fistula, female\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''619.2''', NULL,
+ '(619.2) Genital tract-skin fistula, female', '(619.2) Genital tract-skin fistula, female', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\(619.8) Other specified fistulas involving female genital tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\(619.8) Other specified fistulas involving female genital tract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''619.8''', NULL,
+ '(619.8) Other specified fistulas involving female genital tract', '(619.8) Other specified fistulas involving female genital tract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\(619.9) Unspecified fistula involving female genital tract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Fistula involving female genital tract (619)\(619.9) Unspecified fistula involving female genital tract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''619.9''', NULL,
+ '(619.9) Unspecified fistula involving female genital tract', '(619.9) Unspecified fistula involving female genital tract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618''', NULL,
+ 'Genital prolapse (618)', 'Genital prolapse (618)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.1) Uterine prolapse without mention of vaginal wall prolapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.1) Uterine prolapse without mention of vaginal wall prolapse\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.1''', NULL,
+ '(618.1) Uterine prolapse without mention of vaginal wall prolapse', '(618.1) Uterine prolapse without mention of vaginal wall prolapse', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.2) Uterovaginal prolapse, incomplete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.2) Uterovaginal prolapse, incomplete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.2''', NULL,
+ '(618.2) Uterovaginal prolapse, incomplete', '(618.2) Uterovaginal prolapse, incomplete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.3) Uterovaginal prolapse, complete\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.3) Uterovaginal prolapse, complete\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.3''', NULL,
+ '(618.3) Uterovaginal prolapse, complete', '(618.3) Uterovaginal prolapse, complete', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.4) Uterovaginal prolapse, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.4) Uterovaginal prolapse, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.4''', NULL,
+ '(618.4) Uterovaginal prolapse, unspecified', '(618.4) Uterovaginal prolapse, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.5) Prolapse of vaginal vault after hysterectomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.5) Prolapse of vaginal vault after hysterectomy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.5''', NULL,
+ '(618.5) Prolapse of vaginal vault after hysterectomy', '(618.5) Prolapse of vaginal vault after hysterectomy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.6) Vaginal enterocele, congenital or acquired\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.6) Vaginal enterocele, congenital or acquired\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.6''', NULL,
+ '(618.6) Vaginal enterocele, congenital or acquired', '(618.6) Vaginal enterocele, congenital or acquired', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.7) Old laceration of muscles of pelvic floor\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.7) Old laceration of muscles of pelvic floor\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.7''', NULL,
+ '(618.7) Old laceration of muscles of pelvic floor', '(618.7) Old laceration of muscles of pelvic floor', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.9) Unspecified genital prolapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\(618.9) Unspecified genital prolapse\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.9''', NULL,
+ '(618.9) Unspecified genital prolapse', '(618.9) Unspecified genital prolapse', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.8''', NULL,
+ 'Other specified genital prolapse (618.8)', 'Other specified genital prolapse (618.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\(618.81) Incompetence or weakening of pubocervical tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\(618.81) Incompetence or weakening of pubocervical tissue\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.81''', NULL,
+ '(618.81) Incompetence or weakening of pubocervical tissue', '(618.81) Incompetence or weakening of pubocervical tissue', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\(618.82) Incompetence or weakening of rectovaginal tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\(618.82) Incompetence or weakening of rectovaginal tissue\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.82''', NULL,
+ '(618.82) Incompetence or weakening of rectovaginal tissue', '(618.82) Incompetence or weakening of rectovaginal tissue', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\(618.83) Pelvic muscle wasting\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\(618.83) Pelvic muscle wasting\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.83''', NULL,
+ '(618.83) Pelvic muscle wasting', '(618.83) Pelvic muscle wasting', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\(618.84) Cervical stump prolapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\(618.84) Cervical stump prolapse\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.84''', NULL,
+ '(618.84) Cervical stump prolapse', '(618.84) Cervical stump prolapse', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\(618.89) Other specified genital prolapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Other specified genital prolapse (618.8)\(618.89) Other specified genital prolapse\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.89''', NULL,
+ '(618.89) Other specified genital prolapse', '(618.89) Other specified genital prolapse', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.0''', NULL,
+ 'Prolapse of vaginal walls without mention of uterine prolapse (618.0)', 'Prolapse of vaginal walls without mention of uterine prolapse (618.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\(618.00) Unspecified prolapse of vaginal walls\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\(618.00) Unspecified prolapse of vaginal walls\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.00''', NULL,
+ '(618.00) Unspecified prolapse of vaginal walls', '(618.00) Unspecified prolapse of vaginal walls', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\(618.01) Cystocele, midline\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\(618.01) Cystocele, midline\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.01''', NULL,
+ '(618.01) Cystocele, midline', '(618.01) Cystocele, midline', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\(618.02) Cystocele, lateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\(618.02) Cystocele, lateral\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.02''', NULL,
+ '(618.02) Cystocele, lateral', '(618.02) Cystocele, lateral', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\(618.03) Urethrocele\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\(618.03) Urethrocele\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.03''', NULL,
+ '(618.03) Urethrocele', '(618.03) Urethrocele', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\(618.04) Rectocele\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\(618.04) Rectocele\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.04''', NULL,
+ '(618.04) Rectocele', '(618.04) Rectocele', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\(618.05) Perineocele\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\(618.05) Perineocele\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.05''', NULL,
+ '(618.05) Perineocele', '(618.05) Perineocele', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\(618.09) Other prolapse of vaginal walls without mention of uterine prolapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Genital prolapse (618)\Prolapse of vaginal walls without mention of uterine prolapse (618.0)\(618.09) Other prolapse of vaginal walls without mention of uterine prolapse\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''618.09''', NULL,
+ '(618.09) Other prolapse of vaginal walls without mention of uterine prolapse', '(618.09) Other prolapse of vaginal walls without mention of uterine prolapse', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''628''', NULL,
+ 'Infertility, female (628)', 'Infertility, female (628)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\(628.0) Infertility, female, associated with anovulation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\(628.0) Infertility, female, associated with anovulation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''628.0''', NULL,
+ '(628.0) Infertility, female, associated with anovulation', '(628.0) Infertility, female, associated with anovulation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\(628.1) Infertility, female, of pituitary-hypothalamic origin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\(628.1) Infertility, female, of pituitary-hypothalamic origin\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''628.1''', NULL,
+ '(628.1) Infertility, female, of pituitary-hypothalamic origin', '(628.1) Infertility, female, of pituitary-hypothalamic origin', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\(628.2) Infertility, female, of tubal origin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\(628.2) Infertility, female, of tubal origin\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''628.2''', NULL,
+ '(628.2) Infertility, female, of tubal origin', '(628.2) Infertility, female, of tubal origin', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\(628.3) Infertility, female, of uterine origin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\(628.3) Infertility, female, of uterine origin\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''628.3''', NULL,
+ '(628.3) Infertility, female, of uterine origin', '(628.3) Infertility, female, of uterine origin', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\(628.4) Infertility, female, of cervical or vaginal origin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\(628.4) Infertility, female, of cervical or vaginal origin\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''628.4''', NULL,
+ '(628.4) Infertility, female, of cervical or vaginal origin', '(628.4) Infertility, female, of cervical or vaginal origin', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\(628.8) Infertility, female, of other specified origin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\(628.8) Infertility, female, of other specified origin\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''628.8''', NULL,
+ '(628.8) Infertility, female, of other specified origin', '(628.8) Infertility, female, of other specified origin', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\(628.9) Infertility, female, of unspecified origin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Infertility, female (628)\(628.9) Infertility, female, of unspecified origin\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''628.9''', NULL,
+ '(628.9) Infertility, female, of unspecified origin', '(628.9) Infertility, female, of unspecified origin', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''627''', NULL,
+ 'Menopausal and postmenopausal disorders (627)', 'Menopausal and postmenopausal disorders (627)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\(627.0) Premenopausal menorrhagia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\(627.0) Premenopausal menorrhagia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''627.0''', NULL,
+ '(627.0) Premenopausal menorrhagia', '(627.0) Premenopausal menorrhagia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\(627.1) Postmenopausal bleeding\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\(627.1) Postmenopausal bleeding\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''627.1''', NULL,
+ '(627.1) Postmenopausal bleeding', '(627.1) Postmenopausal bleeding', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\(627.2) Symptomatic menopausal or female climacteric states\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\(627.2) Symptomatic menopausal or female climacteric states\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''627.2''', NULL,
+ '(627.2) Symptomatic menopausal or female climacteric states', '(627.2) Symptomatic menopausal or female climacteric states', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\(627.3) Postmenopausal atrophic vaginitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\(627.3) Postmenopausal atrophic vaginitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''627.3''', NULL,
+ '(627.3) Postmenopausal atrophic vaginitis', '(627.3) Postmenopausal atrophic vaginitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\(627.4) Symptomatic states associated with artificial menopause\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\(627.4) Symptomatic states associated with artificial menopause\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''627.4''', NULL,
+ '(627.4) Symptomatic states associated with artificial menopause', '(627.4) Symptomatic states associated with artificial menopause', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\(627.8) Other specified menopausal and postmenopausal disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\(627.8) Other specified menopausal and postmenopausal disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''627.8''', NULL,
+ '(627.8) Other specified menopausal and postmenopausal disorders', '(627.8) Other specified menopausal and postmenopausal disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\(627.9) Unspecified menopausal and postmenopausal disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Menopausal and postmenopausal disorders (627)\(627.9) Unspecified menopausal and postmenopausal disorder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''627.9''', NULL,
+ '(627.9) Unspecified menopausal and postmenopausal disorder', '(627.9) Unspecified menopausal and postmenopausal disorder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''622''', NULL,
+ 'Noninflammatory disorders of cervix (622)', 'Noninflammatory disorders of cervix (622)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.0) Erosion and ectropion of cervix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.0) Erosion and ectropion of cervix\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''622.0''', NULL,
+ '(622.0) Erosion and ectropion of cervix', '(622.0) Erosion and ectropion of cervix', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.2) Leukoplakia of cervix (uteri)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.2) Leukoplakia of cervix (uteri)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''622.2) Leukoplakia of cervix (uteri''', NULL,
+ '(622.2) Leukoplakia of cervix (uteri)', '(622.2) Leukoplakia of cervix (uteri)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.3) Old laceration of cervix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.3) Old laceration of cervix\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''622.3''', NULL,
+ '(622.3) Old laceration of cervix', '(622.3) Old laceration of cervix', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.4) Stricture and stenosis of cervix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.4) Stricture and stenosis of cervix\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''622.4''', NULL,
+ '(622.4) Stricture and stenosis of cervix', '(622.4) Stricture and stenosis of cervix', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.5) Incompetence of cervix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.5) Incompetence of cervix\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''622.5''', NULL,
+ '(622.5) Incompetence of cervix', '(622.5) Incompetence of cervix', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.6) Hypertrophic elongation of cervix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.6) Hypertrophic elongation of cervix\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''622.6''', NULL,
+ '(622.6) Hypertrophic elongation of cervix', '(622.6) Hypertrophic elongation of cervix', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.7) Mucous polyp of cervix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.7) Mucous polyp of cervix\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''622.7''', NULL,
+ '(622.7) Mucous polyp of cervix', '(622.7) Mucous polyp of cervix', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.8) Other specified noninflammatory disorders of cervix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.8) Other specified noninflammatory disorders of cervix\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''622.8''', NULL,
+ '(622.8) Other specified noninflammatory disorders of cervix', '(622.8) Other specified noninflammatory disorders of cervix', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.9) Unspecified noninflammatory disorder of cervix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\(622.9) Unspecified noninflammatory disorder of cervix\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''622.9''', NULL,
+ '(622.9) Unspecified noninflammatory disorder of cervix', '(622.9) Unspecified noninflammatory disorder of cervix', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\Dysplasia of cervix (uteri) (622.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\Dysplasia of cervix (uteri) (622.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''uteri) (622.1''', NULL,
+ 'Dysplasia of cervix (uteri) (622.1)', 'Dysplasia of cervix (uteri) (622.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\Dysplasia of cervix (uteri) (622.1)\(622.10) Dysplasia of cervix, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\Dysplasia of cervix (uteri) (622.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\Dysplasia of cervix (uteri) (622.1)\(622.10) Dysplasia of cervix, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''622.10''', NULL,
+ '(622.10) Dysplasia of cervix, unspecified', '(622.10) Dysplasia of cervix, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\Dysplasia of cervix (uteri) (622.1)\(622.11) Mild dysplasia of cervix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\Dysplasia of cervix (uteri) (622.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\Dysplasia of cervix (uteri) (622.1)\(622.11) Mild dysplasia of cervix\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''622.11''', NULL,
+ '(622.11) Mild dysplasia of cervix', '(622.11) Mild dysplasia of cervix', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\Dysplasia of cervix (uteri) (622.1)\(622.12) Moderate dysplasia of cervix\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\Dysplasia of cervix (uteri) (622.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of cervix (622)\Dysplasia of cervix (uteri) (622.1)\(622.12) Moderate dysplasia of cervix\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''622.12''', NULL,
+ '(622.12) Moderate dysplasia of cervix', '(622.12) Moderate dysplasia of cervix', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''620''', NULL,
+ 'Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)', 'Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.0) Follicular cyst of ovary\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.0) Follicular cyst of ovary\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''620.0''', NULL,
+ '(620.0) Follicular cyst of ovary', '(620.0) Follicular cyst of ovary', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.1) Corpus luteum cyst or hematoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.1) Corpus luteum cyst or hematoma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''620.1''', NULL,
+ '(620.1) Corpus luteum cyst or hematoma', '(620.1) Corpus luteum cyst or hematoma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.2) Other and unspecified ovarian cyst\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.2) Other and unspecified ovarian cyst\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''620.2''', NULL,
+ '(620.2) Other and unspecified ovarian cyst', '(620.2) Other and unspecified ovarian cyst', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.3) Acquired atrophy of ovary and fallopian tube\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.3) Acquired atrophy of ovary and fallopian tube\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''620.3''', NULL,
+ '(620.3) Acquired atrophy of ovary and fallopian tube', '(620.3) Acquired atrophy of ovary and fallopian tube', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.4) Prolapse or hernia of ovary and fallopian tube\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.4) Prolapse or hernia of ovary and fallopian tube\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''620.4''', NULL,
+ '(620.4) Prolapse or hernia of ovary and fallopian tube', '(620.4) Prolapse or hernia of ovary and fallopian tube', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.5) Torsion of ovary, ovarian pedicle, or fallopian tube\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.5) Torsion of ovary, ovarian pedicle, or fallopian tube\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''620.5''', NULL,
+ '(620.5) Torsion of ovary, ovarian pedicle, or fallopian tube', '(620.5) Torsion of ovary, ovarian pedicle, or fallopian tube', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.6) Broad ligament laceration syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.6) Broad ligament laceration syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''620.6''', NULL,
+ '(620.6) Broad ligament laceration syndrome', '(620.6) Broad ligament laceration syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.7) Hematoma of broad ligament\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.7) Hematoma of broad ligament\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''620.7''', NULL,
+ '(620.7) Hematoma of broad ligament', '(620.7) Hematoma of broad ligament', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.8) Other noninflammatory disorders of ovary, fallopian tube, and broad ligament\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.8) Other noninflammatory disorders of ovary, fallopian tube, and broad ligament\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''620.8''', NULL,
+ '(620.8) Other noninflammatory disorders of ovary, fallopian tube, and broad ligament', '(620.8) Other noninflammatory disorders of ovary, fallopian tube, and broad ligament', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.9) Unspecified noninflammatory disorder of ovary, fallopian tube, and broad ligament\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of ovary, fallopian tube, and broad ligament (620)\(620.9) Unspecified noninflammatory disorder of ovary, fallopian tube, and broad ligament\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''620.9''', NULL,
+ '(620.9) Unspecified noninflammatory disorder of ovary, fallopian tube, and broad ligament', '(620.9) Unspecified noninflammatory disorder of ovary, fallopian tube, and broad ligament', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''623''', NULL,
+ 'Noninflammatory disorders of vagina (623)', 'Noninflammatory disorders of vagina (623)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.0) Dysplasia of vagina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.0) Dysplasia of vagina\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''623.0''', NULL,
+ '(623.0) Dysplasia of vagina', '(623.0) Dysplasia of vagina', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.1) Leukoplakia of vagina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.1) Leukoplakia of vagina\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''623.1''', NULL,
+ '(623.1) Leukoplakia of vagina', '(623.1) Leukoplakia of vagina', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.2) Stricture or atresia of vagina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.2) Stricture or atresia of vagina\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''623.2''', NULL,
+ '(623.2) Stricture or atresia of vagina', '(623.2) Stricture or atresia of vagina', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.3) Tight hymenal ring\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.3) Tight hymenal ring\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''623.3''', NULL,
+ '(623.3) Tight hymenal ring', '(623.3) Tight hymenal ring', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.4) Old vaginal laceration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.4) Old vaginal laceration\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''623.4''', NULL,
+ '(623.4) Old vaginal laceration', '(623.4) Old vaginal laceration', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.5) Leukorrhea, not specified as infective\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.5) Leukorrhea, not specified as infective\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''623.5''', NULL,
+ '(623.5) Leukorrhea, not specified as infective', '(623.5) Leukorrhea, not specified as infective', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.6) Vaginal hematoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.6) Vaginal hematoma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''623.6''', NULL,
+ '(623.6) Vaginal hematoma', '(623.6) Vaginal hematoma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.7) Polyp of vagina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.7) Polyp of vagina\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''623.7''', NULL,
+ '(623.7) Polyp of vagina', '(623.7) Polyp of vagina', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.8) Other specified noninflammatory disorders of vagina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.8) Other specified noninflammatory disorders of vagina\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''623.8''', NULL,
+ '(623.8) Other specified noninflammatory disorders of vagina', '(623.8) Other specified noninflammatory disorders of vagina', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.9) Unspecified noninflammatory disorder of vagina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vagina (623)\(623.9) Unspecified noninflammatory disorder of vagina\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''623.9''', NULL,
+ '(623.9) Unspecified noninflammatory disorder of vagina', '(623.9) Unspecified noninflammatory disorder of vagina', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''624''', NULL,
+ 'Noninflammatory disorders of vulva and perineum (624)', 'Noninflammatory disorders of vulva and perineum (624)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.1) Atrophy of vulva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.1) Atrophy of vulva\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''624.1''', NULL,
+ '(624.1) Atrophy of vulva', '(624.1) Atrophy of vulva', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.2) Hypertrophy of clitoris\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.2) Hypertrophy of clitoris\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''624.2''', NULL,
+ '(624.2) Hypertrophy of clitoris', '(624.2) Hypertrophy of clitoris', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.3) Hypertrophy of labia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.3) Hypertrophy of labia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''624.3''', NULL,
+ '(624.3) Hypertrophy of labia', '(624.3) Hypertrophy of labia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.4) Old laceration or scarring of vulva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.4) Old laceration or scarring of vulva\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''624.4''', NULL,
+ '(624.4) Old laceration or scarring of vulva', '(624.4) Old laceration or scarring of vulva', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.5) Hematoma of vulva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.5) Hematoma of vulva\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''624.5''', NULL,
+ '(624.5) Hematoma of vulva', '(624.5) Hematoma of vulva', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.6) Polyp of labia and vulva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.6) Polyp of labia and vulva\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''624.6''', NULL,
+ '(624.6) Polyp of labia and vulva', '(624.6) Polyp of labia and vulva', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.8) Other specified noninflammatory disorders of vulva and perineum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.8) Other specified noninflammatory disorders of vulva and perineum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''624.8''', NULL,
+ '(624.8) Other specified noninflammatory disorders of vulva and perineum', '(624.8) Other specified noninflammatory disorders of vulva and perineum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.9) Unspecified noninflammatory disorder of vulva and perineum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\(624.9) Unspecified noninflammatory disorder of vulva and perineum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''624.9''', NULL,
+ '(624.9) Unspecified noninflammatory disorder of vulva and perineum', '(624.9) Unspecified noninflammatory disorder of vulva and perineum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\Dystrophy of vulva (624.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\Dystrophy of vulva (624.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''624.0''', NULL,
+ 'Dystrophy of vulva (624.0)', 'Dystrophy of vulva (624.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\Dystrophy of vulva (624.0)\(624.01) Vulvar intraepithelial neoplasia I [VIN I]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\Dystrophy of vulva (624.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\Dystrophy of vulva (624.0)\(624.01) Vulvar intraepithelial neoplasia I [VIN I]\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''624.01''', NULL,
+ '(624.01) Vulvar intraepithelial neoplasia I [VIN I]', '(624.01) Vulvar intraepithelial neoplasia I [VIN I]', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\Dystrophy of vulva (624.0)\(624.02) Vulvar intraepithelial neoplasia II [VIN II]\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\Dystrophy of vulva (624.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\Dystrophy of vulva (624.0)\(624.02) Vulvar intraepithelial neoplasia II [VIN II]\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''624.02''', NULL,
+ '(624.02) Vulvar intraepithelial neoplasia II [VIN II]', '(624.02) Vulvar intraepithelial neoplasia II [VIN II]', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\Dystrophy of vulva (624.0)\(624.09) Other dystrophy of vulva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\Dystrophy of vulva (624.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Noninflammatory disorders of vulva and perineum (624)\Dystrophy of vulva (624.0)\(624.09) Other dystrophy of vulva\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''624.09''', NULL,
+ '(624.09) Other dystrophy of vulva', '(624.09) Other dystrophy of vulva', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629''', NULL,
+ 'Other disorders of female genital organs (629)', 'Other disorders of female genital organs (629)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\(629.0) Hematocele, female, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\(629.0) Hematocele, female, not elsewhere classified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629.0''', NULL,
+ '(629.0) Hematocele, female, not elsewhere classified', '(629.0) Hematocele, female, not elsewhere classified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\(629.1) Hydrocele, canal of nuck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\(629.1) Hydrocele, canal of nuck\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629.1''', NULL,
+ '(629.1) Hydrocele, canal of nuck', '(629.1) Hydrocele, canal of nuck', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\(629.9) Unspecified disorder of female genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\(629.9) Unspecified disorder of female genital organs\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629.9''', NULL,
+ '(629.9) Unspecified disorder of female genital organs', '(629.9) Unspecified disorder of female genital organs', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Complication of implanted vaginal mesh and other prosthetic materials (629.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Complication of implanted vaginal mesh and other prosthetic materials (629.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629.3''', NULL,
+ 'Complication of implanted vaginal mesh and other prosthetic materials (629.3)', 'Complication of implanted vaginal mesh and other prosthetic materials (629.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Complication of implanted vaginal mesh and other prosthetic materials (629.3)\(629.31) Erosion of implanted vaginal mesh and other prosthetic materials to surrounding organ or tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Complication of implanted vaginal mesh and other prosthetic materials (629.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Complication of implanted vaginal mesh and other prosthetic materials (629.3)\(629.31) Erosion of implanted vaginal mesh and other prosthetic materials to surrounding organ or tissue\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629.31''', NULL,
+ '(629.31) Erosion of implanted vaginal mesh and other prosthetic materials to surrounding organ or tissue', '(629.31) Erosion of implanted vaginal mesh and other prosthetic materials to surrounding organ or tissue', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Complication of implanted vaginal mesh and other prosthetic materials (629.3)\(629.32) Exposure of implanted vaginal mesh and other prosthetic materials into vagina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Complication of implanted vaginal mesh and other prosthetic materials (629.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Complication of implanted vaginal mesh and other prosthetic materials (629.3)\(629.32) Exposure of implanted vaginal mesh and other prosthetic materials into vagina\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629.32''', NULL,
+ '(629.32) Exposure of implanted vaginal mesh and other prosthetic materials into vagina', '(629.32) Exposure of implanted vaginal mesh and other prosthetic materials into vagina', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629.2''', NULL,
+ 'Female genital mutilation status (629.2)', 'Female genital mutilation status (629.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\(629.20) Female genital mutilation status, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\(629.20) Female genital mutilation status, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629.20''', NULL,
+ '(629.20) Female genital mutilation status, unspecified', '(629.20) Female genital mutilation status, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\(629.21) Female genital mutilation Type I status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\(629.21) Female genital mutilation Type I status\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629.21''', NULL,
+ '(629.21) Female genital mutilation Type I status', '(629.21) Female genital mutilation Type I status', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\(629.22) Female genital mutilation Type II status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\(629.22) Female genital mutilation Type II status\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629.22''', NULL,
+ '(629.22) Female genital mutilation Type II status', '(629.22) Female genital mutilation Type II status', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\(629.23) Female genital mutilation Type III status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\(629.23) Female genital mutilation Type III status\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629.23''', NULL,
+ '(629.23) Female genital mutilation Type III status', '(629.23) Female genital mutilation Type III status', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\(629.29) Other female genital mutilation status\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Female genital mutilation status (629.2)\(629.29) Other female genital mutilation status\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629.29''', NULL,
+ '(629.29) Other female genital mutilation status', '(629.29) Other female genital mutilation status', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Other specified disorders of female genital organs (629.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Other specified disorders of female genital organs (629.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629.8''', NULL,
+ 'Other specified disorders of female genital organs (629.8)', 'Other specified disorders of female genital organs (629.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Other specified disorders of female genital organs (629.8)\(629.81) Recurrent pregnancy loss without current pregnancy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Other specified disorders of female genital organs (629.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Other specified disorders of female genital organs (629.8)\(629.81) Recurrent pregnancy loss without current pregnancy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629.81''', NULL,
+ '(629.81) Recurrent pregnancy loss without current pregnancy', '(629.81) Recurrent pregnancy loss without current pregnancy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Other specified disorders of female genital organs (629.8)\(629.89) Other specified disorders of female genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Other specified disorders of female genital organs (629.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Other disorders of female genital organs (629)\Other specified disorders of female genital organs (629.8)\(629.89) Other specified disorders of female genital organs\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''629.89''', NULL,
+ '(629.89) Other specified disorders of female genital organs', '(629.89) Other specified disorders of female genital organs', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''625''', NULL,
+ 'Pain and other symptoms associated with female genital organs (625)', 'Pain and other symptoms associated with female genital organs (625)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.0) Dyspareunia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.0) Dyspareunia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''625.0''', NULL,
+ '(625.0) Dyspareunia', '(625.0) Dyspareunia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.1) Vaginismus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.1) Vaginismus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''625.1''', NULL,
+ '(625.1) Vaginismus', '(625.1) Vaginismus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.2) Mittelschmerz\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.2) Mittelschmerz\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''625.2''', NULL,
+ '(625.2) Mittelschmerz', '(625.2) Mittelschmerz', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.3) Dysmenorrhea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.3) Dysmenorrhea\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''625.3''', NULL,
+ '(625.3) Dysmenorrhea', '(625.3) Dysmenorrhea', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.4) Premenstrual tension syndromes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.4) Premenstrual tension syndromes\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''625.4''', NULL,
+ '(625.4) Premenstrual tension syndromes', '(625.4) Premenstrual tension syndromes', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.5) Pelvic congestion syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.5) Pelvic congestion syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''625.5''', NULL,
+ '(625.5) Pelvic congestion syndrome', '(625.5) Pelvic congestion syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.6) Stress incontinence, female\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.6) Stress incontinence, female\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''625.6''', NULL,
+ '(625.6) Stress incontinence, female', '(625.6) Stress incontinence, female', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.8) Other specified symptoms associated with female genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.8) Other specified symptoms associated with female genital organs\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''625.8''', NULL,
+ '(625.8) Other specified symptoms associated with female genital organs', '(625.8) Other specified symptoms associated with female genital organs', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.9) Unspecified symptom associated with female genital organs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\(625.9) Unspecified symptom associated with female genital organs\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''625.9''', NULL,
+ '(625.9) Unspecified symptom associated with female genital organs', '(625.9) Unspecified symptom associated with female genital organs', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\Vulvodynia (625.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\Vulvodynia (625.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''625.7''', NULL,
+ 'Vulvodynia (625.7)', 'Vulvodynia (625.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\Vulvodynia (625.7)\(625.70) Vulvodynia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\Vulvodynia (625.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\Vulvodynia (625.7)\(625.70) Vulvodynia, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''625.70''', NULL,
+ '(625.70) Vulvodynia, unspecified', '(625.70) Vulvodynia, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\Vulvodynia (625.7)\(625.71) Vulvar vestibulitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\Vulvodynia (625.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\Vulvodynia (625.7)\(625.71) Vulvar vestibulitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''625.71''', NULL,
+ '(625.71) Vulvar vestibulitis', '(625.71) Vulvar vestibulitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\Vulvodynia (625.7)\(625.79) Other vulvodynia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\Vulvodynia (625.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the genitourinary system (580-629.99)\Other disorders of female genital tract (617-629.99)\Pain and other symptoms associated with female genital organs (625)\Vulvodynia (625.7)\(625.79) Other vulvodynia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''625.79''', NULL,
+ '(625.79) Other vulvodynia', '(625.79) Other vulvodynia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''710'' AND ''739.99''', NULL,
+ 'Diseases of the musculoskeletal system and connective tissue (710-739.99)', 'Diseases of the musculoskeletal system and connective tissue (710-739.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''710'' AND ''719.99''', NULL,
+ 'Arthropathies and related disorders (710-719.99)', 'Arthropathies and related disorders (710-719.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711''', NULL,
+ 'Arthropathy associated with infections (711)', 'Arthropathy associated with infections (711)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.7''', NULL,
+ 'Arthropathy associated with helminthiasis (711.7)', 'Arthropathy associated with helminthiasis (711.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.70) Arthropathy associated with helminthiasis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.70) Arthropathy associated with helminthiasis, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.70''', NULL,
+ '(711.70) Arthropathy associated with helminthiasis, site unspecified', '(711.70) Arthropathy associated with helminthiasis, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.71) Arthropathy associated with helminthiasis, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.71) Arthropathy associated with helminthiasis, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.71''', NULL,
+ '(711.71) Arthropathy associated with helminthiasis, shoulder region', '(711.71) Arthropathy associated with helminthiasis, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.72) Arthropathy associated with helminthiasis, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.72) Arthropathy associated with helminthiasis, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.72''', NULL,
+ '(711.72) Arthropathy associated with helminthiasis, upper arm', '(711.72) Arthropathy associated with helminthiasis, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.73) Arthropathy associated with helminthiasis, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.73) Arthropathy associated with helminthiasis, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.73''', NULL,
+ '(711.73) Arthropathy associated with helminthiasis, forearm', '(711.73) Arthropathy associated with helminthiasis, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.74) Arthropathy associated with helminthiasis, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.74) Arthropathy associated with helminthiasis, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.74''', NULL,
+ '(711.74) Arthropathy associated with helminthiasis, hand', '(711.74) Arthropathy associated with helminthiasis, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.75) Arthropathy associated with helminthiasis, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.75) Arthropathy associated with helminthiasis, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.75''', NULL,
+ '(711.75) Arthropathy associated with helminthiasis, pelvic region and thigh', '(711.75) Arthropathy associated with helminthiasis, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.76) Arthropathy associated with helminthiasis, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.76) Arthropathy associated with helminthiasis, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.76''', NULL,
+ '(711.76) Arthropathy associated with helminthiasis, lower leg', '(711.76) Arthropathy associated with helminthiasis, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.77) Arthropathy associated with helminthiasis, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.77) Arthropathy associated with helminthiasis, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.77''', NULL,
+ '(711.77) Arthropathy associated with helminthiasis, ankle and foot', '(711.77) Arthropathy associated with helminthiasis, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.78) Arthropathy associated with helminthiasis, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.78) Arthropathy associated with helminthiasis, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.78''', NULL,
+ '(711.78) Arthropathy associated with helminthiasis, other specified sites', '(711.78) Arthropathy associated with helminthiasis, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.79) Arthropathy associated with helminthiasis, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with helminthiasis (711.7)\(711.79) Arthropathy associated with helminthiasis, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.79''', NULL,
+ '(711.79) Arthropathy associated with helminthiasis, multiple sites', '(711.79) Arthropathy associated with helminthiasis, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.6''', NULL,
+ 'Arthropathy associated with mycoses (711.6)', 'Arthropathy associated with mycoses (711.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.60) Arthropathy associated with mycoses, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.60) Arthropathy associated with mycoses, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.60''', NULL,
+ '(711.60) Arthropathy associated with mycoses, site unspecified', '(711.60) Arthropathy associated with mycoses, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.61) Arthropathy associated with mycoses, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.61) Arthropathy associated with mycoses, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.61''', NULL,
+ '(711.61) Arthropathy associated with mycoses, shoulder region', '(711.61) Arthropathy associated with mycoses, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.62) Arthropathy associated with mycoses, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.62) Arthropathy associated with mycoses, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.62''', NULL,
+ '(711.62) Arthropathy associated with mycoses, upper arm', '(711.62) Arthropathy associated with mycoses, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.63) Arthropathy associated with mycoses, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.63) Arthropathy associated with mycoses, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.63''', NULL,
+ '(711.63) Arthropathy associated with mycoses, forearm', '(711.63) Arthropathy associated with mycoses, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.64) Arthropathy associated with mycoses, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.64) Arthropathy associated with mycoses, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.64''', NULL,
+ '(711.64) Arthropathy associated with mycoses, hand', '(711.64) Arthropathy associated with mycoses, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.65) Arthropathy associated with mycoses, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.65) Arthropathy associated with mycoses, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.65''', NULL,
+ '(711.65) Arthropathy associated with mycoses, pelvic region and thigh', '(711.65) Arthropathy associated with mycoses, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.66) Arthropathy associated with mycoses, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.66) Arthropathy associated with mycoses, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.66''', NULL,
+ '(711.66) Arthropathy associated with mycoses, lower leg', '(711.66) Arthropathy associated with mycoses, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.67) Arthropathy associated with mycoses, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.67) Arthropathy associated with mycoses, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.67''', NULL,
+ '(711.67) Arthropathy associated with mycoses, ankle and foot', '(711.67) Arthropathy associated with mycoses, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.68) Arthropathy associated with mycoses, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.68) Arthropathy associated with mycoses, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.68''', NULL,
+ '(711.68) Arthropathy associated with mycoses, other specified sites', '(711.68) Arthropathy associated with mycoses, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.69) Arthropathy associated with mycoses, involving multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with mycoses (711.6)\(711.69) Arthropathy associated with mycoses, involving multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.69''', NULL,
+ '(711.69) Arthropathy associated with mycoses, involving multiple sites', '(711.69) Arthropathy associated with mycoses, involving multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.4''', NULL,
+ 'Arthropathy associated with other bacterial diseases (711.4)', 'Arthropathy associated with other bacterial diseases (711.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.40) Arthropathy associated with other bacterial diseases, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.40) Arthropathy associated with other bacterial diseases, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.40''', NULL,
+ '(711.40) Arthropathy associated with other bacterial diseases, site unspecified', '(711.40) Arthropathy associated with other bacterial diseases, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.41) Arthropathy associated with other bacterial diseases, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.41) Arthropathy associated with other bacterial diseases, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.41''', NULL,
+ '(711.41) Arthropathy associated with other bacterial diseases, shoulder region', '(711.41) Arthropathy associated with other bacterial diseases, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.42) Arthropathy associated with other bacterial diseases, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.42) Arthropathy associated with other bacterial diseases, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.42''', NULL,
+ '(711.42) Arthropathy associated with other bacterial diseases, upper arm', '(711.42) Arthropathy associated with other bacterial diseases, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.43) Arthropathy associated with other bacterial diseases, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.43) Arthropathy associated with other bacterial diseases, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.43''', NULL,
+ '(711.43) Arthropathy associated with other bacterial diseases, forearm', '(711.43) Arthropathy associated with other bacterial diseases, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.44) Arthropathy associated with other bacterial diseases, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.44) Arthropathy associated with other bacterial diseases, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.44''', NULL,
+ '(711.44) Arthropathy associated with other bacterial diseases, hand', '(711.44) Arthropathy associated with other bacterial diseases, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.45) Arthropathy associated with other bacterial diseases, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.45) Arthropathy associated with other bacterial diseases, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.45''', NULL,
+ '(711.45) Arthropathy associated with other bacterial diseases, pelvic region and thigh', '(711.45) Arthropathy associated with other bacterial diseases, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.46) Arthropathy associated with other bacterial diseases, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.46) Arthropathy associated with other bacterial diseases, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.46''', NULL,
+ '(711.46) Arthropathy associated with other bacterial diseases, lower leg', '(711.46) Arthropathy associated with other bacterial diseases, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.47) Arthropathy associated with other bacterial diseases, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.47) Arthropathy associated with other bacterial diseases, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.47''', NULL,
+ '(711.47) Arthropathy associated with other bacterial diseases, ankle and foot', '(711.47) Arthropathy associated with other bacterial diseases, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.48) Arthropathy associated with other bacterial diseases, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.48) Arthropathy associated with other bacterial diseases, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.48''', NULL,
+ '(711.48) Arthropathy associated with other bacterial diseases, other specified sites', '(711.48) Arthropathy associated with other bacterial diseases, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.49) Arthropathy associated with other bacterial diseases, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other bacterial diseases (711.4)\(711.49) Arthropathy associated with other bacterial diseases, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.49''', NULL,
+ '(711.49) Arthropathy associated with other bacterial diseases, multiple sites', '(711.49) Arthropathy associated with other bacterial diseases, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.8''', NULL,
+ 'Arthropathy associated with other infectious and parasitic diseases (711.8)', 'Arthropathy associated with other infectious and parasitic diseases (711.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.80) Arthropathy associated with other infectious and parasitic diseases, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.80) Arthropathy associated with other infectious and parasitic diseases, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.80''', NULL,
+ '(711.80) Arthropathy associated with other infectious and parasitic diseases, site unspecified', '(711.80) Arthropathy associated with other infectious and parasitic diseases, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.81) Arthropathy associated with other infectious and parasitic diseases, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.81) Arthropathy associated with other infectious and parasitic diseases, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.81''', NULL,
+ '(711.81) Arthropathy associated with other infectious and parasitic diseases, shoulder region', '(711.81) Arthropathy associated with other infectious and parasitic diseases, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.82) Arthropathy associated with other infectious and parasitic diseases, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.82) Arthropathy associated with other infectious and parasitic diseases, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.82''', NULL,
+ '(711.82) Arthropathy associated with other infectious and parasitic diseases, upper arm', '(711.82) Arthropathy associated with other infectious and parasitic diseases, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.83) Arthropathy associated with other infectious and parasitic diseases, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.83) Arthropathy associated with other infectious and parasitic diseases, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.83''', NULL,
+ '(711.83) Arthropathy associated with other infectious and parasitic diseases, forearm', '(711.83) Arthropathy associated with other infectious and parasitic diseases, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.84) Arthropathy associated with other infectious and parasitic diseases, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.84) Arthropathy associated with other infectious and parasitic diseases, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.84''', NULL,
+ '(711.84) Arthropathy associated with other infectious and parasitic diseases, hand', '(711.84) Arthropathy associated with other infectious and parasitic diseases, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.85) Arthropathy associated with other infectious and parasitic diseases, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.85) Arthropathy associated with other infectious and parasitic diseases, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.85''', NULL,
+ '(711.85) Arthropathy associated with other infectious and parasitic diseases, pelvic region and thigh', '(711.85) Arthropathy associated with other infectious and parasitic diseases, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.86) Arthropathy associated with other infectious and parasitic diseases, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.86) Arthropathy associated with other infectious and parasitic diseases, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.86''', NULL,
+ '(711.86) Arthropathy associated with other infectious and parasitic diseases, lower leg', '(711.86) Arthropathy associated with other infectious and parasitic diseases, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.87) Arthropathy associated with other infectious and parasitic diseases, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.87) Arthropathy associated with other infectious and parasitic diseases, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.87''', NULL,
+ '(711.87) Arthropathy associated with other infectious and parasitic diseases, ankle and foot', '(711.87) Arthropathy associated with other infectious and parasitic diseases, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.88) Arthropathy associated with other infectious and parasitic diseases, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.88) Arthropathy associated with other infectious and parasitic diseases, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.88''', NULL,
+ '(711.88) Arthropathy associated with other infectious and parasitic diseases, other specified sites', '(711.88) Arthropathy associated with other infectious and parasitic diseases, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.89) Arthropathy associated with other infectious and parasitic diseases, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other infectious and parasitic diseases (711.8)\(711.89) Arthropathy associated with other infectious and parasitic diseases, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.89''', NULL,
+ '(711.89) Arthropathy associated with other infectious and parasitic diseases, multiple sites', '(711.89) Arthropathy associated with other infectious and parasitic diseases, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.5''', NULL,
+ 'Arthropathy associated with other viral diseases (711.5)', 'Arthropathy associated with other viral diseases (711.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.50) Arthropathy associated with other viral diseases, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.50) Arthropathy associated with other viral diseases, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.50''', NULL,
+ '(711.50) Arthropathy associated with other viral diseases, site unspecified', '(711.50) Arthropathy associated with other viral diseases, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.51) Arthropathy associated with other viral diseases, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.51) Arthropathy associated with other viral diseases, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.51''', NULL,
+ '(711.51) Arthropathy associated with other viral diseases, shoulder region', '(711.51) Arthropathy associated with other viral diseases, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.52) Arthropathy associated with other viral diseases, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.52) Arthropathy associated with other viral diseases, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.52''', NULL,
+ '(711.52) Arthropathy associated with other viral diseases, upper arm', '(711.52) Arthropathy associated with other viral diseases, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.53) Arthropathy associated with other viral diseases, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.53) Arthropathy associated with other viral diseases, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.53''', NULL,
+ '(711.53) Arthropathy associated with other viral diseases, forearm', '(711.53) Arthropathy associated with other viral diseases, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.54) Arthropathy associated with other viral diseases, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.54) Arthropathy associated with other viral diseases, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.54''', NULL,
+ '(711.54) Arthropathy associated with other viral diseases, hand', '(711.54) Arthropathy associated with other viral diseases, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.55) Arthropathy associated with other viral diseases, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.55) Arthropathy associated with other viral diseases, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.55''', NULL,
+ '(711.55) Arthropathy associated with other viral diseases, pelvic region and thigh', '(711.55) Arthropathy associated with other viral diseases, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.56) Arthropathy associated with other viral diseases, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.56) Arthropathy associated with other viral diseases, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.56''', NULL,
+ '(711.56) Arthropathy associated with other viral diseases, lower leg', '(711.56) Arthropathy associated with other viral diseases, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.57) Arthropathy associated with other viral diseases, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.57) Arthropathy associated with other viral diseases, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.57''', NULL,
+ '(711.57) Arthropathy associated with other viral diseases, ankle and foot', '(711.57) Arthropathy associated with other viral diseases, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.58) Arthropathy associated with other viral diseases, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.58) Arthropathy associated with other viral diseases, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.58''', NULL,
+ '(711.58) Arthropathy associated with other viral diseases, other specified sites', '(711.58) Arthropathy associated with other viral diseases, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.59) Arthropathy associated with other viral diseases, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with other viral diseases (711.5)\(711.59) Arthropathy associated with other viral diseases, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.59''', NULL,
+ '(711.59) Arthropathy associated with other viral diseases, multiple sites', '(711.59) Arthropathy associated with other viral diseases, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.1''', NULL,
+ 'Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)', 'Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.10) Arthropathy associated with Reiter''s disease and nonspecific urethritis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.10) Arthropathy associated with Reiter''s disease and nonspecific urethritis, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.10''', NULL,
+ '(711.10) Arthropathy associated with Reiter''s disease and nonspecific urethritis, site unspecified', '(711.10) Arthropathy associated with Reiter''s disease and nonspecific urethritis, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.11) Arthropathy associated with Reiter''s disease and nonspecific urethritis, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.11) Arthropathy associated with Reiter''s disease and nonspecific urethritis, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.11''', NULL,
+ '(711.11) Arthropathy associated with Reiter''s disease and nonspecific urethritis, shoulder region', '(711.11) Arthropathy associated with Reiter''s disease and nonspecific urethritis, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.12) Arthropathy associated with Reiter''s disease and nonspecific urethritis, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.12) Arthropathy associated with Reiter''s disease and nonspecific urethritis, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.12''', NULL,
+ '(711.12) Arthropathy associated with Reiter''s disease and nonspecific urethritis, upper arm', '(711.12) Arthropathy associated with Reiter''s disease and nonspecific urethritis, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.13) Arthropathy associated with Reiter''s disease and nonspecific urethritis, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.13) Arthropathy associated with Reiter''s disease and nonspecific urethritis, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.13''', NULL,
+ '(711.13) Arthropathy associated with Reiter''s disease and nonspecific urethritis, forearm', '(711.13) Arthropathy associated with Reiter''s disease and nonspecific urethritis, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.14) Arthropathy associated with Reiter''s disease and nonspecific urethritis, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.14) Arthropathy associated with Reiter''s disease and nonspecific urethritis, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.14''', NULL,
+ '(711.14) Arthropathy associated with Reiter''s disease and nonspecific urethritis, hand', '(711.14) Arthropathy associated with Reiter''s disease and nonspecific urethritis, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.15) Arthropathy associated with Reiter''s disease and nonspecific urethritis, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.15) Arthropathy associated with Reiter''s disease and nonspecific urethritis, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.15''', NULL,
+ '(711.15) Arthropathy associated with Reiter''s disease and nonspecific urethritis, pelvic region and thigh', '(711.15) Arthropathy associated with Reiter''s disease and nonspecific urethritis, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.16) Arthropathy associated with Reiter''s disease and nonspecific urethritis, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.16) Arthropathy associated with Reiter''s disease and nonspecific urethritis, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.16''', NULL,
+ '(711.16) Arthropathy associated with Reiter''s disease and nonspecific urethritis, lower leg', '(711.16) Arthropathy associated with Reiter''s disease and nonspecific urethritis, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.17) Arthropathy associated with Reiter''s disease and nonspecific urethritis, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.17) Arthropathy associated with Reiter''s disease and nonspecific urethritis, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.17''', NULL,
+ '(711.17) Arthropathy associated with Reiter''s disease and nonspecific urethritis, ankle and foot', '(711.17) Arthropathy associated with Reiter''s disease and nonspecific urethritis, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.18) Arthropathy associated with Reiter''s disease and nonspecific urethritis, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.18) Arthropathy associated with Reiter''s disease and nonspecific urethritis, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.18''', NULL,
+ '(711.18) Arthropathy associated with Reiter''s disease and nonspecific urethritis, other specified sites', '(711.18) Arthropathy associated with Reiter''s disease and nonspecific urethritis, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.19) Arthropathy associated with Reiter''s disease and nonspecific urethritis, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy associated with Reiter''s disease and nonspecific urethritis (711.1)\(711.19) Arthropathy associated with Reiter''s disease and nonspecific urethritis, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.19''', NULL,
+ '(711.19) Arthropathy associated with Reiter''s disease and nonspecific urethritis, multiple sites', '(711.19) Arthropathy associated with Reiter''s disease and nonspecific urethritis, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.2''', NULL,
+ 'Arthropathy in Behcet''s syndrome (711.2)', 'Arthropathy in Behcet''s syndrome (711.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.20) Arthropathy in Behcet''s syndrome, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.20) Arthropathy in Behcet''s syndrome, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.20''', NULL,
+ '(711.20) Arthropathy in Behcet''s syndrome, site unspecified', '(711.20) Arthropathy in Behcet''s syndrome, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.21) Arthropathy in Behcet''s syndrome, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.21) Arthropathy in Behcet''s syndrome, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.21''', NULL,
+ '(711.21) Arthropathy in Behcet''s syndrome, shoulder region', '(711.21) Arthropathy in Behcet''s syndrome, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.22) Arthropathy in Behcet''s syndrome, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.22) Arthropathy in Behcet''s syndrome, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.22''', NULL,
+ '(711.22) Arthropathy in Behcet''s syndrome, upper arm', '(711.22) Arthropathy in Behcet''s syndrome, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.23) Arthropathy in Behcet''s syndrome, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.23) Arthropathy in Behcet''s syndrome, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.23''', NULL,
+ '(711.23) Arthropathy in Behcet''s syndrome, forearm', '(711.23) Arthropathy in Behcet''s syndrome, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.24) Arthropathy in Behcet''s syndrome, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.24) Arthropathy in Behcet''s syndrome, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.24''', NULL,
+ '(711.24) Arthropathy in Behcet''s syndrome, hand', '(711.24) Arthropathy in Behcet''s syndrome, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.25) Arthropathy in Behcet''s syndrome, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.25) Arthropathy in Behcet''s syndrome, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.25''', NULL,
+ '(711.25) Arthropathy in Behcet''s syndrome, pelvic region and thigh', '(711.25) Arthropathy in Behcet''s syndrome, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.26) Arthropathy in Behcet''s syndrome, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.26) Arthropathy in Behcet''s syndrome, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.26''', NULL,
+ '(711.26) Arthropathy in Behcet''s syndrome, lower leg', '(711.26) Arthropathy in Behcet''s syndrome, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.27) Arthropathy in Behcet''s syndrome, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.27) Arthropathy in Behcet''s syndrome, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.27''', NULL,
+ '(711.27) Arthropathy in Behcet''s syndrome, ankle and foot', '(711.27) Arthropathy in Behcet''s syndrome, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.28) Arthropathy in Behcet''s syndrome, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.28) Arthropathy in Behcet''s syndrome, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.28''', NULL,
+ '(711.28) Arthropathy in Behcet''s syndrome, other specified sites', '(711.28) Arthropathy in Behcet''s syndrome, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.29) Arthropathy in Behcet''s syndrome, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Arthropathy in Behcet''s syndrome (711.2)\(711.29) Arthropathy in Behcet''s syndrome, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.29''', NULL,
+ '(711.29) Arthropathy in Behcet''s syndrome, multiple sites', '(711.29) Arthropathy in Behcet''s syndrome, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.3''', NULL,
+ 'Postdysenteric arthropathy (711.3)', 'Postdysenteric arthropathy (711.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.30) Postdysenteric arthropathy, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.30) Postdysenteric arthropathy, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.30''', NULL,
+ '(711.30) Postdysenteric arthropathy, site unspecified', '(711.30) Postdysenteric arthropathy, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.31) Postdysenteric arthropathy, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.31) Postdysenteric arthropathy, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.31''', NULL,
+ '(711.31) Postdysenteric arthropathy, shoulder region', '(711.31) Postdysenteric arthropathy, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.32) Postdysenteric arthropathy, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.32) Postdysenteric arthropathy, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.32''', NULL,
+ '(711.32) Postdysenteric arthropathy, upper arm', '(711.32) Postdysenteric arthropathy, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.33) Postdysenteric arthropathy, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.33) Postdysenteric arthropathy, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.33''', NULL,
+ '(711.33) Postdysenteric arthropathy, forearm', '(711.33) Postdysenteric arthropathy, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.34) Postdysenteric arthropathy, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.34) Postdysenteric arthropathy, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.34''', NULL,
+ '(711.34) Postdysenteric arthropathy, hand', '(711.34) Postdysenteric arthropathy, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.35) Postdysenteric arthropathy, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.35) Postdysenteric arthropathy, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.35''', NULL,
+ '(711.35) Postdysenteric arthropathy, pelvic region and thigh', '(711.35) Postdysenteric arthropathy, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.36) Postdysenteric arthropathy, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.36) Postdysenteric arthropathy, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.36''', NULL,
+ '(711.36) Postdysenteric arthropathy, lower leg', '(711.36) Postdysenteric arthropathy, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.37) Postdysenteric arthropathy, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.37) Postdysenteric arthropathy, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.37''', NULL,
+ '(711.37) Postdysenteric arthropathy, ankle and foot', '(711.37) Postdysenteric arthropathy, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.38) Postdysenteric arthropathy, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.38) Postdysenteric arthropathy, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.38''', NULL,
+ '(711.38) Postdysenteric arthropathy, other specified sites', '(711.38) Postdysenteric arthropathy, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.39) Postdysenteric arthropathy, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Postdysenteric arthropathy (711.3)\(711.39) Postdysenteric arthropathy, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.39''', NULL,
+ '(711.39) Postdysenteric arthropathy, multiple sites', '(711.39) Postdysenteric arthropathy, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.0''', NULL,
+ 'Pyogenic arthritis (711.0)', 'Pyogenic arthritis (711.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.00) Pyogenic arthritis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.00) Pyogenic arthritis, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.00''', NULL,
+ '(711.00) Pyogenic arthritis, site unspecified', '(711.00) Pyogenic arthritis, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.01) Pyogenic arthritis, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.01) Pyogenic arthritis, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.01''', NULL,
+ '(711.01) Pyogenic arthritis, shoulder region', '(711.01) Pyogenic arthritis, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.02) Pyogenic arthritis, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.02) Pyogenic arthritis, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.02''', NULL,
+ '(711.02) Pyogenic arthritis, upper arm', '(711.02) Pyogenic arthritis, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.03) Pyogenic arthritis, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.03) Pyogenic arthritis, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.03''', NULL,
+ '(711.03) Pyogenic arthritis, forearm', '(711.03) Pyogenic arthritis, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.04) Pyogenic arthritis, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.04) Pyogenic arthritis, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.04''', NULL,
+ '(711.04) Pyogenic arthritis, hand', '(711.04) Pyogenic arthritis, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.05) Pyogenic arthritis, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.05) Pyogenic arthritis, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.05''', NULL,
+ '(711.05) Pyogenic arthritis, pelvic region and thigh', '(711.05) Pyogenic arthritis, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.06) Pyogenic arthritis, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.06) Pyogenic arthritis, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.06''', NULL,
+ '(711.06) Pyogenic arthritis, lower leg', '(711.06) Pyogenic arthritis, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.07) Pyogenic arthritis, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.07) Pyogenic arthritis, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.07''', NULL,
+ '(711.07) Pyogenic arthritis, ankle and foot', '(711.07) Pyogenic arthritis, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.08) Pyogenic arthritis, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.08) Pyogenic arthritis, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.08''', NULL,
+ '(711.08) Pyogenic arthritis, other specified sites', '(711.08) Pyogenic arthritis, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.09) Pyogenic arthritis, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Pyogenic arthritis (711.0)\(711.09) Pyogenic arthritis, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.09''', NULL,
+ '(711.09) Pyogenic arthritis, multiple sites', '(711.09) Pyogenic arthritis, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.9''', NULL,
+ 'Unspecified infective arthritis (711.9)', 'Unspecified infective arthritis (711.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.90) Unspecified infective arthritis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.90) Unspecified infective arthritis, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.90''', NULL,
+ '(711.90) Unspecified infective arthritis, site unspecified', '(711.90) Unspecified infective arthritis, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.91) Unspecified infective arthritis, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.91) Unspecified infective arthritis, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.91''', NULL,
+ '(711.91) Unspecified infective arthritis, shoulder region', '(711.91) Unspecified infective arthritis, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.92) Unspecified infective arthritis, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.92) Unspecified infective arthritis, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.92''', NULL,
+ '(711.92) Unspecified infective arthritis, upper arm', '(711.92) Unspecified infective arthritis, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.93) Unspecified infective arthritis, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.93) Unspecified infective arthritis, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.93''', NULL,
+ '(711.93) Unspecified infective arthritis, forearm', '(711.93) Unspecified infective arthritis, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.94) Unspecified infective arthritis, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.94) Unspecified infective arthritis, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.94''', NULL,
+ '(711.94) Unspecified infective arthritis, hand', '(711.94) Unspecified infective arthritis, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.95) Unspecified infective arthritis, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.95) Unspecified infective arthritis, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.95''', NULL,
+ '(711.95) Unspecified infective arthritis, pelvic region and thigh', '(711.95) Unspecified infective arthritis, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.96) Unspecified infective arthritis, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.96) Unspecified infective arthritis, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.96''', NULL,
+ '(711.96) Unspecified infective arthritis, lower leg', '(711.96) Unspecified infective arthritis, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.97) Unspecified infective arthritis, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.97) Unspecified infective arthritis, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.97''', NULL,
+ '(711.97) Unspecified infective arthritis, ankle and foot', '(711.97) Unspecified infective arthritis, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.98) Unspecified infective arthritis, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.98) Unspecified infective arthritis, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.98''', NULL,
+ '(711.98) Unspecified infective arthritis, other specified sites', '(711.98) Unspecified infective arthritis, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.99) Unspecified infective arthritis, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with infections (711)\Unspecified infective arthritis (711.9)\(711.99) Unspecified infective arthritis, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''711.99''', NULL,
+ '(711.99) Unspecified infective arthritis, multiple sites', '(711.99) Unspecified infective arthritis, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''713''', NULL,
+ 'Arthropathy associated with other disorders classified elsewhere (713)', 'Arthropathy associated with other disorders classified elsewhere (713)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.0) Arthropathy associated with other endocrine and metabolic disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.0) Arthropathy associated with other endocrine and metabolic disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''713.0''', NULL,
+ '(713.0) Arthropathy associated with other endocrine and metabolic disorders', '(713.0) Arthropathy associated with other endocrine and metabolic disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.1) Arthropathy associated with gastrointestinal conditions other than infections\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.1) Arthropathy associated with gastrointestinal conditions other than infections\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''713.1''', NULL,
+ '(713.1) Arthropathy associated with gastrointestinal conditions other than infections', '(713.1) Arthropathy associated with gastrointestinal conditions other than infections', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.2) Arthropathy associated with hematological disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.2) Arthropathy associated with hematological disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''713.2''', NULL,
+ '(713.2) Arthropathy associated with hematological disorders', '(713.2) Arthropathy associated with hematological disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.3) Arthropathy associated with dermatological disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.3) Arthropathy associated with dermatological disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''713.3''', NULL,
+ '(713.3) Arthropathy associated with dermatological disorders', '(713.3) Arthropathy associated with dermatological disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.4) Arthropathy associated with respiratory disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.4) Arthropathy associated with respiratory disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''713.4''', NULL,
+ '(713.4) Arthropathy associated with respiratory disorders', '(713.4) Arthropathy associated with respiratory disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.5) Arthropathy associated with neurological disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.5) Arthropathy associated with neurological disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''713.5''', NULL,
+ '(713.5) Arthropathy associated with neurological disorders', '(713.5) Arthropathy associated with neurological disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.6) Arthropathy associated with hypersensitivity reaction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.6) Arthropathy associated with hypersensitivity reaction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''713.6''', NULL,
+ '(713.6) Arthropathy associated with hypersensitivity reaction', '(713.6) Arthropathy associated with hypersensitivity reaction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.7) Other general diseases with articular involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.7) Other general diseases with articular involvement\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''713.7''', NULL,
+ '(713.7) Other general diseases with articular involvement', '(713.7) Other general diseases with articular involvement', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.8) Arthropathy associated with other conditions classifiable elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Arthropathy associated with other disorders classified elsewhere (713)\(713.8) Arthropathy associated with other conditions classifiable elsewhere\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''713.8''', NULL,
+ '(713.8) Arthropathy associated with other conditions classifiable elsewhere', '(713.8) Arthropathy associated with other conditions classifiable elsewhere', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712''', NULL,
+ 'Crystal arthropathies (712)', 'Crystal arthropathies (712)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.1''', NULL,
+ 'Chondrocalcinosis due to dicalcium phosphate crystals (712.1)', 'Chondrocalcinosis due to dicalcium phosphate crystals (712.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.10) Chondrocalcinosis, due to dicalcium phosphate crystals, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.10) Chondrocalcinosis, due to dicalcium phosphate crystals, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.10''', NULL,
+ '(712.10) Chondrocalcinosis, due to dicalcium phosphate crystals, site unspecified', '(712.10) Chondrocalcinosis, due to dicalcium phosphate crystals, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.11) Chondrocalcinosis, due to dicalcium phosphate crystals, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.11) Chondrocalcinosis, due to dicalcium phosphate crystals, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.11''', NULL,
+ '(712.11) Chondrocalcinosis, due to dicalcium phosphate crystals, shoulder region', '(712.11) Chondrocalcinosis, due to dicalcium phosphate crystals, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.12) Chondrocalcinosis, due to dicalcium phosphate crystals, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.12) Chondrocalcinosis, due to dicalcium phosphate crystals, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.12''', NULL,
+ '(712.12) Chondrocalcinosis, due to dicalcium phosphate crystals, upper arm', '(712.12) Chondrocalcinosis, due to dicalcium phosphate crystals, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.13) Chondrocalcinosis, due to dicalcium phosphate crystals, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.13) Chondrocalcinosis, due to dicalcium phosphate crystals, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.13''', NULL,
+ '(712.13) Chondrocalcinosis, due to dicalcium phosphate crystals, forearm', '(712.13) Chondrocalcinosis, due to dicalcium phosphate crystals, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.14) Chondrocalcinosis, due to dicalcium phosphate crystals, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.14) Chondrocalcinosis, due to dicalcium phosphate crystals, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.14''', NULL,
+ '(712.14) Chondrocalcinosis, due to dicalcium phosphate crystals, hand', '(712.14) Chondrocalcinosis, due to dicalcium phosphate crystals, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.15) Chondrocalcinosis, due to dicalcium phosphate crystals, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.15) Chondrocalcinosis, due to dicalcium phosphate crystals, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.15''', NULL,
+ '(712.15) Chondrocalcinosis, due to dicalcium phosphate crystals, pelvic region and thigh', '(712.15) Chondrocalcinosis, due to dicalcium phosphate crystals, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.16) Chondrocalcinosis, due to dicalcium phosphate crystals, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.16) Chondrocalcinosis, due to dicalcium phosphate crystals, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.16''', NULL,
+ '(712.16) Chondrocalcinosis, due to dicalcium phosphate crystals, lower leg', '(712.16) Chondrocalcinosis, due to dicalcium phosphate crystals, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.17) Chondrocalcinosis, due to dicalcium phosphate crystals, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.17) Chondrocalcinosis, due to dicalcium phosphate crystals, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.17''', NULL,
+ '(712.17) Chondrocalcinosis, due to dicalcium phosphate crystals, ankle and foot', '(712.17) Chondrocalcinosis, due to dicalcium phosphate crystals, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.18) Chondrocalcinosis, due to dicalcium phosphate crystals, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.18) Chondrocalcinosis, due to dicalcium phosphate crystals, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.18''', NULL,
+ '(712.18) Chondrocalcinosis, due to dicalcium phosphate crystals, other specified sites', '(712.18) Chondrocalcinosis, due to dicalcium phosphate crystals, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.19) Chondrocalcinosis, due to dicalcium phosphate crystals, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to dicalcium phosphate crystals (712.1)\(712.19) Chondrocalcinosis, due to dicalcium phosphate crystals, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.19''', NULL,
+ '(712.19) Chondrocalcinosis, due to dicalcium phosphate crystals, multiple sites', '(712.19) Chondrocalcinosis, due to dicalcium phosphate crystals, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.2''', NULL,
+ 'Chondrocalcinosis due to pyrophosphate crystals (712.2)', 'Chondrocalcinosis due to pyrophosphate crystals (712.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.20) Chondrocalcinosis, due to pyrophosphate crystals, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.20) Chondrocalcinosis, due to pyrophosphate crystals, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.20''', NULL,
+ '(712.20) Chondrocalcinosis, due to pyrophosphate crystals, site unspecified', '(712.20) Chondrocalcinosis, due to pyrophosphate crystals, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.21) Chondrocalcinosis, due to pyrophosphate crystals, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.21) Chondrocalcinosis, due to pyrophosphate crystals, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.21''', NULL,
+ '(712.21) Chondrocalcinosis, due to pyrophosphate crystals, shoulder region', '(712.21) Chondrocalcinosis, due to pyrophosphate crystals, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.22) Chondrocalcinosis, due to pyrophosphate crystals, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.22) Chondrocalcinosis, due to pyrophosphate crystals, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.22''', NULL,
+ '(712.22) Chondrocalcinosis, due to pyrophosphate crystals, upper arm', '(712.22) Chondrocalcinosis, due to pyrophosphate crystals, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.23) Chondrocalcinosis, due to pyrophosphate crystals, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.23) Chondrocalcinosis, due to pyrophosphate crystals, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.23''', NULL,
+ '(712.23) Chondrocalcinosis, due to pyrophosphate crystals, forearm', '(712.23) Chondrocalcinosis, due to pyrophosphate crystals, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.24) Chondrocalcinosis, due to pyrophosphate crystals, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.24) Chondrocalcinosis, due to pyrophosphate crystals, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.24''', NULL,
+ '(712.24) Chondrocalcinosis, due to pyrophosphate crystals, hand', '(712.24) Chondrocalcinosis, due to pyrophosphate crystals, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.25) Chondrocalcinosis, due to pyrophosphate crystals, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.25) Chondrocalcinosis, due to pyrophosphate crystals, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.25''', NULL,
+ '(712.25) Chondrocalcinosis, due to pyrophosphate crystals, pelvic region and thigh', '(712.25) Chondrocalcinosis, due to pyrophosphate crystals, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.26) Chondrocalcinosis, due to pyrophosphate crystals, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.26) Chondrocalcinosis, due to pyrophosphate crystals, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.26''', NULL,
+ '(712.26) Chondrocalcinosis, due to pyrophosphate crystals, lower leg', '(712.26) Chondrocalcinosis, due to pyrophosphate crystals, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.27) Chondrocalcinosis, due to pyrophosphate crystals, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.27) Chondrocalcinosis, due to pyrophosphate crystals, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.27''', NULL,
+ '(712.27) Chondrocalcinosis, due to pyrophosphate crystals, ankle and foot', '(712.27) Chondrocalcinosis, due to pyrophosphate crystals, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.28) Chondrocalcinosis, due to pyrophosphate crystals, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.28) Chondrocalcinosis, due to pyrophosphate crystals, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.28''', NULL,
+ '(712.28) Chondrocalcinosis, due to pyrophosphate crystals, other specified sites', '(712.28) Chondrocalcinosis, due to pyrophosphate crystals, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.29) Chondrocalcinosis, due to pyrophosphate crystals, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis due to pyrophosphate crystals (712.2)\(712.29) Chondrocalcinosis, due to pyrophosphate crystals, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.29''', NULL,
+ '(712.29) Chondrocalcinosis, due to pyrophosphate crystals, multiple sites', '(712.29) Chondrocalcinosis, due to pyrophosphate crystals, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.3''', NULL,
+ 'Chondrocalcinosis, cause unspecified (712.3)', 'Chondrocalcinosis, cause unspecified (712.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.30) Chondrocalcinosis, unspecified, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.30) Chondrocalcinosis, unspecified, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.30''', NULL,
+ '(712.30) Chondrocalcinosis, unspecified, site unspecified', '(712.30) Chondrocalcinosis, unspecified, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.31) Chondrocalcinosis, unspecified, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.31) Chondrocalcinosis, unspecified, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.31''', NULL,
+ '(712.31) Chondrocalcinosis, unspecified, shoulder region', '(712.31) Chondrocalcinosis, unspecified, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.32) Chondrocalcinosis, unspecified, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.32) Chondrocalcinosis, unspecified, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.32''', NULL,
+ '(712.32) Chondrocalcinosis, unspecified, upper arm', '(712.32) Chondrocalcinosis, unspecified, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.33) Chondrocalcinosis, unspecified, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.33) Chondrocalcinosis, unspecified, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.33''', NULL,
+ '(712.33) Chondrocalcinosis, unspecified, forearm', '(712.33) Chondrocalcinosis, unspecified, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.34) Chondrocalcinosis, unspecified, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.34) Chondrocalcinosis, unspecified, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.34''', NULL,
+ '(712.34) Chondrocalcinosis, unspecified, hand', '(712.34) Chondrocalcinosis, unspecified, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.35) Chondrocalcinosis, unspecified, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.35) Chondrocalcinosis, unspecified, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.35''', NULL,
+ '(712.35) Chondrocalcinosis, unspecified, pelvic region and thigh', '(712.35) Chondrocalcinosis, unspecified, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.36) Chondrocalcinosis, unspecified, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.36) Chondrocalcinosis, unspecified, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.36''', NULL,
+ '(712.36) Chondrocalcinosis, unspecified, lower leg', '(712.36) Chondrocalcinosis, unspecified, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.37) Chondrocalcinosis, unspecified, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.37) Chondrocalcinosis, unspecified, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.37''', NULL,
+ '(712.37) Chondrocalcinosis, unspecified, ankle and foot', '(712.37) Chondrocalcinosis, unspecified, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.38) Chondrocalcinosis, unspecified, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.38) Chondrocalcinosis, unspecified, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.38''', NULL,
+ '(712.38) Chondrocalcinosis, unspecified, other specified sites', '(712.38) Chondrocalcinosis, unspecified, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.39) Chondrocalcinosis, unspecified, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Chondrocalcinosis, cause unspecified (712.3)\(712.39) Chondrocalcinosis, unspecified, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.39''', NULL,
+ '(712.39) Chondrocalcinosis, unspecified, multiple sites', '(712.39) Chondrocalcinosis, unspecified, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.8''', NULL,
+ 'Other specified crystal arthropathies (712.8)', 'Other specified crystal arthropathies (712.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.80) Other specified crystal arthropathies, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.80) Other specified crystal arthropathies, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.80''', NULL,
+ '(712.80) Other specified crystal arthropathies, site unspecified', '(712.80) Other specified crystal arthropathies, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.81) Other specified crystal arthropathies, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.81) Other specified crystal arthropathies, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.81''', NULL,
+ '(712.81) Other specified crystal arthropathies, shoulder region', '(712.81) Other specified crystal arthropathies, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.82) Other specified crystal arthropathies, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.82) Other specified crystal arthropathies, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.82''', NULL,
+ '(712.82) Other specified crystal arthropathies, upper arm', '(712.82) Other specified crystal arthropathies, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.83) Other specified crystal arthropathies, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.83) Other specified crystal arthropathies, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.83''', NULL,
+ '(712.83) Other specified crystal arthropathies, forearm', '(712.83) Other specified crystal arthropathies, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.84) Other specified crystal arthropathies, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.84) Other specified crystal arthropathies, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.84''', NULL,
+ '(712.84) Other specified crystal arthropathies, hand', '(712.84) Other specified crystal arthropathies, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.85) Other specified crystal arthropathies, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.85) Other specified crystal arthropathies, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.85''', NULL,
+ '(712.85) Other specified crystal arthropathies, pelvic region and thigh', '(712.85) Other specified crystal arthropathies, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.86) Other specified crystal arthropathies, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.86) Other specified crystal arthropathies, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.86''', NULL,
+ '(712.86) Other specified crystal arthropathies, lower leg', '(712.86) Other specified crystal arthropathies, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.87) Other specified crystal arthropathies, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.87) Other specified crystal arthropathies, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.87''', NULL,
+ '(712.87) Other specified crystal arthropathies, ankle and foot', '(712.87) Other specified crystal arthropathies, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.88) Other specified crystal arthropathies, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.88) Other specified crystal arthropathies, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.88''', NULL,
+ '(712.88) Other specified crystal arthropathies, other specified sites', '(712.88) Other specified crystal arthropathies, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.89) Other specified crystal arthropathies, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Other specified crystal arthropathies (712.8)\(712.89) Other specified crystal arthropathies, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.89''', NULL,
+ '(712.89) Other specified crystal arthropathies, multiple sites', '(712.89) Other specified crystal arthropathies, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.9''', NULL,
+ 'Unspecified crystal arthropathy (712.9)', 'Unspecified crystal arthropathy (712.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.90) Unspecified crystal arthropathy, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.90) Unspecified crystal arthropathy, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.90''', NULL,
+ '(712.90) Unspecified crystal arthropathy, site unspecified', '(712.90) Unspecified crystal arthropathy, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.91) Unspecified crystal arthropathy, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.91) Unspecified crystal arthropathy, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.91''', NULL,
+ '(712.91) Unspecified crystal arthropathy, shoulder region', '(712.91) Unspecified crystal arthropathy, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.92) Unspecified crystal arthropathy, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.92) Unspecified crystal arthropathy, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.92''', NULL,
+ '(712.92) Unspecified crystal arthropathy, upper arm', '(712.92) Unspecified crystal arthropathy, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.93) Unspecified crystal arthropathy, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.93) Unspecified crystal arthropathy, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.93''', NULL,
+ '(712.93) Unspecified crystal arthropathy, forearm', '(712.93) Unspecified crystal arthropathy, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.94) Unspecified crystal arthropathy, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.94) Unspecified crystal arthropathy, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.94''', NULL,
+ '(712.94) Unspecified crystal arthropathy, hand', '(712.94) Unspecified crystal arthropathy, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.95) Unspecified crystal arthropathy, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.95) Unspecified crystal arthropathy, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.95''', NULL,
+ '(712.95) Unspecified crystal arthropathy, pelvic region and thigh', '(712.95) Unspecified crystal arthropathy, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.96) Unspecified crystal arthropathy, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.96) Unspecified crystal arthropathy, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.96''', NULL,
+ '(712.96) Unspecified crystal arthropathy, lower leg', '(712.96) Unspecified crystal arthropathy, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.97) Unspecified crystal arthropathy, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.97) Unspecified crystal arthropathy, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.97''', NULL,
+ '(712.97) Unspecified crystal arthropathy, ankle and foot', '(712.97) Unspecified crystal arthropathy, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.98) Unspecified crystal arthropathy, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.98) Unspecified crystal arthropathy, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.98''', NULL,
+ '(712.98) Unspecified crystal arthropathy, other specified sites', '(712.98) Unspecified crystal arthropathy, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.99) Unspecified crystal arthropathy, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Crystal arthropathies (712)\Unspecified crystal arthropathy (712.9)\(712.99) Unspecified crystal arthropathy, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''712.99''', NULL,
+ '(712.99) Unspecified crystal arthropathy, multiple sites', '(712.99) Unspecified crystal arthropathy, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''710''', NULL,
+ 'Diffuse diseases of connective tissue (710)', 'Diffuse diseases of connective tissue (710)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.0) Systemic lupus erythematosus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.0) Systemic lupus erythematosus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''710.0''', NULL,
+ '(710.0) Systemic lupus erythematosus', '(710.0) Systemic lupus erythematosus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.1) Systemic sclerosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.1) Systemic sclerosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''710.1''', NULL,
+ '(710.1) Systemic sclerosis', '(710.1) Systemic sclerosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.2) Sicca syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.2) Sicca syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''710.2''', NULL,
+ '(710.2) Sicca syndrome', '(710.2) Sicca syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.3) Dermatomyositis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.3) Dermatomyositis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''710.3''', NULL,
+ '(710.3) Dermatomyositis', '(710.3) Dermatomyositis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.4) Polymyositis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.4) Polymyositis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''710.4''', NULL,
+ '(710.4) Polymyositis', '(710.4) Polymyositis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.5) Eosinophilia myalgia syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.5) Eosinophilia myalgia syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''710.5''', NULL,
+ '(710.5) Eosinophilia myalgia syndrome', '(710.5) Eosinophilia myalgia syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.8) Other specified diffuse diseases of connective tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.8) Other specified diffuse diseases of connective tissue\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''710.8''', NULL,
+ '(710.8) Other specified diffuse diseases of connective tissue', '(710.8) Other specified diffuse diseases of connective tissue', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.9) Unspecified diffuse connective tissue disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Diffuse diseases of connective tissue (710)\(710.9) Unspecified diffuse connective tissue disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''710.9''', NULL,
+ '(710.9) Unspecified diffuse connective tissue disease', '(710.9) Unspecified diffuse connective tissue disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717''', NULL,
+ 'Internal derangement of knee (717)', 'Internal derangement of knee (717)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.0) Old bucket handle tear of medial meniscus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.0) Old bucket handle tear of medial meniscus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.0''', NULL,
+ '(717.0) Old bucket handle tear of medial meniscus', '(717.0) Old bucket handle tear of medial meniscus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.1) Derangement of anterior horn of medial meniscus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.1) Derangement of anterior horn of medial meniscus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.1''', NULL,
+ '(717.1) Derangement of anterior horn of medial meniscus', '(717.1) Derangement of anterior horn of medial meniscus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.2) Derangement of posterior horn of medial meniscus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.2) Derangement of posterior horn of medial meniscus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.2''', NULL,
+ '(717.2) Derangement of posterior horn of medial meniscus', '(717.2) Derangement of posterior horn of medial meniscus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.3) Other and unspecified derangement of medial meniscus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.3) Other and unspecified derangement of medial meniscus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.3''', NULL,
+ '(717.3) Other and unspecified derangement of medial meniscus', '(717.3) Other and unspecified derangement of medial meniscus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.5) Derangement of meniscus, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.5) Derangement of meniscus, not elsewhere classified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.5''', NULL,
+ '(717.5) Derangement of meniscus, not elsewhere classified', '(717.5) Derangement of meniscus, not elsewhere classified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.6) Loose body in knee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.6) Loose body in knee\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.6''', NULL,
+ '(717.6) Loose body in knee', '(717.6) Loose body in knee', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.7) Chondromalacia of patella\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.7) Chondromalacia of patella\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.7''', NULL,
+ '(717.7) Chondromalacia of patella', '(717.7) Chondromalacia of patella', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.9) Unspecified internal derangement of knee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\(717.9) Unspecified internal derangement of knee\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.9''', NULL,
+ '(717.9) Unspecified internal derangement of knee', '(717.9) Unspecified internal derangement of knee', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.4''', NULL,
+ 'Derangement of lateral meniscus (717.4)', 'Derangement of lateral meniscus (717.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\(717.40) Derangement of lateral meniscus, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\(717.40) Derangement of lateral meniscus, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.40''', NULL,
+ '(717.40) Derangement of lateral meniscus, unspecified', '(717.40) Derangement of lateral meniscus, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\(717.41) Bucket handle tear of lateral meniscus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\(717.41) Bucket handle tear of lateral meniscus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.41''', NULL,
+ '(717.41) Bucket handle tear of lateral meniscus', '(717.41) Bucket handle tear of lateral meniscus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\(717.42) Derangement of anterior horn of lateral meniscus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\(717.42) Derangement of anterior horn of lateral meniscus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.42''', NULL,
+ '(717.42) Derangement of anterior horn of lateral meniscus', '(717.42) Derangement of anterior horn of lateral meniscus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\(717.43) Derangement of posterior horn of lateral meniscus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\(717.43) Derangement of posterior horn of lateral meniscus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.43''', NULL,
+ '(717.43) Derangement of posterior horn of lateral meniscus', '(717.43) Derangement of posterior horn of lateral meniscus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\(717.49) Other derangement of lateral meniscus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Derangement of lateral meniscus (717.4)\(717.49) Other derangement of lateral meniscus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.49''', NULL,
+ '(717.49) Other derangement of lateral meniscus', '(717.49) Other derangement of lateral meniscus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.8''', NULL,
+ 'Other internal derangement of knee (717.8)', 'Other internal derangement of knee (717.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\(717.81) Old disruption of lateral collateral ligament\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\(717.81) Old disruption of lateral collateral ligament\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.81''', NULL,
+ '(717.81) Old disruption of lateral collateral ligament', '(717.81) Old disruption of lateral collateral ligament', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\(717.82) Old disruption of medial collateral ligament\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\(717.82) Old disruption of medial collateral ligament\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.82''', NULL,
+ '(717.82) Old disruption of medial collateral ligament', '(717.82) Old disruption of medial collateral ligament', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\(717.83) Old disruption of anterior cruciate ligament\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\(717.83) Old disruption of anterior cruciate ligament\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.83''', NULL,
+ '(717.83) Old disruption of anterior cruciate ligament', '(717.83) Old disruption of anterior cruciate ligament', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\(717.84) Old disruption of posterior cruciate ligament\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\(717.84) Old disruption of posterior cruciate ligament\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.84''', NULL,
+ '(717.84) Old disruption of posterior cruciate ligament', '(717.84) Old disruption of posterior cruciate ligament', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\(717.85) Old disruption of other ligaments of knee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\(717.85) Old disruption of other ligaments of knee\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.85''', NULL,
+ '(717.85) Old disruption of other ligaments of knee', '(717.85) Old disruption of other ligaments of knee', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\(717.89) Other internal derangement of knee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Internal derangement of knee (717)\Other internal derangement of knee (717.8)\(717.89) Other internal derangement of knee\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''717.89''', NULL,
+ '(717.89) Other internal derangement of knee', '(717.89) Other internal derangement of knee', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715''', NULL,
+ 'Osteoarthrosis and allied disorders (715)', 'Osteoarthrosis and allied disorders (715)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis involving or with mention of more than one site, but not specified as generalized (715.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis involving or with mention of more than one site, but not specified as generalized (715.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.8''', NULL,
+ 'Osteoarthrosis involving or with mention of more than one site, but not specified as generalized (715.8)', 'Osteoarthrosis involving or with mention of more than one site, but not specified as generalized (715.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis involving or with mention of more than one site, but not specified as generalized (715.8)\(715.80) Osteoarthrosis involving, or with mention of more than one site, but not specified as generalized, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis involving or with mention of more than one site, but not specified as generalized (715.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis involving or with mention of more than one site, but not specified as generalized (715.8)\(715.80) Osteoarthrosis involving, or with mention of more than one site, but not specified as generalized, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.80''', NULL,
+ '(715.80) Osteoarthrosis involving, or with mention of more than one site, but not specified as generalized, site unspecified', '(715.80) Osteoarthrosis involving, or with mention of more than one site, but not specified as generalized, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis involving or with mention of more than one site, but not specified as generalized (715.8)\(715.89) Osteoarthrosis involving, or with mention of more than one site, but not specified as generalized, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis involving or with mention of more than one site, but not specified as generalized (715.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis involving or with mention of more than one site, but not specified as generalized (715.8)\(715.89) Osteoarthrosis involving, or with mention of more than one site, but not specified as generalized, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.89''', NULL,
+ '(715.89) Osteoarthrosis involving, or with mention of more than one site, but not specified as generalized, multiple sites', '(715.89) Osteoarthrosis involving, or with mention of more than one site, but not specified as generalized, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, generalized (715.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, generalized (715.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.0''', NULL,
+ 'Osteoarthrosis, generalized (715.0)', 'Osteoarthrosis, generalized (715.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, generalized (715.0)\(715.00) Osteoarthrosis, generalized, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, generalized (715.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, generalized (715.0)\(715.00) Osteoarthrosis, generalized, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.00''', NULL,
+ '(715.00) Osteoarthrosis, generalized, site unspecified', '(715.00) Osteoarthrosis, generalized, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, generalized (715.0)\(715.04) Osteoarthrosis, generalized, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, generalized (715.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, generalized (715.0)\(715.04) Osteoarthrosis, generalized, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.04''', NULL,
+ '(715.04) Osteoarthrosis, generalized, hand', '(715.04) Osteoarthrosis, generalized, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, generalized (715.0)\(715.09) Osteoarthrosis, generalized, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, generalized (715.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, generalized (715.0)\(715.09) Osteoarthrosis, generalized, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.09''', NULL,
+ '(715.09) Osteoarthrosis, generalized, multiple sites', '(715.09) Osteoarthrosis, generalized, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.3''', NULL,
+ 'Osteoarthrosis, localized, not specified whether primary or secondary (715.3)', 'Osteoarthrosis, localized, not specified whether primary or secondary (715.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.30) Osteoarthrosis, localized, not specified whether primary or secondary, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.30) Osteoarthrosis, localized, not specified whether primary or secondary, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.30''', NULL,
+ '(715.30) Osteoarthrosis, localized, not specified whether primary or secondary, site unspecified', '(715.30) Osteoarthrosis, localized, not specified whether primary or secondary, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.31) Osteoarthrosis, localized, not specified whether primary or secondary, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.31) Osteoarthrosis, localized, not specified whether primary or secondary, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.31''', NULL,
+ '(715.31) Osteoarthrosis, localized, not specified whether primary or secondary, shoulder region', '(715.31) Osteoarthrosis, localized, not specified whether primary or secondary, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.32) Osteoarthrosis, localized, not specified whether primary or secondary, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.32) Osteoarthrosis, localized, not specified whether primary or secondary, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.32''', NULL,
+ '(715.32) Osteoarthrosis, localized, not specified whether primary or secondary, upper arm', '(715.32) Osteoarthrosis, localized, not specified whether primary or secondary, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.33) Osteoarthrosis, localized, not specified whether primary or secondary, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.33) Osteoarthrosis, localized, not specified whether primary or secondary, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.33''', NULL,
+ '(715.33) Osteoarthrosis, localized, not specified whether primary or secondary, forearm', '(715.33) Osteoarthrosis, localized, not specified whether primary or secondary, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.34) Osteoarthrosis, localized, not specified whether primary or secondary, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.34) Osteoarthrosis, localized, not specified whether primary or secondary, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.34''', NULL,
+ '(715.34) Osteoarthrosis, localized, not specified whether primary or secondary, hand', '(715.34) Osteoarthrosis, localized, not specified whether primary or secondary, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.35) Osteoarthrosis, localized, not specified whether primary or secondary, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.35) Osteoarthrosis, localized, not specified whether primary or secondary, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.35''', NULL,
+ '(715.35) Osteoarthrosis, localized, not specified whether primary or secondary, pelvic region and thigh', '(715.35) Osteoarthrosis, localized, not specified whether primary or secondary, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.36) Osteoarthrosis, localized, not specified whether primary or secondary, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.36) Osteoarthrosis, localized, not specified whether primary or secondary, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.36''', NULL,
+ '(715.36) Osteoarthrosis, localized, not specified whether primary or secondary, lower leg', '(715.36) Osteoarthrosis, localized, not specified whether primary or secondary, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.37) Osteoarthrosis, localized, not specified whether primary or secondary, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.37) Osteoarthrosis, localized, not specified whether primary or secondary, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.37''', NULL,
+ '(715.37) Osteoarthrosis, localized, not specified whether primary or secondary, ankle and foot', '(715.37) Osteoarthrosis, localized, not specified whether primary or secondary, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.38) Osteoarthrosis, localized, not specified whether primary or secondary, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, not specified whether primary or secondary (715.3)\(715.38) Osteoarthrosis, localized, not specified whether primary or secondary, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.38''', NULL,
+ '(715.38) Osteoarthrosis, localized, not specified whether primary or secondary, other specified sites', '(715.38) Osteoarthrosis, localized, not specified whether primary or secondary, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.1''', NULL,
+ 'Osteoarthrosis, localized, primary (715.1)', 'Osteoarthrosis, localized, primary (715.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.10) Osteoarthrosis, localized, primary, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.10) Osteoarthrosis, localized, primary, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.10''', NULL,
+ '(715.10) Osteoarthrosis, localized, primary, site unspecified', '(715.10) Osteoarthrosis, localized, primary, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.11) Osteoarthrosis, localized, primary, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.11) Osteoarthrosis, localized, primary, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.11''', NULL,
+ '(715.11) Osteoarthrosis, localized, primary, shoulder region', '(715.11) Osteoarthrosis, localized, primary, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.12) Osteoarthrosis, localized, primary, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.12) Osteoarthrosis, localized, primary, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.12''', NULL,
+ '(715.12) Osteoarthrosis, localized, primary, upper arm', '(715.12) Osteoarthrosis, localized, primary, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.13) Osteoarthrosis, localized, primary, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.13) Osteoarthrosis, localized, primary, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.13''', NULL,
+ '(715.13) Osteoarthrosis, localized, primary, forearm', '(715.13) Osteoarthrosis, localized, primary, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.14) Osteoarthrosis, localized, primary, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.14) Osteoarthrosis, localized, primary, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.14''', NULL,
+ '(715.14) Osteoarthrosis, localized, primary, hand', '(715.14) Osteoarthrosis, localized, primary, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.15) Osteoarthrosis, localized, primary, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.15) Osteoarthrosis, localized, primary, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.15''', NULL,
+ '(715.15) Osteoarthrosis, localized, primary, pelvic region and thigh', '(715.15) Osteoarthrosis, localized, primary, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.16) Osteoarthrosis, localized, primary, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.16) Osteoarthrosis, localized, primary, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.16''', NULL,
+ '(715.16) Osteoarthrosis, localized, primary, lower leg', '(715.16) Osteoarthrosis, localized, primary, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.17) Osteoarthrosis, localized, primary, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.17) Osteoarthrosis, localized, primary, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.17''', NULL,
+ '(715.17) Osteoarthrosis, localized, primary, ankle and foot', '(715.17) Osteoarthrosis, localized, primary, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.18) Osteoarthrosis, localized, primary, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, primary (715.1)\(715.18) Osteoarthrosis, localized, primary, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.18''', NULL,
+ '(715.18) Osteoarthrosis, localized, primary, other specified sites', '(715.18) Osteoarthrosis, localized, primary, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.2''', NULL,
+ 'Osteoarthrosis, localized, secondary (715.2)', 'Osteoarthrosis, localized, secondary (715.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.20) Osteoarthrosis, localized, secondary, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.20) Osteoarthrosis, localized, secondary, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.20''', NULL,
+ '(715.20) Osteoarthrosis, localized, secondary, site unspecified', '(715.20) Osteoarthrosis, localized, secondary, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.21) Osteoarthrosis, localized, secondary, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.21) Osteoarthrosis, localized, secondary, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.21''', NULL,
+ '(715.21) Osteoarthrosis, localized, secondary, shoulder region', '(715.21) Osteoarthrosis, localized, secondary, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.22) Osteoarthrosis, localized, secondary, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.22) Osteoarthrosis, localized, secondary, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.22''', NULL,
+ '(715.22) Osteoarthrosis, localized, secondary, upper arm', '(715.22) Osteoarthrosis, localized, secondary, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.23) Osteoarthrosis, localized, secondary, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.23) Osteoarthrosis, localized, secondary, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.23''', NULL,
+ '(715.23) Osteoarthrosis, localized, secondary, forearm', '(715.23) Osteoarthrosis, localized, secondary, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.24) Osteoarthrosis, localized, secondary, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.24) Osteoarthrosis, localized, secondary, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.24''', NULL,
+ '(715.24) Osteoarthrosis, localized, secondary, hand', '(715.24) Osteoarthrosis, localized, secondary, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.25) Osteoarthrosis, localized, secondary, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.25) Osteoarthrosis, localized, secondary, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.25''', NULL,
+ '(715.25) Osteoarthrosis, localized, secondary, pelvic region and thigh', '(715.25) Osteoarthrosis, localized, secondary, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.26) Osteoarthrosis, localized, secondary, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.26) Osteoarthrosis, localized, secondary, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.26''', NULL,
+ '(715.26) Osteoarthrosis, localized, secondary, lower leg', '(715.26) Osteoarthrosis, localized, secondary, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.27) Osteoarthrosis, localized, secondary, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.27) Osteoarthrosis, localized, secondary, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.27''', NULL,
+ '(715.27) Osteoarthrosis, localized, secondary, ankle and foot', '(715.27) Osteoarthrosis, localized, secondary, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.28) Osteoarthrosis, localized, secondary, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, localized, secondary (715.2)\(715.28) Osteoarthrosis, localized, secondary, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.28''', NULL,
+ '(715.28) Osteoarthrosis, localized, secondary, other specified sites', '(715.28) Osteoarthrosis, localized, secondary, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.9''', NULL,
+ 'Osteoarthrosis, unspecified whether generalized or localized (715.9)', 'Osteoarthrosis, unspecified whether generalized or localized (715.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.90) Osteoarthrosis, unspecified whether generalized or localized, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.90) Osteoarthrosis, unspecified whether generalized or localized, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.90''', NULL,
+ '(715.90) Osteoarthrosis, unspecified whether generalized or localized, site unspecified', '(715.90) Osteoarthrosis, unspecified whether generalized or localized, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.91) Osteoarthrosis, unspecified whether generalized or localized, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.91) Osteoarthrosis, unspecified whether generalized or localized, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.91''', NULL,
+ '(715.91) Osteoarthrosis, unspecified whether generalized or localized, shoulder region', '(715.91) Osteoarthrosis, unspecified whether generalized or localized, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.92) Osteoarthrosis, unspecified whether generalized or localized, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.92) Osteoarthrosis, unspecified whether generalized or localized, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.92''', NULL,
+ '(715.92) Osteoarthrosis, unspecified whether generalized or localized, upper arm', '(715.92) Osteoarthrosis, unspecified whether generalized or localized, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.93) Osteoarthrosis, unspecified whether generalized or localized, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.93) Osteoarthrosis, unspecified whether generalized or localized, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.93''', NULL,
+ '(715.93) Osteoarthrosis, unspecified whether generalized or localized, forearm', '(715.93) Osteoarthrosis, unspecified whether generalized or localized, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.94) Osteoarthrosis, unspecified whether generalized or localized, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.94) Osteoarthrosis, unspecified whether generalized or localized, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.94''', NULL,
+ '(715.94) Osteoarthrosis, unspecified whether generalized or localized, hand', '(715.94) Osteoarthrosis, unspecified whether generalized or localized, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.95) Osteoarthrosis, unspecified whether generalized or localized, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.95) Osteoarthrosis, unspecified whether generalized or localized, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.95''', NULL,
+ '(715.95) Osteoarthrosis, unspecified whether generalized or localized, pelvic region and thigh', '(715.95) Osteoarthrosis, unspecified whether generalized or localized, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.96) Osteoarthrosis, unspecified whether generalized or localized, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.96) Osteoarthrosis, unspecified whether generalized or localized, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.96''', NULL,
+ '(715.96) Osteoarthrosis, unspecified whether generalized or localized, lower leg', '(715.96) Osteoarthrosis, unspecified whether generalized or localized, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.97) Osteoarthrosis, unspecified whether generalized or localized, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.97) Osteoarthrosis, unspecified whether generalized or localized, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.97''', NULL,
+ '(715.97) Osteoarthrosis, unspecified whether generalized or localized, ankle and foot', '(715.97) Osteoarthrosis, unspecified whether generalized or localized, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.98) Osteoarthrosis, unspecified whether generalized or localized, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Osteoarthrosis and allied disorders (715)\Osteoarthrosis, unspecified whether generalized or localized (715.9)\(715.98) Osteoarthrosis, unspecified whether generalized or localized, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''715.98''', NULL,
+ '(715.98) Osteoarthrosis, unspecified whether generalized or localized, other specified sites', '(715.98) Osteoarthrosis, unspecified whether generalized or localized, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716''', NULL,
+ 'Other and unspecified arthropathies (716)', 'Other and unspecified arthropathies (716)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.2''', NULL,
+ 'Allergic arthritis (716.2)', 'Allergic arthritis (716.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.20) Allergic arthritis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.20) Allergic arthritis, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.20''', NULL,
+ '(716.20) Allergic arthritis, site unspecified', '(716.20) Allergic arthritis, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.21) Allergic arthritis, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.21) Allergic arthritis, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.21''', NULL,
+ '(716.21) Allergic arthritis, shoulder region', '(716.21) Allergic arthritis, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.22) Allergic arthritis, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.22) Allergic arthritis, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.22''', NULL,
+ '(716.22) Allergic arthritis, upper arm', '(716.22) Allergic arthritis, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.23) Allergic arthritis, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.23) Allergic arthritis, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.23''', NULL,
+ '(716.23) Allergic arthritis, forearm', '(716.23) Allergic arthritis, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.24) Allergic arthritis, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.24) Allergic arthritis, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.24''', NULL,
+ '(716.24) Allergic arthritis, hand', '(716.24) Allergic arthritis, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.25) Allergic arthritis, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.25) Allergic arthritis, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.25''', NULL,
+ '(716.25) Allergic arthritis, pelvic region and thigh', '(716.25) Allergic arthritis, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.26) Allergic arthritis, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.26) Allergic arthritis, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.26''', NULL,
+ '(716.26) Allergic arthritis, lower leg', '(716.26) Allergic arthritis, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.27) Allergic arthritis, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.27) Allergic arthritis, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.27''', NULL,
+ '(716.27) Allergic arthritis, ankle and foot', '(716.27) Allergic arthritis, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.28) Allergic arthritis, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.28) Allergic arthritis, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.28''', NULL,
+ '(716.28) Allergic arthritis, other specified sites', '(716.28) Allergic arthritis, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.29) Allergic arthritis, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Allergic arthritis (716.2)\(716.29) Allergic arthritis, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.29''', NULL,
+ '(716.29) Allergic arthritis, multiple sites', '(716.29) Allergic arthritis, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.9''', NULL,
+ 'Arthropathy, unspecified (716.9)', 'Arthropathy, unspecified (716.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.90) Arthropathy, unspecified, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.90) Arthropathy, unspecified, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.90''', NULL,
+ '(716.90) Arthropathy, unspecified, site unspecified', '(716.90) Arthropathy, unspecified, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.91) Arthropathy, unspecified, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.91) Arthropathy, unspecified, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.91''', NULL,
+ '(716.91) Arthropathy, unspecified, shoulder region', '(716.91) Arthropathy, unspecified, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.92) Arthropathy, unspecified, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.92) Arthropathy, unspecified, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.92''', NULL,
+ '(716.92) Arthropathy, unspecified, upper arm', '(716.92) Arthropathy, unspecified, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.93) Arthropathy, unspecified, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.93) Arthropathy, unspecified, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.93''', NULL,
+ '(716.93) Arthropathy, unspecified, forearm', '(716.93) Arthropathy, unspecified, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.94) Arthropathy, unspecified, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.94) Arthropathy, unspecified, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.94''', NULL,
+ '(716.94) Arthropathy, unspecified, hand', '(716.94) Arthropathy, unspecified, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.95) Arthropathy, unspecified, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.95) Arthropathy, unspecified, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.95''', NULL,
+ '(716.95) Arthropathy, unspecified, pelvic region and thigh', '(716.95) Arthropathy, unspecified, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.96) Arthropathy, unspecified, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.96) Arthropathy, unspecified, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.96''', NULL,
+ '(716.96) Arthropathy, unspecified, lower leg', '(716.96) Arthropathy, unspecified, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.97) Arthropathy, unspecified, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.97) Arthropathy, unspecified, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.97''', NULL,
+ '(716.97) Arthropathy, unspecified, ankle and foot', '(716.97) Arthropathy, unspecified, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.98) Arthropathy, unspecified, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.98) Arthropathy, unspecified, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.98''', NULL,
+ '(716.98) Arthropathy, unspecified, other specified sites', '(716.98) Arthropathy, unspecified, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.99) Arthropathy, unspecified, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Arthropathy, unspecified (716.9)\(716.99) Arthropathy, unspecified, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.99''', NULL,
+ '(716.99) Arthropathy, unspecified, multiple sites', '(716.99) Arthropathy, unspecified, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.3''', NULL,
+ 'Climacteric arthritis (716.3)', 'Climacteric arthritis (716.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.30) Climacteric arthritis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.30) Climacteric arthritis, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.30''', NULL,
+ '(716.30) Climacteric arthritis, site unspecified', '(716.30) Climacteric arthritis, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.31) Climacteric arthritis, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.31) Climacteric arthritis, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.31''', NULL,
+ '(716.31) Climacteric arthritis, shoulder region', '(716.31) Climacteric arthritis, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.32) Climacteric arthritis, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.32) Climacteric arthritis, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.32''', NULL,
+ '(716.32) Climacteric arthritis, upper arm', '(716.32) Climacteric arthritis, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.33) Climacteric arthritis, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.33) Climacteric arthritis, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.33''', NULL,
+ '(716.33) Climacteric arthritis, forearm', '(716.33) Climacteric arthritis, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.34) Climacteric arthritis, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.34) Climacteric arthritis, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.34''', NULL,
+ '(716.34) Climacteric arthritis, hand', '(716.34) Climacteric arthritis, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.35) Climacteric arthritis, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.35) Climacteric arthritis, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.35''', NULL,
+ '(716.35) Climacteric arthritis, pelvic region and thigh', '(716.35) Climacteric arthritis, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.36) Climacteric arthritis, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.36) Climacteric arthritis, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.36''', NULL,
+ '(716.36) Climacteric arthritis, lower leg', '(716.36) Climacteric arthritis, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.37) Climacteric arthritis, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.37) Climacteric arthritis, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.37''', NULL,
+ '(716.37) Climacteric arthritis, ankle and foot', '(716.37) Climacteric arthritis, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.38) Climacteric arthritis, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.38) Climacteric arthritis, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.38''', NULL,
+ '(716.38) Climacteric arthritis, other specified sites', '(716.38) Climacteric arthritis, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.39) Climacteric arthritis, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Climacteric arthritis (716.3)\(716.39) Climacteric arthritis, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.39''', NULL,
+ '(716.39) Climacteric arthritis, multiple sites', '(716.39) Climacteric arthritis, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.0''', NULL,
+ 'Kaschin-Beck disease (716.0)', 'Kaschin-Beck disease (716.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.00) Kaschin-Beck disease, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.00) Kaschin-Beck disease, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.00''', NULL,
+ '(716.00) Kaschin-Beck disease, site unspecified', '(716.00) Kaschin-Beck disease, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.01) Kaschin-Beck disease, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.01) Kaschin-Beck disease, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.01''', NULL,
+ '(716.01) Kaschin-Beck disease, shoulder region', '(716.01) Kaschin-Beck disease, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.02) Kaschin-Beck disease, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.02) Kaschin-Beck disease, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.02''', NULL,
+ '(716.02) Kaschin-Beck disease, upper arm', '(716.02) Kaschin-Beck disease, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.03) Kaschin-Beck disease, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.03) Kaschin-Beck disease, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.03''', NULL,
+ '(716.03) Kaschin-Beck disease, forearm', '(716.03) Kaschin-Beck disease, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.04) Kaschin-Beck disease, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.04) Kaschin-Beck disease, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.04''', NULL,
+ '(716.04) Kaschin-Beck disease, hand', '(716.04) Kaschin-Beck disease, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.05) Kaschin-Beck disease, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.05) Kaschin-Beck disease, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.05''', NULL,
+ '(716.05) Kaschin-Beck disease, pelvic region and thigh', '(716.05) Kaschin-Beck disease, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.06) Kaschin-Beck disease, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.06) Kaschin-Beck disease, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.06''', NULL,
+ '(716.06) Kaschin-Beck disease, lower leg', '(716.06) Kaschin-Beck disease, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.07) Kaschin-Beck disease, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.07) Kaschin-Beck disease, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.07''', NULL,
+ '(716.07) Kaschin-Beck disease, ankle and foot', '(716.07) Kaschin-Beck disease, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.08) Kaschin-Beck disease, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.08) Kaschin-Beck disease, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.08''', NULL,
+ '(716.08) Kaschin-Beck disease, other specified sites', '(716.08) Kaschin-Beck disease, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.09) Kaschin-Beck disease, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Kaschin-Beck disease (716.0)\(716.09) Kaschin-Beck disease, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.09''', NULL,
+ '(716.09) Kaschin-Beck disease, multiple sites', '(716.09) Kaschin-Beck disease, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.8''', NULL,
+ 'Other specified arthropathy (716.8)', 'Other specified arthropathy (716.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.80) Other specified arthropathy, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.80) Other specified arthropathy, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.80''', NULL,
+ '(716.80) Other specified arthropathy, site unspecified', '(716.80) Other specified arthropathy, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.81) Other specified arthropathy, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.81) Other specified arthropathy, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.81''', NULL,
+ '(716.81) Other specified arthropathy, shoulder region', '(716.81) Other specified arthropathy, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.82) Other specified arthropathy, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.82) Other specified arthropathy, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.82''', NULL,
+ '(716.82) Other specified arthropathy, upper arm', '(716.82) Other specified arthropathy, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.83) Other specified arthropathy, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.83) Other specified arthropathy, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.83''', NULL,
+ '(716.83) Other specified arthropathy, forearm', '(716.83) Other specified arthropathy, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.84) Other specified arthropathy, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.84) Other specified arthropathy, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.84''', NULL,
+ '(716.84) Other specified arthropathy, hand', '(716.84) Other specified arthropathy, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.85) Other specified arthropathy, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.85) Other specified arthropathy, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.85''', NULL,
+ '(716.85) Other specified arthropathy, pelvic region and thigh', '(716.85) Other specified arthropathy, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.86) Other specified arthropathy, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.86) Other specified arthropathy, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.86''', NULL,
+ '(716.86) Other specified arthropathy, lower leg', '(716.86) Other specified arthropathy, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.87) Other specified arthropathy, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.87) Other specified arthropathy, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.87''', NULL,
+ '(716.87) Other specified arthropathy, ankle and foot', '(716.87) Other specified arthropathy, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.88) Other specified arthropathy, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.88) Other specified arthropathy, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.88''', NULL,
+ '(716.88) Other specified arthropathy, other specified sites', '(716.88) Other specified arthropathy, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.89) Other specified arthropathy, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Other specified arthropathy (716.8)\(716.89) Other specified arthropathy, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.89''', NULL,
+ '(716.89) Other specified arthropathy, multiple sites', '(716.89) Other specified arthropathy, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.4''', NULL,
+ 'Transient arthropathy (716.4)', 'Transient arthropathy (716.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.40) Transient arthropathy, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.40) Transient arthropathy, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.40''', NULL,
+ '(716.40) Transient arthropathy, site unspecified', '(716.40) Transient arthropathy, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.41) Transient arthropathy, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.41) Transient arthropathy, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.41''', NULL,
+ '(716.41) Transient arthropathy, shoulder region', '(716.41) Transient arthropathy, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.42) Transient arthropathy, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.42) Transient arthropathy, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.42''', NULL,
+ '(716.42) Transient arthropathy, upper arm', '(716.42) Transient arthropathy, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.43) Transient arthropathy, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.43) Transient arthropathy, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.43''', NULL,
+ '(716.43) Transient arthropathy, forearm', '(716.43) Transient arthropathy, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.44) Transient arthropathy, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.44) Transient arthropathy, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.44''', NULL,
+ '(716.44) Transient arthropathy, hand', '(716.44) Transient arthropathy, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.45) Transient arthropathy, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.45) Transient arthropathy, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.45''', NULL,
+ '(716.45) Transient arthropathy, pelvic region and thigh', '(716.45) Transient arthropathy, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.46) Transient arthropathy, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.46) Transient arthropathy, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.46''', NULL,
+ '(716.46) Transient arthropathy, lower leg', '(716.46) Transient arthropathy, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.47) Transient arthropathy, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.47) Transient arthropathy, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.47''', NULL,
+ '(716.47) Transient arthropathy, ankle and foot', '(716.47) Transient arthropathy, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.48) Transient arthropathy, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.48) Transient arthropathy, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.48''', NULL,
+ '(716.48) Transient arthropathy, other specified sites', '(716.48) Transient arthropathy, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.49) Transient arthropathy, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Transient arthropathy (716.4)\(716.49) Transient arthropathy, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.49''', NULL,
+ '(716.49) Transient arthropathy, multiple sites', '(716.49) Transient arthropathy, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.1''', NULL,
+ 'Traumatic arthropathy (716.1)', 'Traumatic arthropathy (716.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.10) Traumatic arthropathy, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.10) Traumatic arthropathy, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.10''', NULL,
+ '(716.10) Traumatic arthropathy, site unspecified', '(716.10) Traumatic arthropathy, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.11) Traumatic arthropathy, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.11) Traumatic arthropathy, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.11''', NULL,
+ '(716.11) Traumatic arthropathy, shoulder region', '(716.11) Traumatic arthropathy, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.12) Traumatic arthropathy, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.12) Traumatic arthropathy, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.12''', NULL,
+ '(716.12) Traumatic arthropathy, upper arm', '(716.12) Traumatic arthropathy, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.13) Traumatic arthropathy, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.13) Traumatic arthropathy, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.13''', NULL,
+ '(716.13) Traumatic arthropathy, forearm', '(716.13) Traumatic arthropathy, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.14) Traumatic arthropathy, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.14) Traumatic arthropathy, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.14''', NULL,
+ '(716.14) Traumatic arthropathy, hand', '(716.14) Traumatic arthropathy, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.15) Traumatic arthropathy, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.15) Traumatic arthropathy, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.15''', NULL,
+ '(716.15) Traumatic arthropathy, pelvic region and thigh', '(716.15) Traumatic arthropathy, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.16) Traumatic arthropathy, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.16) Traumatic arthropathy, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.16''', NULL,
+ '(716.16) Traumatic arthropathy, lower leg', '(716.16) Traumatic arthropathy, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.17) Traumatic arthropathy, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.17) Traumatic arthropathy, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.17''', NULL,
+ '(716.17) Traumatic arthropathy, ankle and foot', '(716.17) Traumatic arthropathy, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.18) Traumatic arthropathy, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.18) Traumatic arthropathy, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.18''', NULL,
+ '(716.18) Traumatic arthropathy, other specified sites', '(716.18) Traumatic arthropathy, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.19) Traumatic arthropathy, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Traumatic arthropathy (716.1)\(716.19) Traumatic arthropathy, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.19''', NULL,
+ '(716.19) Traumatic arthropathy, multiple sites', '(716.19) Traumatic arthropathy, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.6''', NULL,
+ 'Unspecified monoarthritis (716.6)', 'Unspecified monoarthritis (716.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.60) Unspecified monoarthritis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.60) Unspecified monoarthritis, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.60''', NULL,
+ '(716.60) Unspecified monoarthritis, site unspecified', '(716.60) Unspecified monoarthritis, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.61) Unspecified monoarthritis, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.61) Unspecified monoarthritis, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.61''', NULL,
+ '(716.61) Unspecified monoarthritis, shoulder region', '(716.61) Unspecified monoarthritis, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.62) Unspecified monoarthritis, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.62) Unspecified monoarthritis, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.62''', NULL,
+ '(716.62) Unspecified monoarthritis, upper arm', '(716.62) Unspecified monoarthritis, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.63) Unspecified monoarthritis, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.63) Unspecified monoarthritis, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.63''', NULL,
+ '(716.63) Unspecified monoarthritis, forearm', '(716.63) Unspecified monoarthritis, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.64) Unspecified monoarthritis, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.64) Unspecified monoarthritis, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.64''', NULL,
+ '(716.64) Unspecified monoarthritis, hand', '(716.64) Unspecified monoarthritis, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.65) Unspecified monoarthritis, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.65) Unspecified monoarthritis, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.65''', NULL,
+ '(716.65) Unspecified monoarthritis, pelvic region and thigh', '(716.65) Unspecified monoarthritis, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.66) Unspecified monoarthritis, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.66) Unspecified monoarthritis, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.66''', NULL,
+ '(716.66) Unspecified monoarthritis, lower leg', '(716.66) Unspecified monoarthritis, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.67) Unspecified monoarthritis, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.67) Unspecified monoarthritis, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.67''', NULL,
+ '(716.67) Unspecified monoarthritis, ankle and foot', '(716.67) Unspecified monoarthritis, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.68) Unspecified monoarthritis, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified monoarthritis (716.6)\(716.68) Unspecified monoarthritis, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.68''', NULL,
+ '(716.68) Unspecified monoarthritis, other specified sites', '(716.68) Unspecified monoarthritis, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.5''', NULL,
+ 'Unspecified polyarthropathy or polyarthritis (716.5)', 'Unspecified polyarthropathy or polyarthritis (716.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.50) Unspecified polyarthropathy or polyarthritis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.50) Unspecified polyarthropathy or polyarthritis, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.50''', NULL,
+ '(716.50) Unspecified polyarthropathy or polyarthritis, site unspecified', '(716.50) Unspecified polyarthropathy or polyarthritis, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.51) Unspecified polyarthropathy or polyarthritis, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.51) Unspecified polyarthropathy or polyarthritis, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.51''', NULL,
+ '(716.51) Unspecified polyarthropathy or polyarthritis, shoulder region', '(716.51) Unspecified polyarthropathy or polyarthritis, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.52) Unspecified polyarthropathy or polyarthritis, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.52) Unspecified polyarthropathy or polyarthritis, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.52''', NULL,
+ '(716.52) Unspecified polyarthropathy or polyarthritis, upper arm', '(716.52) Unspecified polyarthropathy or polyarthritis, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.53) Unspecified polyarthropathy or polyarthritis, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.53) Unspecified polyarthropathy or polyarthritis, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.53''', NULL,
+ '(716.53) Unspecified polyarthropathy or polyarthritis, forearm', '(716.53) Unspecified polyarthropathy or polyarthritis, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.54) Unspecified polyarthropathy or polyarthritis, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.54) Unspecified polyarthropathy or polyarthritis, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.54''', NULL,
+ '(716.54) Unspecified polyarthropathy or polyarthritis, hand', '(716.54) Unspecified polyarthropathy or polyarthritis, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.55) Unspecified polyarthropathy or polyarthritis, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.55) Unspecified polyarthropathy or polyarthritis, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.55''', NULL,
+ '(716.55) Unspecified polyarthropathy or polyarthritis, pelvic region and thigh', '(716.55) Unspecified polyarthropathy or polyarthritis, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.56) Unspecified polyarthropathy or polyarthritis, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.56) Unspecified polyarthropathy or polyarthritis, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.56''', NULL,
+ '(716.56) Unspecified polyarthropathy or polyarthritis, lower leg', '(716.56) Unspecified polyarthropathy or polyarthritis, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.57) Unspecified polyarthropathy or polyarthritis, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.57) Unspecified polyarthropathy or polyarthritis, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.57''', NULL,
+ '(716.57) Unspecified polyarthropathy or polyarthritis, ankle and foot', '(716.57) Unspecified polyarthropathy or polyarthritis, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.58) Unspecified polyarthropathy or polyarthritis, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.58) Unspecified polyarthropathy or polyarthritis, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.58''', NULL,
+ '(716.58) Unspecified polyarthropathy or polyarthritis, other specified sites', '(716.58) Unspecified polyarthropathy or polyarthritis, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.59) Unspecified polyarthropathy or polyarthritis, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified arthropathies (716)\Unspecified polyarthropathy or polyarthritis (716.5)\(716.59) Unspecified polyarthropathy or polyarthritis, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''716.59''', NULL,
+ '(716.59) Unspecified polyarthropathy or polyarthritis, multiple sites', '(716.59) Unspecified polyarthropathy or polyarthritis, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719''', NULL,
+ 'Other and unspecified disorders of joint (719)', 'Other and unspecified disorders of joint (719)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\(719.7) Difficulty in walking\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\(719.7) Difficulty in walking\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.7''', NULL,
+ '(719.7) Difficulty in walking', '(719.7) Difficulty in walking', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.0''', NULL,
+ 'Effusion of joint (719.0)', 'Effusion of joint (719.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.00) Effusion of joint, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.00) Effusion of joint, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.00''', NULL,
+ '(719.00) Effusion of joint, site unspecified', '(719.00) Effusion of joint, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.01) Effusion of joint, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.01) Effusion of joint, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.01''', NULL,
+ '(719.01) Effusion of joint, shoulder region', '(719.01) Effusion of joint, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.02) Effusion of joint, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.02) Effusion of joint, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.02''', NULL,
+ '(719.02) Effusion of joint, upper arm', '(719.02) Effusion of joint, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.03) Effusion of joint, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.03) Effusion of joint, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.03''', NULL,
+ '(719.03) Effusion of joint, forearm', '(719.03) Effusion of joint, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.04) Effusion of joint, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.04) Effusion of joint, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.04''', NULL,
+ '(719.04) Effusion of joint, hand', '(719.04) Effusion of joint, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.05) Effusion of joint, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.05) Effusion of joint, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.05''', NULL,
+ '(719.05) Effusion of joint, pelvic region and thigh', '(719.05) Effusion of joint, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.06) Effusion of joint, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.06) Effusion of joint, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.06''', NULL,
+ '(719.06) Effusion of joint, lower leg', '(719.06) Effusion of joint, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.07) Effusion of joint, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.07) Effusion of joint, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.07''', NULL,
+ '(719.07) Effusion of joint, ankle and foot', '(719.07) Effusion of joint, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.08) Effusion of joint, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.08) Effusion of joint, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.08''', NULL,
+ '(719.08) Effusion of joint, other specified sites', '(719.08) Effusion of joint, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.09) Effusion of joint, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Effusion of joint (719.0)\(719.09) Effusion of joint, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.09''', NULL,
+ '(719.09) Effusion of joint, multiple sites', '(719.09) Effusion of joint, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.1''', NULL,
+ 'Hemarthrosis (719.1)', 'Hemarthrosis (719.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.10) Hemarthrosis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.10) Hemarthrosis, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.10''', NULL,
+ '(719.10) Hemarthrosis, site unspecified', '(719.10) Hemarthrosis, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.11) Hemarthrosis, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.11) Hemarthrosis, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.11''', NULL,
+ '(719.11) Hemarthrosis, shoulder region', '(719.11) Hemarthrosis, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.12) Hemarthrosis, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.12) Hemarthrosis, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.12''', NULL,
+ '(719.12) Hemarthrosis, upper arm', '(719.12) Hemarthrosis, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.13) Hemarthrosis, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.13) Hemarthrosis, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.13''', NULL,
+ '(719.13) Hemarthrosis, forearm', '(719.13) Hemarthrosis, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.14) Hemarthrosis, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.14) Hemarthrosis, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.14''', NULL,
+ '(719.14) Hemarthrosis, hand', '(719.14) Hemarthrosis, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.15) Hemarthrosis, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.15) Hemarthrosis, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.15''', NULL,
+ '(719.15) Hemarthrosis, pelvic region and thigh', '(719.15) Hemarthrosis, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.16) Hemarthrosis, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.16) Hemarthrosis, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.16''', NULL,
+ '(719.16) Hemarthrosis, lower leg', '(719.16) Hemarthrosis, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.17) Hemarthrosis, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.17) Hemarthrosis, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.17''', NULL,
+ '(719.17) Hemarthrosis, ankle and foot', '(719.17) Hemarthrosis, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.18) Hemarthrosis, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.18) Hemarthrosis, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.18''', NULL,
+ '(719.18) Hemarthrosis, other specified sites', '(719.18) Hemarthrosis, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.19) Hemarthrosis, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Hemarthrosis (719.1)\(719.19) Hemarthrosis, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.19''', NULL,
+ '(719.19) Hemarthrosis, multiple sites', '(719.19) Hemarthrosis, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.8''', NULL,
+ 'Other specified disorders of joint (719.8)', 'Other specified disorders of joint (719.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.80) Other specified disorders of joint, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.80) Other specified disorders of joint, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.80''', NULL,
+ '(719.80) Other specified disorders of joint, site unspecified', '(719.80) Other specified disorders of joint, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.81) Other specified disorders of joint, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.81) Other specified disorders of joint, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.81''', NULL,
+ '(719.81) Other specified disorders of joint, shoulder region', '(719.81) Other specified disorders of joint, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.82) Other specified disorders of joint, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.82) Other specified disorders of joint, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.82''', NULL,
+ '(719.82) Other specified disorders of joint, upper arm', '(719.82) Other specified disorders of joint, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.83) Other specified disorders of joint, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.83) Other specified disorders of joint, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.83''', NULL,
+ '(719.83) Other specified disorders of joint, forearm', '(719.83) Other specified disorders of joint, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.84) Other specified disorders of joint, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.84) Other specified disorders of joint, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.84''', NULL,
+ '(719.84) Other specified disorders of joint, hand', '(719.84) Other specified disorders of joint, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.85) Other specified disorders of joint, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.85) Other specified disorders of joint, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.85''', NULL,
+ '(719.85) Other specified disorders of joint, pelvic region and thigh', '(719.85) Other specified disorders of joint, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.86) Other specified disorders of joint, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.86) Other specified disorders of joint, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.86''', NULL,
+ '(719.86) Other specified disorders of joint, lower leg', '(719.86) Other specified disorders of joint, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.87) Other specified disorders of joint, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.87) Other specified disorders of joint, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.87''', NULL,
+ '(719.87) Other specified disorders of joint, ankle and foot', '(719.87) Other specified disorders of joint, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.88) Other specified disorders of joint, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.88) Other specified disorders of joint, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.88''', NULL,
+ '(719.88) Other specified disorders of joint, other specified sites', '(719.88) Other specified disorders of joint, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.89) Other specified disorders of joint, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other specified disorders of joint (719.8)\(719.89) Other specified disorders of joint, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.89''', NULL,
+ '(719.89) Other specified disorders of joint, multiple sites', '(719.89) Other specified disorders of joint, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.6''', NULL,
+ 'Other symptoms referable to joint (719.6)', 'Other symptoms referable to joint (719.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.60) Other symptoms referable to joint, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.60) Other symptoms referable to joint, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.60''', NULL,
+ '(719.60) Other symptoms referable to joint, site unspecified', '(719.60) Other symptoms referable to joint, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.61) Other symptoms referable to joint, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.61) Other symptoms referable to joint, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.61''', NULL,
+ '(719.61) Other symptoms referable to joint, shoulder region', '(719.61) Other symptoms referable to joint, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.62) Other symptoms referable to joint, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.62) Other symptoms referable to joint, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.62''', NULL,
+ '(719.62) Other symptoms referable to joint, upper arm', '(719.62) Other symptoms referable to joint, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.63) Other symptoms referable to joint, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.63) Other symptoms referable to joint, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.63''', NULL,
+ '(719.63) Other symptoms referable to joint, forearm', '(719.63) Other symptoms referable to joint, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.64) Other symptoms referable to joint, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.64) Other symptoms referable to joint, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.64''', NULL,
+ '(719.64) Other symptoms referable to joint, hand', '(719.64) Other symptoms referable to joint, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.65) Other symptoms referable to joint, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.65) Other symptoms referable to joint, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.65''', NULL,
+ '(719.65) Other symptoms referable to joint, pelvic region and thigh', '(719.65) Other symptoms referable to joint, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.66) Other symptoms referable to joint, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.66) Other symptoms referable to joint, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.66''', NULL,
+ '(719.66) Other symptoms referable to joint, lower leg', '(719.66) Other symptoms referable to joint, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.67) Other symptoms referable to joint, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.67) Other symptoms referable to joint, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.67''', NULL,
+ '(719.67) Other symptoms referable to joint, ankle and foot', '(719.67) Other symptoms referable to joint, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.68) Other symptoms referable to joint, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.68) Other symptoms referable to joint, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.68''', NULL,
+ '(719.68) Other symptoms referable to joint, other specified sites', '(719.68) Other symptoms referable to joint, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.69) Other symptoms referable to joint, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Other symptoms referable to joint (719.6)\(719.69) Other symptoms referable to joint, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.69''', NULL,
+ '(719.69) Other symptoms referable to joint, multiple sites', '(719.69) Other symptoms referable to joint, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.4''', NULL,
+ 'Pain in joint (719.4)', 'Pain in joint (719.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.40) Pain in joint, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.40) Pain in joint, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.40''', NULL,
+ '(719.40) Pain in joint, site unspecified', '(719.40) Pain in joint, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.41) Pain in joint, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.41) Pain in joint, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.41''', NULL,
+ '(719.41) Pain in joint, shoulder region', '(719.41) Pain in joint, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.42) Pain in joint, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.42) Pain in joint, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.42''', NULL,
+ '(719.42) Pain in joint, upper arm', '(719.42) Pain in joint, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.43) Pain in joint, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.43) Pain in joint, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.43''', NULL,
+ '(719.43) Pain in joint, forearm', '(719.43) Pain in joint, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.44) Pain in joint, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.44) Pain in joint, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.44''', NULL,
+ '(719.44) Pain in joint, hand', '(719.44) Pain in joint, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.45) Pain in joint, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.45) Pain in joint, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.45''', NULL,
+ '(719.45) Pain in joint, pelvic region and thigh', '(719.45) Pain in joint, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.46) Pain in joint, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.46) Pain in joint, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.46''', NULL,
+ '(719.46) Pain in joint, lower leg', '(719.46) Pain in joint, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.47) Pain in joint, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.47) Pain in joint, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.47''', NULL,
+ '(719.47) Pain in joint, ankle and foot', '(719.47) Pain in joint, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.48) Pain in joint, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.48) Pain in joint, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.48''', NULL,
+ '(719.48) Pain in joint, other specified sites', '(719.48) Pain in joint, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.49) Pain in joint, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Pain in joint (719.4)\(719.49) Pain in joint, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.49''', NULL,
+ '(719.49) Pain in joint, multiple sites', '(719.49) Pain in joint, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.3''', NULL,
+ 'Palindromic rheumatism (719.3)', 'Palindromic rheumatism (719.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.30) Palindromic rheumatism, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.30) Palindromic rheumatism, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.30''', NULL,
+ '(719.30) Palindromic rheumatism, site unspecified', '(719.30) Palindromic rheumatism, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.31) Palindromic rheumatism, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.31) Palindromic rheumatism, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.31''', NULL,
+ '(719.31) Palindromic rheumatism, shoulder region', '(719.31) Palindromic rheumatism, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.32) Palindromic rheumatism, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.32) Palindromic rheumatism, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.32''', NULL,
+ '(719.32) Palindromic rheumatism, upper arm', '(719.32) Palindromic rheumatism, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.33) Palindromic rheumatism, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.33) Palindromic rheumatism, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.33''', NULL,
+ '(719.33) Palindromic rheumatism, forearm', '(719.33) Palindromic rheumatism, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.34) Palindromic rheumatism, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.34) Palindromic rheumatism, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.34''', NULL,
+ '(719.34) Palindromic rheumatism, hand', '(719.34) Palindromic rheumatism, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.35) Palindromic rheumatism, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.35) Palindromic rheumatism, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.35''', NULL,
+ '(719.35) Palindromic rheumatism, pelvic region and thigh', '(719.35) Palindromic rheumatism, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.36) Palindromic rheumatism, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.36) Palindromic rheumatism, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.36''', NULL,
+ '(719.36) Palindromic rheumatism, lower leg', '(719.36) Palindromic rheumatism, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.37) Palindromic rheumatism, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.37) Palindromic rheumatism, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.37''', NULL,
+ '(719.37) Palindromic rheumatism, ankle and foot', '(719.37) Palindromic rheumatism, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.38) Palindromic rheumatism, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.38) Palindromic rheumatism, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.38''', NULL,
+ '(719.38) Palindromic rheumatism, other specified sites', '(719.38) Palindromic rheumatism, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.39) Palindromic rheumatism, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Palindromic rheumatism (719.3)\(719.39) Palindromic rheumatism, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.39''', NULL,
+ '(719.39) Palindromic rheumatism, multiple sites', '(719.39) Palindromic rheumatism, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.5''', NULL,
+ 'Stiffness of joint, not elsewhere classified (719.5)', 'Stiffness of joint, not elsewhere classified (719.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.50) Stiffness of joint, not elsewhere classified, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.50) Stiffness of joint, not elsewhere classified, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.50''', NULL,
+ '(719.50) Stiffness of joint, not elsewhere classified, site unspecified', '(719.50) Stiffness of joint, not elsewhere classified, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.51) Stiffness of joint, not elsewhere classified, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.51) Stiffness of joint, not elsewhere classified, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.51''', NULL,
+ '(719.51) Stiffness of joint, not elsewhere classified, shoulder region', '(719.51) Stiffness of joint, not elsewhere classified, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.52) Stiffness of joint, not elsewhere classified, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.52) Stiffness of joint, not elsewhere classified, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.52''', NULL,
+ '(719.52) Stiffness of joint, not elsewhere classified, upper arm', '(719.52) Stiffness of joint, not elsewhere classified, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.53) Stiffness of joint, not elsewhere classified, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.53) Stiffness of joint, not elsewhere classified, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.53''', NULL,
+ '(719.53) Stiffness of joint, not elsewhere classified, forearm', '(719.53) Stiffness of joint, not elsewhere classified, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.54) Stiffness of joint, not elsewhere classified, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.54) Stiffness of joint, not elsewhere classified, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.54''', NULL,
+ '(719.54) Stiffness of joint, not elsewhere classified, hand', '(719.54) Stiffness of joint, not elsewhere classified, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.55) Stiffness of joint, not elsewhere classified, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.55) Stiffness of joint, not elsewhere classified, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.55''', NULL,
+ '(719.55) Stiffness of joint, not elsewhere classified, pelvic region and thigh', '(719.55) Stiffness of joint, not elsewhere classified, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.56) Stiffness of joint, not elsewhere classified, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.56) Stiffness of joint, not elsewhere classified, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.56''', NULL,
+ '(719.56) Stiffness of joint, not elsewhere classified, lower leg', '(719.56) Stiffness of joint, not elsewhere classified, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.57) Stiffness of joint, not elsewhere classified, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.57) Stiffness of joint, not elsewhere classified, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.57''', NULL,
+ '(719.57) Stiffness of joint, not elsewhere classified, ankle and foot', '(719.57) Stiffness of joint, not elsewhere classified, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.58) Stiffness of joint, not elsewhere classified, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.58) Stiffness of joint, not elsewhere classified, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.58''', NULL,
+ '(719.58) Stiffness of joint, not elsewhere classified, other specified sites', '(719.58) Stiffness of joint, not elsewhere classified, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.59) Stiffness of joint, not elsewhere classified, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Stiffness of joint, not elsewhere classified (719.5)\(719.59) Stiffness of joint, not elsewhere classified, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.59''', NULL,
+ '(719.59) Stiffness of joint, not elsewhere classified, multiple sites', '(719.59) Stiffness of joint, not elsewhere classified, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.9''', NULL,
+ 'Unspecified disorder of joint (719.9)', 'Unspecified disorder of joint (719.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.90) Unspecified disorder of joint, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.90) Unspecified disorder of joint, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.90''', NULL,
+ '(719.90) Unspecified disorder of joint, site unspecified', '(719.90) Unspecified disorder of joint, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.91) Unspecified disorder of joint, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.91) Unspecified disorder of joint, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.91''', NULL,
+ '(719.91) Unspecified disorder of joint, shoulder region', '(719.91) Unspecified disorder of joint, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.92) Unspecified disorder of joint, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.92) Unspecified disorder of joint, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.92''', NULL,
+ '(719.92) Unspecified disorder of joint, upper arm', '(719.92) Unspecified disorder of joint, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.93) Unspecified disorder of joint, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.93) Unspecified disorder of joint, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.93''', NULL,
+ '(719.93) Unspecified disorder of joint, forearm', '(719.93) Unspecified disorder of joint, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.94) Unspecified disorder of joint, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.94) Unspecified disorder of joint, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.94''', NULL,
+ '(719.94) Unspecified disorder of joint, hand', '(719.94) Unspecified disorder of joint, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.95) Unspecified disorder of joint, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.95) Unspecified disorder of joint, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.95''', NULL,
+ '(719.95) Unspecified disorder of joint, pelvic region and thigh', '(719.95) Unspecified disorder of joint, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.96) Unspecified disorder of joint, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.96) Unspecified disorder of joint, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.96''', NULL,
+ '(719.96) Unspecified disorder of joint, lower leg', '(719.96) Unspecified disorder of joint, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.97) Unspecified disorder of joint, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.97) Unspecified disorder of joint, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.97''', NULL,
+ '(719.97) Unspecified disorder of joint, ankle and foot', '(719.97) Unspecified disorder of joint, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.98) Unspecified disorder of joint, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.98) Unspecified disorder of joint, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.98''', NULL,
+ '(719.98) Unspecified disorder of joint, other specified sites', '(719.98) Unspecified disorder of joint, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.99) Unspecified disorder of joint, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Unspecified disorder of joint (719.9)\(719.99) Unspecified disorder of joint, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.99''', NULL,
+ '(719.99) Unspecified disorder of joint, multiple sites', '(719.99) Unspecified disorder of joint, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.2''', NULL,
+ 'Villonodular synovitis (719.2)', 'Villonodular synovitis (719.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.20) Villonodular synovitis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.20) Villonodular synovitis, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.20''', NULL,
+ '(719.20) Villonodular synovitis, site unspecified', '(719.20) Villonodular synovitis, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.21) Villonodular synovitis, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.21) Villonodular synovitis, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.21''', NULL,
+ '(719.21) Villonodular synovitis, shoulder region', '(719.21) Villonodular synovitis, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.22) Villonodular synovitis, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.22) Villonodular synovitis, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.22''', NULL,
+ '(719.22) Villonodular synovitis, upper arm', '(719.22) Villonodular synovitis, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.23) Villonodular synovitis, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.23) Villonodular synovitis, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.23''', NULL,
+ '(719.23) Villonodular synovitis, forearm', '(719.23) Villonodular synovitis, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.24) Villonodular synovitis, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.24) Villonodular synovitis, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.24''', NULL,
+ '(719.24) Villonodular synovitis, hand', '(719.24) Villonodular synovitis, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.25) Villonodular synovitis, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.25) Villonodular synovitis, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.25''', NULL,
+ '(719.25) Villonodular synovitis, pelvic region and thigh', '(719.25) Villonodular synovitis, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.26) Villonodular synovitis, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.26) Villonodular synovitis, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.26''', NULL,
+ '(719.26) Villonodular synovitis, lower leg', '(719.26) Villonodular synovitis, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.27) Villonodular synovitis, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.27) Villonodular synovitis, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.27''', NULL,
+ '(719.27) Villonodular synovitis, ankle and foot', '(719.27) Villonodular synovitis, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.28) Villonodular synovitis, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.28) Villonodular synovitis, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.28''', NULL,
+ '(719.28) Villonodular synovitis, other specified sites', '(719.28) Villonodular synovitis, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.29) Villonodular synovitis, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other and unspecified disorders of joint (719)\Villonodular synovitis (719.2)\(719.29) Villonodular synovitis, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''719.29''', NULL,
+ '(719.29) Villonodular synovitis, multiple sites', '(719.29) Villonodular synovitis, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718''', NULL,
+ 'Other derangement of joint (718)', 'Other derangement of joint (718)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.5''', NULL,
+ 'Ankylosis of joint (718.5)', 'Ankylosis of joint (718.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.50) Ankylosis of joint, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.50) Ankylosis of joint, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.50''', NULL,
+ '(718.50) Ankylosis of joint, site unspecified', '(718.50) Ankylosis of joint, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.51) Ankylosis of joint, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.51) Ankylosis of joint, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.51''', NULL,
+ '(718.51) Ankylosis of joint, shoulder region', '(718.51) Ankylosis of joint, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.52) Ankylosis of joint, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.52) Ankylosis of joint, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.52''', NULL,
+ '(718.52) Ankylosis of joint, upper arm', '(718.52) Ankylosis of joint, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.53) Ankylosis of joint, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.53) Ankylosis of joint, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.53''', NULL,
+ '(718.53) Ankylosis of joint, forearm', '(718.53) Ankylosis of joint, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.54) Ankylosis of joint, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.54) Ankylosis of joint, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.54''', NULL,
+ '(718.54) Ankylosis of joint, hand', '(718.54) Ankylosis of joint, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.55) Ankylosis of joint, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.55) Ankylosis of joint, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.55''', NULL,
+ '(718.55) Ankylosis of joint, pelvic region and thigh', '(718.55) Ankylosis of joint, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.56) Ankylosis of joint, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.56) Ankylosis of joint, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.56''', NULL,
+ '(718.56) Ankylosis of joint, lower leg', '(718.56) Ankylosis of joint, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.57) Ankylosis of joint, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.57) Ankylosis of joint, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.57''', NULL,
+ '(718.57) Ankylosis of joint, ankle and foot', '(718.57) Ankylosis of joint, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.58) Ankylosis of joint, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.58) Ankylosis of joint, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.58''', NULL,
+ '(718.58) Ankylosis of joint, other specified sites', '(718.58) Ankylosis of joint, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.59) Ankylosis of joint, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Ankylosis of joint (718.5)\(718.59) Ankylosis of joint, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.59''', NULL,
+ '(718.59) Ankylosis of joint, multiple sites', '(718.59) Ankylosis of joint, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.0''', NULL,
+ 'Articular cartilage disorder (718.0)', 'Articular cartilage disorder (718.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.00) Articular cartilage disorder, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.00) Articular cartilage disorder, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.00''', NULL,
+ '(718.00) Articular cartilage disorder, site unspecified', '(718.00) Articular cartilage disorder, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.01) Articular cartilage disorder, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.01) Articular cartilage disorder, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.01''', NULL,
+ '(718.01) Articular cartilage disorder, shoulder region', '(718.01) Articular cartilage disorder, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.02) Articular cartilage disorder, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.02) Articular cartilage disorder, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.02''', NULL,
+ '(718.02) Articular cartilage disorder, upper arm', '(718.02) Articular cartilage disorder, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.03) Articular cartilage disorder, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.03) Articular cartilage disorder, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.03''', NULL,
+ '(718.03) Articular cartilage disorder, forearm', '(718.03) Articular cartilage disorder, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.04) Articular cartilage disorder, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.04) Articular cartilage disorder, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.04''', NULL,
+ '(718.04) Articular cartilage disorder, hand', '(718.04) Articular cartilage disorder, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.05) Articular cartilage disorder, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.05) Articular cartilage disorder, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.05''', NULL,
+ '(718.05) Articular cartilage disorder, pelvic region and thigh', '(718.05) Articular cartilage disorder, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.07) Articular cartilage disorder, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.07) Articular cartilage disorder, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.07''', NULL,
+ '(718.07) Articular cartilage disorder, ankle and foot', '(718.07) Articular cartilage disorder, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.08) Articular cartilage disorder, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.08) Articular cartilage disorder, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.08''', NULL,
+ '(718.08) Articular cartilage disorder, other specified sites', '(718.08) Articular cartilage disorder, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.09) Articular cartilage disorder, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Articular cartilage disorder (718.0)\(718.09) Articular cartilage disorder, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.09''', NULL,
+ '(718.09) Articular cartilage disorder, multiple sites', '(718.09) Articular cartilage disorder, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.4''', NULL,
+ 'Contracture of joint (718.4)', 'Contracture of joint (718.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.40) Contracture of joint, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.40) Contracture of joint, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.40''', NULL,
+ '(718.40) Contracture of joint, site unspecified', '(718.40) Contracture of joint, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.41) Contracture of joint, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.41) Contracture of joint, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.41''', NULL,
+ '(718.41) Contracture of joint, shoulder region', '(718.41) Contracture of joint, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.42) Contracture of joint, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.42) Contracture of joint, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.42''', NULL,
+ '(718.42) Contracture of joint, upper arm', '(718.42) Contracture of joint, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.43) Contracture of joint, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.43) Contracture of joint, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.43''', NULL,
+ '(718.43) Contracture of joint, forearm', '(718.43) Contracture of joint, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.44) Contracture of joint, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.44) Contracture of joint, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.44''', NULL,
+ '(718.44) Contracture of joint, hand', '(718.44) Contracture of joint, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.45) Contracture of joint, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.45) Contracture of joint, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.45''', NULL,
+ '(718.45) Contracture of joint, pelvic region and thigh', '(718.45) Contracture of joint, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.46) Contracture of joint, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.46) Contracture of joint, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.46''', NULL,
+ '(718.46) Contracture of joint, lower leg', '(718.46) Contracture of joint, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.47) Contracture of joint, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.47) Contracture of joint, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.47''', NULL,
+ '(718.47) Contracture of joint, ankle and foot', '(718.47) Contracture of joint, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.48) Contracture of joint, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.48) Contracture of joint, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.48''', NULL,
+ '(718.48) Contracture of joint, other specified sites', '(718.48) Contracture of joint, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.49) Contracture of joint, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Contracture of joint (718.4)\(718.49) Contracture of joint, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.49''', NULL,
+ '(718.49) Contracture of joint, multiple sites', '(718.49) Contracture of joint, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.7''', NULL,
+ 'Developmental dislocation of joint (718.7)', 'Developmental dislocation of joint (718.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.70) Developmental dislocation of joint, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.70) Developmental dislocation of joint, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.70''', NULL,
+ '(718.70) Developmental dislocation of joint, site unspecified', '(718.70) Developmental dislocation of joint, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.71) Developmental dislocation of joint, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.71) Developmental dislocation of joint, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.71''', NULL,
+ '(718.71) Developmental dislocation of joint, shoulder region', '(718.71) Developmental dislocation of joint, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.72) Developmental dislocation of joint, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.72) Developmental dislocation of joint, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.72''', NULL,
+ '(718.72) Developmental dislocation of joint, upper arm', '(718.72) Developmental dislocation of joint, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.73) Developmental dislocation of joint, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.73) Developmental dislocation of joint, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.73''', NULL,
+ '(718.73) Developmental dislocation of joint, forearm', '(718.73) Developmental dislocation of joint, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.74) Developmental dislocation of joint, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.74) Developmental dislocation of joint, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.74''', NULL,
+ '(718.74) Developmental dislocation of joint, hand', '(718.74) Developmental dislocation of joint, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.75) Developmental dislocation of joint, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.75) Developmental dislocation of joint, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.75''', NULL,
+ '(718.75) Developmental dislocation of joint, pelvic region and thigh', '(718.75) Developmental dislocation of joint, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.76) Developmental dislocation of joint, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.76) Developmental dislocation of joint, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.76''', NULL,
+ '(718.76) Developmental dislocation of joint, lower leg', '(718.76) Developmental dislocation of joint, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.77) Developmental dislocation of joint, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.77) Developmental dislocation of joint, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.77''', NULL,
+ '(718.77) Developmental dislocation of joint, ankle and foot', '(718.77) Developmental dislocation of joint, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.78) Developmental dislocation of joint, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.78) Developmental dislocation of joint, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.78''', NULL,
+ '(718.78) Developmental dislocation of joint, other specified sites', '(718.78) Developmental dislocation of joint, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.79) Developmental dislocation of joint, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Developmental dislocation of joint (718.7)\(718.79) Developmental dislocation of joint, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.79''', NULL,
+ '(718.79) Developmental dislocation of joint, multiple sites', '(718.79) Developmental dislocation of joint, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.1''', NULL,
+ 'Loose body in joint (718.1)', 'Loose body in joint (718.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.10) Loose body in joint, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.10) Loose body in joint, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.10''', NULL,
+ '(718.10) Loose body in joint, site unspecified', '(718.10) Loose body in joint, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.11) Loose body in joint, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.11) Loose body in joint, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.11''', NULL,
+ '(718.11) Loose body in joint, shoulder region', '(718.11) Loose body in joint, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.12) Loose body in joint, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.12) Loose body in joint, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.12''', NULL,
+ '(718.12) Loose body in joint, upper arm', '(718.12) Loose body in joint, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.13) Loose body in joint, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.13) Loose body in joint, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.13''', NULL,
+ '(718.13) Loose body in joint, forearm', '(718.13) Loose body in joint, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.14) Loose body in joint, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.14) Loose body in joint, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.14''', NULL,
+ '(718.14) Loose body in joint, hand', '(718.14) Loose body in joint, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.15) Loose body in joint, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.15) Loose body in joint, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.15''', NULL,
+ '(718.15) Loose body in joint, pelvic region and thigh', '(718.15) Loose body in joint, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.17) Loose body in joint, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.17) Loose body in joint, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.17''', NULL,
+ '(718.17) Loose body in joint, ankle and foot', '(718.17) Loose body in joint, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.18) Loose body in joint, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.18) Loose body in joint, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.18''', NULL,
+ '(718.18) Loose body in joint, other specified sites', '(718.18) Loose body in joint, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.19) Loose body in joint, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Loose body in joint (718.1)\(718.19) Loose body in joint, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.19''', NULL,
+ '(718.19) Loose body in joint, multiple sites', '(718.19) Loose body in joint, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.8''', NULL,
+ 'Other joint derangement, not elsewhere classified (718.8)', 'Other joint derangement, not elsewhere classified (718.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.80) Other joint derangement, not elsewhere classified, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.80) Other joint derangement, not elsewhere classified, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.80''', NULL,
+ '(718.80) Other joint derangement, not elsewhere classified, site unspecified', '(718.80) Other joint derangement, not elsewhere classified, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.81) Other joint derangement, not elsewhere classified, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.81) Other joint derangement, not elsewhere classified, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.81''', NULL,
+ '(718.81) Other joint derangement, not elsewhere classified, shoulder region', '(718.81) Other joint derangement, not elsewhere classified, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.82) Other joint derangement, not elsewhere classified, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.82) Other joint derangement, not elsewhere classified, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.82''', NULL,
+ '(718.82) Other joint derangement, not elsewhere classified, upper arm', '(718.82) Other joint derangement, not elsewhere classified, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.83) Other joint derangement, not elsewhere classified, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.83) Other joint derangement, not elsewhere classified, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.83''', NULL,
+ '(718.83) Other joint derangement, not elsewhere classified, forearm', '(718.83) Other joint derangement, not elsewhere classified, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.84) Other joint derangement, not elsewhere classified, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.84) Other joint derangement, not elsewhere classified, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.84''', NULL,
+ '(718.84) Other joint derangement, not elsewhere classified, hand', '(718.84) Other joint derangement, not elsewhere classified, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.85) Other joint derangement, not elsewhere classified, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.85) Other joint derangement, not elsewhere classified, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.85''', NULL,
+ '(718.85) Other joint derangement, not elsewhere classified, pelvic region and thigh', '(718.85) Other joint derangement, not elsewhere classified, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.86) Other joint derangement, not elsewhere classified, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.86) Other joint derangement, not elsewhere classified, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.86''', NULL,
+ '(718.86) Other joint derangement, not elsewhere classified, lower leg', '(718.86) Other joint derangement, not elsewhere classified, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.87) Other joint derangement, not elsewhere classified, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.87) Other joint derangement, not elsewhere classified, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.87''', NULL,
+ '(718.87) Other joint derangement, not elsewhere classified, ankle and foot', '(718.87) Other joint derangement, not elsewhere classified, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.88) Other joint derangement, not elsewhere classified, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.88) Other joint derangement, not elsewhere classified, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.88''', NULL,
+ '(718.88) Other joint derangement, not elsewhere classified, other specified sites', '(718.88) Other joint derangement, not elsewhere classified, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.89) Other joint derangement, not elsewhere classified, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Other joint derangement, not elsewhere classified (718.8)\(718.89) Other joint derangement, not elsewhere classified, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.89''', NULL,
+ '(718.89) Other joint derangement, not elsewhere classified, multiple sites', '(718.89) Other joint derangement, not elsewhere classified, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.2''', NULL,
+ 'Pathological dislocation (718.2)', 'Pathological dislocation (718.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.20) Pathological dislocation of joint, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.20) Pathological dislocation of joint, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.20''', NULL,
+ '(718.20) Pathological dislocation of joint, site unspecified', '(718.20) Pathological dislocation of joint, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.21) Pathological dislocation of joint, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.21) Pathological dislocation of joint, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.21''', NULL,
+ '(718.21) Pathological dislocation of joint, shoulder region', '(718.21) Pathological dislocation of joint, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.22) Pathological dislocation of joint, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.22) Pathological dislocation of joint, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.22''', NULL,
+ '(718.22) Pathological dislocation of joint, upper arm', '(718.22) Pathological dislocation of joint, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.23) Pathological dislocation of joint, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.23) Pathological dislocation of joint, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.23''', NULL,
+ '(718.23) Pathological dislocation of joint, forearm', '(718.23) Pathological dislocation of joint, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.24) Pathological dislocation of joint, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.24) Pathological dislocation of joint, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.24''', NULL,
+ '(718.24) Pathological dislocation of joint, hand', '(718.24) Pathological dislocation of joint, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.25) Pathological dislocation of joint, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.25) Pathological dislocation of joint, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.25''', NULL,
+ '(718.25) Pathological dislocation of joint, pelvic region and thigh', '(718.25) Pathological dislocation of joint, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.26) Pathological dislocation of joint, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.26) Pathological dislocation of joint, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.26''', NULL,
+ '(718.26) Pathological dislocation of joint, lower leg', '(718.26) Pathological dislocation of joint, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.27) Pathological dislocation of joint, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.27) Pathological dislocation of joint, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.27''', NULL,
+ '(718.27) Pathological dislocation of joint, ankle and foot', '(718.27) Pathological dislocation of joint, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.28) Pathological dislocation of joint, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.28) Pathological dislocation of joint, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.28''', NULL,
+ '(718.28) Pathological dislocation of joint, other specified sites', '(718.28) Pathological dislocation of joint, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.29) Pathological dislocation of joint, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Pathological dislocation (718.2)\(718.29) Pathological dislocation of joint, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.29''', NULL,
+ '(718.29) Pathological dislocation of joint, multiple sites', '(718.29) Pathological dislocation of joint, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.3''', NULL,
+ 'Recurrent dislocation of joint (718.3)', 'Recurrent dislocation of joint (718.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.30) Recurrent dislocation of joint, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.30) Recurrent dislocation of joint, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.30''', NULL,
+ '(718.30) Recurrent dislocation of joint, site unspecified', '(718.30) Recurrent dislocation of joint, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.31) Recurrent dislocation of joint, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.31) Recurrent dislocation of joint, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.31''', NULL,
+ '(718.31) Recurrent dislocation of joint, shoulder region', '(718.31) Recurrent dislocation of joint, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.32) Recurrent dislocation of joint, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.32) Recurrent dislocation of joint, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.32''', NULL,
+ '(718.32) Recurrent dislocation of joint, upper arm', '(718.32) Recurrent dislocation of joint, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.33) Recurrent dislocation of joint, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.33) Recurrent dislocation of joint, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.33''', NULL,
+ '(718.33) Recurrent dislocation of joint, forearm', '(718.33) Recurrent dislocation of joint, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.34) Recurrent dislocation of joint, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.34) Recurrent dislocation of joint, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.34''', NULL,
+ '(718.34) Recurrent dislocation of joint, hand', '(718.34) Recurrent dislocation of joint, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.35) Recurrent dislocation of joint, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.35) Recurrent dislocation of joint, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.35''', NULL,
+ '(718.35) Recurrent dislocation of joint, pelvic region and thigh', '(718.35) Recurrent dislocation of joint, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.36) Recurrent dislocation of joint, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.36) Recurrent dislocation of joint, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.36''', NULL,
+ '(718.36) Recurrent dislocation of joint, lower leg', '(718.36) Recurrent dislocation of joint, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.37) Recurrent dislocation of joint, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.37) Recurrent dislocation of joint, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.37''', NULL,
+ '(718.37) Recurrent dislocation of joint, ankle and foot', '(718.37) Recurrent dislocation of joint, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.38) Recurrent dislocation of joint, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.38) Recurrent dislocation of joint, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.38''', NULL,
+ '(718.38) Recurrent dislocation of joint, other specified sites', '(718.38) Recurrent dislocation of joint, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.39) Recurrent dislocation of joint, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Recurrent dislocation of joint (718.3)\(718.39) Recurrent dislocation of joint, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.39''', NULL,
+ '(718.39) Recurrent dislocation of joint, multiple sites', '(718.39) Recurrent dislocation of joint, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.9''', NULL,
+ 'Unspecified derangement of joint (718.9)', 'Unspecified derangement of joint (718.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.90) Unspecified derangement of joint, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.90) Unspecified derangement of joint, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.90''', NULL,
+ '(718.90) Unspecified derangement of joint, site unspecified', '(718.90) Unspecified derangement of joint, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.91) Unspecified derangement of joint, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.91) Unspecified derangement of joint, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.91''', NULL,
+ '(718.91) Unspecified derangement of joint, shoulder region', '(718.91) Unspecified derangement of joint, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.92) Unspecified derangement of joint, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.92) Unspecified derangement of joint, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.92''', NULL,
+ '(718.92) Unspecified derangement of joint, upper arm', '(718.92) Unspecified derangement of joint, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.93) Unspecified derangement of joint, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.93) Unspecified derangement of joint, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.93''', NULL,
+ '(718.93) Unspecified derangement of joint, forearm', '(718.93) Unspecified derangement of joint, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.94) Unspecified derangement of joint, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.94) Unspecified derangement of joint, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.94''', NULL,
+ '(718.94) Unspecified derangement of joint, hand', '(718.94) Unspecified derangement of joint, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.95) Unspecified derangement of joint, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.95) Unspecified derangement of joint, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.95''', NULL,
+ '(718.95) Unspecified derangement of joint, pelvic region and thigh', '(718.95) Unspecified derangement of joint, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.97) Unspecified derangement of joint, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.97) Unspecified derangement of joint, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.97''', NULL,
+ '(718.97) Unspecified derangement of joint, ankle and foot', '(718.97) Unspecified derangement of joint, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.98) Unspecified derangement of joint, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.98) Unspecified derangement of joint, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.98''', NULL,
+ '(718.98) Unspecified derangement of joint, other specified sites', '(718.98) Unspecified derangement of joint, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.99) Unspecified derangement of joint, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified derangement of joint (718.9)\(718.99) Unspecified derangement of joint, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.99''', NULL,
+ '(718.99) Unspecified derangement of joint, multiple sites', '(718.99) Unspecified derangement of joint, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified intrapelvic protrusion of acetabulum (718.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified intrapelvic protrusion of acetabulum (718.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.6''', NULL,
+ 'Unspecified intrapelvic protrusion of acetabulum (718.6)', 'Unspecified intrapelvic protrusion of acetabulum (718.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified intrapelvic protrusion of acetabulum (718.6)\(718.65) Unspecified intrapelvic protrusion of acetabulum, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified intrapelvic protrusion of acetabulum (718.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Other derangement of joint (718)\Unspecified intrapelvic protrusion of acetabulum (718.6)\(718.65) Unspecified intrapelvic protrusion of acetabulum, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''718.65''', NULL,
+ '(718.65) Unspecified intrapelvic protrusion of acetabulum, pelvic region and thigh', '(718.65) Unspecified intrapelvic protrusion of acetabulum, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''714''', NULL,
+ 'Rheumatoid arthritis and other inflammatory polyarthropathies (714)', 'Rheumatoid arthritis and other inflammatory polyarthropathies (714)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\(714.0) Rheumatoid arthritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\(714.0) Rheumatoid arthritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''714.0''', NULL,
+ '(714.0) Rheumatoid arthritis', '(714.0) Rheumatoid arthritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\(714.1) Felty''s syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\(714.1) Felty''s syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''714.1''', NULL,
+ '(714.1) Felty''s syndrome', '(714.1) Felty''s syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\(714.2) Other rheumatoid arthritis with visceral or systemic involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\(714.2) Other rheumatoid arthritis with visceral or systemic involvement\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''714.2''', NULL,
+ '(714.2) Other rheumatoid arthritis with visceral or systemic involvement', '(714.2) Other rheumatoid arthritis with visceral or systemic involvement', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\(714.4) Chronic postrheumatic arthropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\(714.4) Chronic postrheumatic arthropathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''714.4''', NULL,
+ '(714.4) Chronic postrheumatic arthropathy', '(714.4) Chronic postrheumatic arthropathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\(714.9) Unspecified inflammatory polyarthropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\(714.9) Unspecified inflammatory polyarthropathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''714.9''', NULL,
+ '(714.9) Unspecified inflammatory polyarthropathy', '(714.9) Unspecified inflammatory polyarthropathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Juvenile chronic polyarthritis (714.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Juvenile chronic polyarthritis (714.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''714.3''', NULL,
+ 'Juvenile chronic polyarthritis (714.3)', 'Juvenile chronic polyarthritis (714.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Juvenile chronic polyarthritis (714.3)\(714.30) Polyarticular juvenile rheumatoid arthritis, chronic or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Juvenile chronic polyarthritis (714.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Juvenile chronic polyarthritis (714.3)\(714.30) Polyarticular juvenile rheumatoid arthritis, chronic or unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''714.30''', NULL,
+ '(714.30) Polyarticular juvenile rheumatoid arthritis, chronic or unspecified', '(714.30) Polyarticular juvenile rheumatoid arthritis, chronic or unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Juvenile chronic polyarthritis (714.3)\(714.31) Polyarticular juvenile rheumatoid arthritis, acute\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Juvenile chronic polyarthritis (714.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Juvenile chronic polyarthritis (714.3)\(714.31) Polyarticular juvenile rheumatoid arthritis, acute\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''714.31''', NULL,
+ '(714.31) Polyarticular juvenile rheumatoid arthritis, acute', '(714.31) Polyarticular juvenile rheumatoid arthritis, acute', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Juvenile chronic polyarthritis (714.3)\(714.32) Pauciarticular juvenile rheumatoid arthritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Juvenile chronic polyarthritis (714.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Juvenile chronic polyarthritis (714.3)\(714.32) Pauciarticular juvenile rheumatoid arthritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''714.32''', NULL,
+ '(714.32) Pauciarticular juvenile rheumatoid arthritis', '(714.32) Pauciarticular juvenile rheumatoid arthritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Juvenile chronic polyarthritis (714.3)\(714.33) Monoarticular juvenile rheumatoid arthritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Juvenile chronic polyarthritis (714.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Juvenile chronic polyarthritis (714.3)\(714.33) Monoarticular juvenile rheumatoid arthritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''714.33''', NULL,
+ '(714.33) Monoarticular juvenile rheumatoid arthritis', '(714.33) Monoarticular juvenile rheumatoid arthritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Other specified inflammatory polyarthropathies (714.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Other specified inflammatory polyarthropathies (714.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''714.8''', NULL,
+ 'Other specified inflammatory polyarthropathies (714.8)', 'Other specified inflammatory polyarthropathies (714.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Other specified inflammatory polyarthropathies (714.8)\(714.81) Rheumatoid lung\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Other specified inflammatory polyarthropathies (714.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Other specified inflammatory polyarthropathies (714.8)\(714.81) Rheumatoid lung\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''714.81''', NULL,
+ '(714.81) Rheumatoid lung', '(714.81) Rheumatoid lung', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Other specified inflammatory polyarthropathies (714.8)\(714.89) Other specified inflammatory polyarthropathies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Other specified inflammatory polyarthropathies (714.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Arthropathies and related disorders (710-719.99)\Rheumatoid arthritis and other inflammatory polyarthropathies (714)\Other specified inflammatory polyarthropathies (714.8)\(714.89) Other specified inflammatory polyarthropathies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''714.89''', NULL,
+ '(714.89) Other specified inflammatory polyarthropathies', '(714.89) Other specified inflammatory polyarthropathies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''720'' AND ''724.99''', NULL,
+ 'Dorsopathies (720-724.99)', 'Dorsopathies (720-724.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''720''', NULL,
+ 'Ankylosing spondylitis and other inflammatory spondylopathies (720)', 'Ankylosing spondylitis and other inflammatory spondylopathies (720)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\(720.0) Ankylosing spondylitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\(720.0) Ankylosing spondylitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''720.0''', NULL,
+ '(720.0) Ankylosing spondylitis', '(720.0) Ankylosing spondylitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\(720.1) Spinal enthesopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\(720.1) Spinal enthesopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''720.1''', NULL,
+ '(720.1) Spinal enthesopathy', '(720.1) Spinal enthesopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\(720.2) Sacroiliitis, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\(720.2) Sacroiliitis, not elsewhere classified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''720.2''', NULL,
+ '(720.2) Sacroiliitis, not elsewhere classified', '(720.2) Sacroiliitis, not elsewhere classified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\(720.9) Unspecified inflammatory spondylopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\(720.9) Unspecified inflammatory spondylopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''720.9''', NULL,
+ '(720.9) Unspecified inflammatory spondylopathy', '(720.9) Unspecified inflammatory spondylopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\Other inflammatory spondylopathies (720.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\Other inflammatory spondylopathies (720.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''720.8''', NULL,
+ 'Other inflammatory spondylopathies (720.8)', 'Other inflammatory spondylopathies (720.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\Other inflammatory spondylopathies (720.8)\(720.81) Inflammatory spondylopathies in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\Other inflammatory spondylopathies (720.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\Other inflammatory spondylopathies (720.8)\(720.81) Inflammatory spondylopathies in diseases classified elsewhere\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''720.81''', NULL,
+ '(720.81) Inflammatory spondylopathies in diseases classified elsewhere', '(720.81) Inflammatory spondylopathies in diseases classified elsewhere', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\Other inflammatory spondylopathies (720.8)\(720.89) Other inflammatory spondylopathies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\Other inflammatory spondylopathies (720.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Ankylosing spondylitis and other inflammatory spondylopathies (720)\Other inflammatory spondylopathies (720.8)\(720.89) Other inflammatory spondylopathies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''720.89''', NULL,
+ '(720.89) Other inflammatory spondylopathies', '(720.89) Other inflammatory spondylopathies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722''', NULL,
+ 'Intervertebral disc disorders (722)', 'Intervertebral disc disorders (722)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\(722.0) Displacement of cervical intervertebral disc without myelopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\(722.0) Displacement of cervical intervertebral disc without myelopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.0''', NULL,
+ '(722.0) Displacement of cervical intervertebral disc without myelopathy', '(722.0) Displacement of cervical intervertebral disc without myelopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\(722.2) Displacement of intervertebral disc, site unspecified, without myelopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\(722.2) Displacement of intervertebral disc, site unspecified, without myelopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.2''', NULL,
+ '(722.2) Displacement of intervertebral disc, site unspecified, without myelopathy', '(722.2) Displacement of intervertebral disc, site unspecified, without myelopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\(722.4) Degeneration of cervical intervertebral disc\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\(722.4) Degeneration of cervical intervertebral disc\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.4''', NULL,
+ '(722.4) Degeneration of cervical intervertebral disc', '(722.4) Degeneration of cervical intervertebral disc', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\(722.6) Degeneration of intervertebral disc, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\(722.6) Degeneration of intervertebral disc, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.6''', NULL,
+ '(722.6) Degeneration of intervertebral disc, site unspecified', '(722.6) Degeneration of intervertebral disc, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Degeneration of thoracic or lumbar intervertebral disc (722.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Degeneration of thoracic or lumbar intervertebral disc (722.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.5''', NULL,
+ 'Degeneration of thoracic or lumbar intervertebral disc (722.5)', 'Degeneration of thoracic or lumbar intervertebral disc (722.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Degeneration of thoracic or lumbar intervertebral disc (722.5)\(722.51) Degeneration of thoracic or thoracolumbar intervertebral disc\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Degeneration of thoracic or lumbar intervertebral disc (722.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Degeneration of thoracic or lumbar intervertebral disc (722.5)\(722.51) Degeneration of thoracic or thoracolumbar intervertebral disc\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.51''', NULL,
+ '(722.51) Degeneration of thoracic or thoracolumbar intervertebral disc', '(722.51) Degeneration of thoracic or thoracolumbar intervertebral disc', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Degeneration of thoracic or lumbar intervertebral disc (722.5)\(722.52) Degeneration of lumbar or lumbosacral intervertebral disc\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Degeneration of thoracic or lumbar intervertebral disc (722.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Degeneration of thoracic or lumbar intervertebral disc (722.5)\(722.52) Degeneration of lumbar or lumbosacral intervertebral disc\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.52''', NULL,
+ '(722.52) Degeneration of lumbar or lumbosacral intervertebral disc', '(722.52) Degeneration of lumbar or lumbosacral intervertebral disc', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Displacement of thoracic or lumbar intervertebral disc without myelopathy (722.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Displacement of thoracic or lumbar intervertebral disc without myelopathy (722.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.1''', NULL,
+ 'Displacement of thoracic or lumbar intervertebral disc without myelopathy (722.1)', 'Displacement of thoracic or lumbar intervertebral disc without myelopathy (722.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Displacement of thoracic or lumbar intervertebral disc without myelopathy (722.1)\(722.10) Displacement of lumbar intervertebral disc without myelopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Displacement of thoracic or lumbar intervertebral disc without myelopathy (722.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Displacement of thoracic or lumbar intervertebral disc without myelopathy (722.1)\(722.10) Displacement of lumbar intervertebral disc without myelopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.10''', NULL,
+ '(722.10) Displacement of lumbar intervertebral disc without myelopathy', '(722.10) Displacement of lumbar intervertebral disc without myelopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Displacement of thoracic or lumbar intervertebral disc without myelopathy (722.1)\(722.11) Displacement of thoracic intervertebral disc without myelopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Displacement of thoracic or lumbar intervertebral disc without myelopathy (722.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Displacement of thoracic or lumbar intervertebral disc without myelopathy (722.1)\(722.11) Displacement of thoracic intervertebral disc without myelopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.11''', NULL,
+ '(722.11) Displacement of thoracic intervertebral disc without myelopathy', '(722.11) Displacement of thoracic intervertebral disc without myelopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Intervertebral disc disorder with myelopathy (722.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Intervertebral disc disorder with myelopathy (722.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.7''', NULL,
+ 'Intervertebral disc disorder with myelopathy (722.7)', 'Intervertebral disc disorder with myelopathy (722.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Intervertebral disc disorder with myelopathy (722.7)\(722.70) Intervertebral disc disorder with myelopathy, unspecified region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Intervertebral disc disorder with myelopathy (722.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Intervertebral disc disorder with myelopathy (722.7)\(722.70) Intervertebral disc disorder with myelopathy, unspecified region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.70''', NULL,
+ '(722.70) Intervertebral disc disorder with myelopathy, unspecified region', '(722.70) Intervertebral disc disorder with myelopathy, unspecified region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Intervertebral disc disorder with myelopathy (722.7)\(722.71) Intervertebral disc disorder with myelopathy, cervical region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Intervertebral disc disorder with myelopathy (722.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Intervertebral disc disorder with myelopathy (722.7)\(722.71) Intervertebral disc disorder with myelopathy, cervical region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.71''', NULL,
+ '(722.71) Intervertebral disc disorder with myelopathy, cervical region', '(722.71) Intervertebral disc disorder with myelopathy, cervical region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Intervertebral disc disorder with myelopathy (722.7)\(722.72) Intervertebral disc disorder with myelopathy, thoracic region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Intervertebral disc disorder with myelopathy (722.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Intervertebral disc disorder with myelopathy (722.7)\(722.72) Intervertebral disc disorder with myelopathy, thoracic region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.72''', NULL,
+ '(722.72) Intervertebral disc disorder with myelopathy, thoracic region', '(722.72) Intervertebral disc disorder with myelopathy, thoracic region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Intervertebral disc disorder with myelopathy (722.7)\(722.73) Intervertebral disc disorder with myelopathy, lumbar region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Intervertebral disc disorder with myelopathy (722.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Intervertebral disc disorder with myelopathy (722.7)\(722.73) Intervertebral disc disorder with myelopathy, lumbar region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.73''', NULL,
+ '(722.73) Intervertebral disc disorder with myelopathy, lumbar region', '(722.73) Intervertebral disc disorder with myelopathy, lumbar region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Other and unspecified disc disorder (722.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Other and unspecified disc disorder (722.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.9''', NULL,
+ 'Other and unspecified disc disorder (722.9)', 'Other and unspecified disc disorder (722.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Other and unspecified disc disorder (722.9)\(722.90) Other and unspecified disc disorder, unspecified region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Other and unspecified disc disorder (722.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Other and unspecified disc disorder (722.9)\(722.90) Other and unspecified disc disorder, unspecified region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.90''', NULL,
+ '(722.90) Other and unspecified disc disorder, unspecified region', '(722.90) Other and unspecified disc disorder, unspecified region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Other and unspecified disc disorder (722.9)\(722.91) Other and unspecified disc disorder, cervical region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Other and unspecified disc disorder (722.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Other and unspecified disc disorder (722.9)\(722.91) Other and unspecified disc disorder, cervical region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.91''', NULL,
+ '(722.91) Other and unspecified disc disorder, cervical region', '(722.91) Other and unspecified disc disorder, cervical region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Other and unspecified disc disorder (722.9)\(722.92) Other and unspecified disc disorder, thoracic region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Other and unspecified disc disorder (722.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Other and unspecified disc disorder (722.9)\(722.92) Other and unspecified disc disorder, thoracic region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.92''', NULL,
+ '(722.92) Other and unspecified disc disorder, thoracic region', '(722.92) Other and unspecified disc disorder, thoracic region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Other and unspecified disc disorder (722.9)\(722.93) Other and unspecified disc disorder, lumbar region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Other and unspecified disc disorder (722.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Other and unspecified disc disorder (722.9)\(722.93) Other and unspecified disc disorder, lumbar region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.93''', NULL,
+ '(722.93) Other and unspecified disc disorder, lumbar region', '(722.93) Other and unspecified disc disorder, lumbar region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Postlaminectomy syndrome (722.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Postlaminectomy syndrome (722.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.8''', NULL,
+ 'Postlaminectomy syndrome (722.8)', 'Postlaminectomy syndrome (722.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Postlaminectomy syndrome (722.8)\(722.80) Postlaminectomy syndrome, unspecified region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Postlaminectomy syndrome (722.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Postlaminectomy syndrome (722.8)\(722.80) Postlaminectomy syndrome, unspecified region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.80''', NULL,
+ '(722.80) Postlaminectomy syndrome, unspecified region', '(722.80) Postlaminectomy syndrome, unspecified region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Postlaminectomy syndrome (722.8)\(722.81) Postlaminectomy syndrome, cervical region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Postlaminectomy syndrome (722.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Postlaminectomy syndrome (722.8)\(722.81) Postlaminectomy syndrome, cervical region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.81''', NULL,
+ '(722.81) Postlaminectomy syndrome, cervical region', '(722.81) Postlaminectomy syndrome, cervical region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Postlaminectomy syndrome (722.8)\(722.82) Postlaminectomy syndrome, thoracic region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Postlaminectomy syndrome (722.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Postlaminectomy syndrome (722.8)\(722.82) Postlaminectomy syndrome, thoracic region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.82''', NULL,
+ '(722.82) Postlaminectomy syndrome, thoracic region', '(722.82) Postlaminectomy syndrome, thoracic region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Postlaminectomy syndrome (722.8)\(722.83) Postlaminectomy syndrome, lumbar region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Postlaminectomy syndrome (722.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Postlaminectomy syndrome (722.8)\(722.83) Postlaminectomy syndrome, lumbar region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.83''', NULL,
+ '(722.83) Postlaminectomy syndrome, lumbar region', '(722.83) Postlaminectomy syndrome, lumbar region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Schmorl''s nodes (722.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Schmorl''s nodes (722.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.3''', NULL,
+ 'Schmorl''s nodes (722.3)', 'Schmorl''s nodes (722.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Schmorl''s nodes (722.3)\(722.30) Schmorl''s nodes, unspecified region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Schmorl''s nodes (722.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Schmorl''s nodes (722.3)\(722.30) Schmorl''s nodes, unspecified region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.30''', NULL,
+ '(722.30) Schmorl''s nodes, unspecified region', '(722.30) Schmorl''s nodes, unspecified region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Schmorl''s nodes (722.3)\(722.31) Schmorl''s nodes, thoracic region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Schmorl''s nodes (722.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Schmorl''s nodes (722.3)\(722.31) Schmorl''s nodes, thoracic region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.31''', NULL,
+ '(722.31) Schmorl''s nodes, thoracic region', '(722.31) Schmorl''s nodes, thoracic region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Schmorl''s nodes (722.3)\(722.32) Schmorl''s nodes, lumbar region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Schmorl''s nodes (722.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Schmorl''s nodes (722.3)\(722.32) Schmorl''s nodes, lumbar region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.32''', NULL,
+ '(722.32) Schmorl''s nodes, lumbar region', '(722.32) Schmorl''s nodes, lumbar region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Schmorl''s nodes (722.3)\(722.39) Schmorl''s nodes, other region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Schmorl''s nodes (722.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Intervertebral disc disorders (722)\Schmorl''s nodes (722.3)\(722.39) Schmorl''s nodes, other region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''722.39''', NULL,
+ '(722.39) Schmorl''s nodes, other region', '(722.39) Schmorl''s nodes, other region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724''', NULL,
+ 'Other and unspecified disorders of back (724)', 'Other and unspecified disorders of back (724)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.1) Pain in thoracic spine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.1) Pain in thoracic spine\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.1''', NULL,
+ '(724.1) Pain in thoracic spine', '(724.1) Pain in thoracic spine', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.2) Lumbago\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.2) Lumbago\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.2''', NULL,
+ '(724.2) Lumbago', '(724.2) Lumbago', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.3) Sciatica\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.3) Sciatica\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.3''', NULL,
+ '(724.3) Sciatica', '(724.3) Sciatica', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.4) Thoracic or lumbosacral neuritis or radiculitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.4) Thoracic or lumbosacral neuritis or radiculitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.4''', NULL,
+ '(724.4) Thoracic or lumbosacral neuritis or radiculitis, unspecified', '(724.4) Thoracic or lumbosacral neuritis or radiculitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.5) Backache, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.5) Backache, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.5''', NULL,
+ '(724.5) Backache, unspecified', '(724.5) Backache, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.6) Disorders of sacrum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.6) Disorders of sacrum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.6''', NULL,
+ '(724.6) Disorders of sacrum', '(724.6) Disorders of sacrum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.8) Other symptoms referable to back\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.8) Other symptoms referable to back\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.8''', NULL,
+ '(724.8) Other symptoms referable to back', '(724.8) Other symptoms referable to back', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.9) Other unspecified back disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\(724.9) Other unspecified back disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.9''', NULL,
+ '(724.9) Other unspecified back disorders', '(724.9) Other unspecified back disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Disorders of coccyx (724.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Disorders of coccyx (724.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.7''', NULL,
+ 'Disorders of coccyx (724.7)', 'Disorders of coccyx (724.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Disorders of coccyx (724.7)\(724.70) Unspecified disorder of coccyx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Disorders of coccyx (724.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Disorders of coccyx (724.7)\(724.70) Unspecified disorder of coccyx\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.70''', NULL,
+ '(724.70) Unspecified disorder of coccyx', '(724.70) Unspecified disorder of coccyx', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Disorders of coccyx (724.7)\(724.71) Hypermobility of coccyx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Disorders of coccyx (724.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Disorders of coccyx (724.7)\(724.71) Hypermobility of coccyx\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.71''', NULL,
+ '(724.71) Hypermobility of coccyx', '(724.71) Hypermobility of coccyx', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Disorders of coccyx (724.7)\(724.79) Other disorders of coccyx\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Disorders of coccyx (724.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Disorders of coccyx (724.7)\(724.79) Other disorders of coccyx\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.79''', NULL,
+ '(724.79) Other disorders of coccyx', '(724.79) Other disorders of coccyx', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.0''', NULL,
+ 'Spinal stenosis, other than cervical (724.0)', 'Spinal stenosis, other than cervical (724.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\(724.00) Spinal stenosis, unspecified region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\(724.00) Spinal stenosis, unspecified region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.00''', NULL,
+ '(724.00) Spinal stenosis, unspecified region', '(724.00) Spinal stenosis, unspecified region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\(724.01) Spinal stenosis, thoracic region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\(724.01) Spinal stenosis, thoracic region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.01''', NULL,
+ '(724.01) Spinal stenosis, thoracic region', '(724.01) Spinal stenosis, thoracic region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\(724.02) Spinal stenosis, lumbar region, without neurogenic claudication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\(724.02) Spinal stenosis, lumbar region, without neurogenic claudication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.02''', NULL,
+ '(724.02) Spinal stenosis, lumbar region, without neurogenic claudication', '(724.02) Spinal stenosis, lumbar region, without neurogenic claudication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\(724.03) Spinal stenosis, lumbar region, with neurogenic claudication\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\(724.03) Spinal stenosis, lumbar region, with neurogenic claudication\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.03''', NULL,
+ '(724.03) Spinal stenosis, lumbar region, with neurogenic claudication', '(724.03) Spinal stenosis, lumbar region, with neurogenic claudication', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\(724.09) Spinal stenosis, other region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other and unspecified disorders of back (724)\Spinal stenosis, other than cervical (724.0)\(724.09) Spinal stenosis, other region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''724.09''', NULL,
+ '(724.09) Spinal stenosis, other region', '(724.09) Spinal stenosis, other region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''723''', NULL,
+ 'Other disorders of cervical region (723)', 'Other disorders of cervical region (723)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.0) Spinal stenosis in cervical region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.0) Spinal stenosis in cervical region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''723.0''', NULL,
+ '(723.0) Spinal stenosis in cervical region', '(723.0) Spinal stenosis in cervical region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.1) Cervicalgia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.1) Cervicalgia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''723.1''', NULL,
+ '(723.1) Cervicalgia', '(723.1) Cervicalgia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.2) Cervicocranial syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.2) Cervicocranial syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''723.2''', NULL,
+ '(723.2) Cervicocranial syndrome', '(723.2) Cervicocranial syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.3) Cervicobrachial syndrome (diffuse)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.3) Cervicobrachial syndrome (diffuse)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''723.3) Cervicobrachial syndrome (diffuse''', NULL,
+ '(723.3) Cervicobrachial syndrome (diffuse)', '(723.3) Cervicobrachial syndrome (diffuse)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.4) Brachial neuritis or radiculitis NOS\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.4) Brachial neuritis or radiculitis NOS\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''723.4''', NULL,
+ '(723.4) Brachial neuritis or radiculitis NOS', '(723.4) Brachial neuritis or radiculitis NOS', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.5) Torticollis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.5) Torticollis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''723.5''', NULL,
+ '(723.5) Torticollis, unspecified', '(723.5) Torticollis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.6) Panniculitis specified as affecting neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.6) Panniculitis specified as affecting neck\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''723.6''', NULL,
+ '(723.6) Panniculitis specified as affecting neck', '(723.6) Panniculitis specified as affecting neck', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.7) Ossification of posterior longitudinal ligament in cervical region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.7) Ossification of posterior longitudinal ligament in cervical region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''723.7''', NULL,
+ '(723.7) Ossification of posterior longitudinal ligament in cervical region', '(723.7) Ossification of posterior longitudinal ligament in cervical region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.8) Other syndromes affecting cervical region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.8) Other syndromes affecting cervical region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''723.8''', NULL,
+ '(723.8) Other syndromes affecting cervical region', '(723.8) Other syndromes affecting cervical region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.9) Unspecified musculoskeletal disorders and symptoms referable to neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Other disorders of cervical region (723)\(723.9) Unspecified musculoskeletal disorders and symptoms referable to neck\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''723.9''', NULL,
+ '(723.9) Unspecified musculoskeletal disorders and symptoms referable to neck', '(723.9) Unspecified musculoskeletal disorders and symptoms referable to neck', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''721''', NULL,
+ 'Spondylosis and allied disorders (721)', 'Spondylosis and allied disorders (721)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.0) Cervical spondylosis without myelopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.0) Cervical spondylosis without myelopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''721.0''', NULL,
+ '(721.0) Cervical spondylosis without myelopathy', '(721.0) Cervical spondylosis without myelopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.1) Cervical spondylosis with myelopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.1) Cervical spondylosis with myelopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''721.1''', NULL,
+ '(721.1) Cervical spondylosis with myelopathy', '(721.1) Cervical spondylosis with myelopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.2) Thoracic spondylosis without myelopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.2) Thoracic spondylosis without myelopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''721.2''', NULL,
+ '(721.2) Thoracic spondylosis without myelopathy', '(721.2) Thoracic spondylosis without myelopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.3) Lumbosacral spondylosis without myelopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.3) Lumbosacral spondylosis without myelopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''721.3''', NULL,
+ '(721.3) Lumbosacral spondylosis without myelopathy', '(721.3) Lumbosacral spondylosis without myelopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.5) Kissing spine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.5) Kissing spine\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''721.5''', NULL,
+ '(721.5) Kissing spine', '(721.5) Kissing spine', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.6) Ankylosing vertebral hyperostosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.6) Ankylosing vertebral hyperostosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''721.6''', NULL,
+ '(721.6) Ankylosing vertebral hyperostosis', '(721.6) Ankylosing vertebral hyperostosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.7) Traumatic spondylopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.7) Traumatic spondylopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''721.7''', NULL,
+ '(721.7) Traumatic spondylopathy', '(721.7) Traumatic spondylopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.8) Other allied disorders of spine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\(721.8) Other allied disorders of spine\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''721.8''', NULL,
+ '(721.8) Other allied disorders of spine', '(721.8) Other allied disorders of spine', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Spondylosis of unspecified site (721.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Spondylosis of unspecified site (721.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''721.9''', NULL,
+ 'Spondylosis of unspecified site (721.9)', 'Spondylosis of unspecified site (721.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Spondylosis of unspecified site (721.9)\(721.90) Spondylosis of unspecified site, without mention of myelopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Spondylosis of unspecified site (721.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Spondylosis of unspecified site (721.9)\(721.90) Spondylosis of unspecified site, without mention of myelopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''721.90''', NULL,
+ '(721.90) Spondylosis of unspecified site, without mention of myelopathy', '(721.90) Spondylosis of unspecified site, without mention of myelopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Spondylosis of unspecified site (721.9)\(721.91) Spondylosis of unspecified site, with myelopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Spondylosis of unspecified site (721.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Spondylosis of unspecified site (721.9)\(721.91) Spondylosis of unspecified site, with myelopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''721.91''', NULL,
+ '(721.91) Spondylosis of unspecified site, with myelopathy', '(721.91) Spondylosis of unspecified site, with myelopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Thoracic or lumbar spondylosis with myelopathy (721.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Thoracic or lumbar spondylosis with myelopathy (721.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''721.4''', NULL,
+ 'Thoracic or lumbar spondylosis with myelopathy (721.4)', 'Thoracic or lumbar spondylosis with myelopathy (721.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Thoracic or lumbar spondylosis with myelopathy (721.4)\(721.41) Spondylosis with myelopathy, thoracic region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Thoracic or lumbar spondylosis with myelopathy (721.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Thoracic or lumbar spondylosis with myelopathy (721.4)\(721.41) Spondylosis with myelopathy, thoracic region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''721.41''', NULL,
+ '(721.41) Spondylosis with myelopathy, thoracic region', '(721.41) Spondylosis with myelopathy, thoracic region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Thoracic or lumbar spondylosis with myelopathy (721.4)\(721.42) Spondylosis with myelopathy, lumbar region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Thoracic or lumbar spondylosis with myelopathy (721.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Dorsopathies (720-724.99)\Spondylosis and allied disorders (721)\Thoracic or lumbar spondylosis with myelopathy (721.4)\(721.42) Spondylosis with myelopathy, lumbar region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''721.42''', NULL,
+ '(721.42) Spondylosis with myelopathy, lumbar region', '(721.42) Spondylosis with myelopathy, lumbar region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''730'' AND ''739.99''', NULL,
+ 'Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)', 'Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\(734) Flat foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\(734) Flat foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''734''', NULL,
+ '(734) Flat foot', '(734) Flat foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''735''', NULL,
+ 'Acquired deformities of toe (735)', 'Acquired deformities of toe (735)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.0) Hallux valgus (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.0) Hallux valgus (acquired)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''735.0) Hallux valgus (acquired''', NULL,
+ '(735.0) Hallux valgus (acquired)', '(735.0) Hallux valgus (acquired)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.1) Hallux varus (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.1) Hallux varus (acquired)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''735.1) Hallux varus (acquired''', NULL,
+ '(735.1) Hallux varus (acquired)', '(735.1) Hallux varus (acquired)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.2) Hallux rigidus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.2) Hallux rigidus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''735.2''', NULL,
+ '(735.2) Hallux rigidus', '(735.2) Hallux rigidus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.3) Hallux malleus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.3) Hallux malleus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''735.3''', NULL,
+ '(735.3) Hallux malleus', '(735.3) Hallux malleus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.4) Other hammer toe (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.4) Other hammer toe (acquired)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''735.4) Other hammer toe (acquired''', NULL,
+ '(735.4) Other hammer toe (acquired)', '(735.4) Other hammer toe (acquired)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.5) Claw toe (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.5) Claw toe (acquired)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''735.5) Claw toe (acquired''', NULL,
+ '(735.5) Claw toe (acquired)', '(735.5) Claw toe (acquired)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.8) Other acquired deformities of toe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.8) Other acquired deformities of toe\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''735.8''', NULL,
+ '(735.8) Other acquired deformities of toe', '(735.8) Other acquired deformities of toe', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.9) Unspecified acquired deformity of toe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Acquired deformities of toe (735)\(735.9) Unspecified acquired deformity of toe\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''735.9''', NULL,
+ '(735.9) Unspecified acquired deformity of toe', '(735.9) Unspecified acquired deformity of toe', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737''', NULL,
+ 'Curvature of spine (737)', 'Curvature of spine (737)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\(737.0) Adolescent postural kyphosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\(737.0) Adolescent postural kyphosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.0''', NULL,
+ '(737.0) Adolescent postural kyphosis', '(737.0) Adolescent postural kyphosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\(737.8) Other curvatures of spine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\(737.8) Other curvatures of spine\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.8''', NULL,
+ '(737.8) Other curvatures of spine', '(737.8) Other curvatures of spine', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\(737.9) Unspecified curvature of spine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\(737.9) Unspecified curvature of spine\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.9''', NULL,
+ '(737.9) Unspecified curvature of spine', '(737.9) Unspecified curvature of spine', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Curvature of spine associated with other conditions (737.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Curvature of spine associated with other conditions (737.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.4''', NULL,
+ 'Curvature of spine associated with other conditions (737.4)', 'Curvature of spine associated with other conditions (737.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Curvature of spine associated with other conditions (737.4)\(737.40) Curvature of spine, unspecified, associated with other conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Curvature of spine associated with other conditions (737.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Curvature of spine associated with other conditions (737.4)\(737.40) Curvature of spine, unspecified, associated with other conditions\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.40''', NULL,
+ '(737.40) Curvature of spine, unspecified, associated with other conditions', '(737.40) Curvature of spine, unspecified, associated with other conditions', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Curvature of spine associated with other conditions (737.4)\(737.41) Kyphosis associated with other conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Curvature of spine associated with other conditions (737.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Curvature of spine associated with other conditions (737.4)\(737.41) Kyphosis associated with other conditions\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.41''', NULL,
+ '(737.41) Kyphosis associated with other conditions', '(737.41) Kyphosis associated with other conditions', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Curvature of spine associated with other conditions (737.4)\(737.42) Lordosis associated with other conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Curvature of spine associated with other conditions (737.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Curvature of spine associated with other conditions (737.4)\(737.42) Lordosis associated with other conditions\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.42''', NULL,
+ '(737.42) Lordosis associated with other conditions', '(737.42) Lordosis associated with other conditions', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Curvature of spine associated with other conditions (737.4)\(737.43) Scoliosis associated with other conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Curvature of spine associated with other conditions (737.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Curvature of spine associated with other conditions (737.4)\(737.43) Scoliosis associated with other conditions\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.43''', NULL,
+ '(737.43) Scoliosis associated with other conditions', '(737.43) Scoliosis associated with other conditions', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.3''', NULL,
+ 'Kyphoscoliosis and scoliosis (737.3)', 'Kyphoscoliosis and scoliosis (737.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\(737.30) Scoliosis [and kyphoscoliosis], idiopathic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\(737.30) Scoliosis [and kyphoscoliosis], idiopathic\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.30''', NULL,
+ '(737.30) Scoliosis [and kyphoscoliosis], idiopathic', '(737.30) Scoliosis [and kyphoscoliosis], idiopathic', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\(737.31) Resolving infantile idiopathic scoliosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\(737.31) Resolving infantile idiopathic scoliosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.31''', NULL,
+ '(737.31) Resolving infantile idiopathic scoliosis', '(737.31) Resolving infantile idiopathic scoliosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\(737.32) Progressive infantile idiopathic scoliosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\(737.32) Progressive infantile idiopathic scoliosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.32''', NULL,
+ '(737.32) Progressive infantile idiopathic scoliosis', '(737.32) Progressive infantile idiopathic scoliosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\(737.33) Scoliosis due to radiation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\(737.33) Scoliosis due to radiation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.33''', NULL,
+ '(737.33) Scoliosis due to radiation', '(737.33) Scoliosis due to radiation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\(737.34) Thoracogenic scoliosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\(737.34) Thoracogenic scoliosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.34''', NULL,
+ '(737.34) Thoracogenic scoliosis', '(737.34) Thoracogenic scoliosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\(737.39) Other kyphoscoliosis and scoliosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphoscoliosis and scoliosis (737.3)\(737.39) Other kyphoscoliosis and scoliosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.39''', NULL,
+ '(737.39) Other kyphoscoliosis and scoliosis', '(737.39) Other kyphoscoliosis and scoliosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphosis (acquired) (737.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphosis (acquired) (737.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''acquired) (737.1''', NULL,
+ 'Kyphosis (acquired) (737.1)', 'Kyphosis (acquired) (737.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphosis (acquired) (737.1)\(737.10) Kyphosis (acquired) (postural)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphosis (acquired) (737.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphosis (acquired) (737.1)\(737.10) Kyphosis (acquired) (postural)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.10) Kyphosis (acquired) (postural''', NULL,
+ '(737.10) Kyphosis (acquired) (postural)', '(737.10) Kyphosis (acquired) (postural)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphosis (acquired) (737.1)\(737.11) Kyphosis due to radiation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphosis (acquired) (737.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphosis (acquired) (737.1)\(737.11) Kyphosis due to radiation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.11''', NULL,
+ '(737.11) Kyphosis due to radiation', '(737.11) Kyphosis due to radiation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphosis (acquired) (737.1)\(737.12) Kyphosis, postlaminectomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphosis (acquired) (737.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphosis (acquired) (737.1)\(737.12) Kyphosis, postlaminectomy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.12''', NULL,
+ '(737.12) Kyphosis, postlaminectomy', '(737.12) Kyphosis, postlaminectomy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphosis (acquired) (737.1)\(737.19) Other kyphosis (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphosis (acquired) (737.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Kyphosis (acquired) (737.1)\(737.19) Other kyphosis (acquired)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.19) Other kyphosis (acquired''', NULL,
+ '(737.19) Other kyphosis (acquired)', '(737.19) Other kyphosis (acquired)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Lordosis (acquired) (737.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Lordosis (acquired) (737.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''acquired) (737.2''', NULL,
+ 'Lordosis (acquired) (737.2)', 'Lordosis (acquired) (737.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Lordosis (acquired) (737.2)\(737.20) Lordosis (acquired) (postural)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Lordosis (acquired) (737.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Lordosis (acquired) (737.2)\(737.20) Lordosis (acquired) (postural)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.20) Lordosis (acquired) (postural''', NULL,
+ '(737.20) Lordosis (acquired) (postural)', '(737.20) Lordosis (acquired) (postural)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Lordosis (acquired) (737.2)\(737.21) Lordosis, postlaminectomy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Lordosis (acquired) (737.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Lordosis (acquired) (737.2)\(737.21) Lordosis, postlaminectomy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.21''', NULL,
+ '(737.21) Lordosis, postlaminectomy', '(737.21) Lordosis, postlaminectomy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Lordosis (acquired) (737.2)\(737.22) Other postsurgical lordosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Lordosis (acquired) (737.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Lordosis (acquired) (737.2)\(737.22) Other postsurgical lordosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.22''', NULL,
+ '(737.22) Other postsurgical lordosis', '(737.22) Other postsurgical lordosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Lordosis (acquired) (737.2)\(737.29) Other lordosis (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Lordosis (acquired) (737.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Curvature of spine (737)\Lordosis (acquired) (737.2)\(737.29) Other lordosis (acquired)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''737.29) Other lordosis (acquired''', NULL,
+ '(737.29) Other lordosis (acquired)', '(737.29) Other lordosis (acquired)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''739''', NULL,
+ 'Nonallopathic lesions, not elsewhere classified (739)', 'Nonallopathic lesions, not elsewhere classified (739)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.0) Nonallopathic lesions, head region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.0) Nonallopathic lesions, head region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''739.0''', NULL,
+ '(739.0) Nonallopathic lesions, head region', '(739.0) Nonallopathic lesions, head region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.1) Nonallopathic lesions, cervical region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.1) Nonallopathic lesions, cervical region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''739.1''', NULL,
+ '(739.1) Nonallopathic lesions, cervical region', '(739.1) Nonallopathic lesions, cervical region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.2) Nonallopathic lesions, thoracic region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.2) Nonallopathic lesions, thoracic region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''739.2''', NULL,
+ '(739.2) Nonallopathic lesions, thoracic region', '(739.2) Nonallopathic lesions, thoracic region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.3) Nonallopathic lesions, lumbar region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.3) Nonallopathic lesions, lumbar region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''739.3''', NULL,
+ '(739.3) Nonallopathic lesions, lumbar region', '(739.3) Nonallopathic lesions, lumbar region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.4) Nonallopathic lesions, sacral region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.4) Nonallopathic lesions, sacral region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''739.4''', NULL,
+ '(739.4) Nonallopathic lesions, sacral region', '(739.4) Nonallopathic lesions, sacral region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.5) Nonallopathic lesions, pelvic region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.5) Nonallopathic lesions, pelvic region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''739.5''', NULL,
+ '(739.5) Nonallopathic lesions, pelvic region', '(739.5) Nonallopathic lesions, pelvic region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.6) Nonallopathic lesions, lower extremities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.6) Nonallopathic lesions, lower extremities\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''739.6''', NULL,
+ '(739.6) Nonallopathic lesions, lower extremities', '(739.6) Nonallopathic lesions, lower extremities', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.7) Nonallopathic lesions, upper extremities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.7) Nonallopathic lesions, upper extremities\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''739.7''', NULL,
+ '(739.7) Nonallopathic lesions, upper extremities', '(739.7) Nonallopathic lesions, upper extremities', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.8) Nonallopathic lesions, rib cage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.8) Nonallopathic lesions, rib cage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''739.8''', NULL,
+ '(739.8) Nonallopathic lesions, rib cage', '(739.8) Nonallopathic lesions, rib cage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.9) Nonallopathic lesions, abdomen and other sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Nonallopathic lesions, not elsewhere classified (739)\(739.9) Nonallopathic lesions, abdomen and other sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''739.9''', NULL,
+ '(739.9) Nonallopathic lesions, abdomen and other sites', '(739.9) Nonallopathic lesions, abdomen and other sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''731''', NULL,
+ 'Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)', 'Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\(731.0) Osteitis deformans without mention of bone tumor\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\(731.0) Osteitis deformans without mention of bone tumor\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''731.0''', NULL,
+ '(731.0) Osteitis deformans without mention of bone tumor', '(731.0) Osteitis deformans without mention of bone tumor', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\(731.1) Osteitis deformans in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\(731.1) Osteitis deformans in diseases classified elsewhere\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''731.1''', NULL,
+ '(731.1) Osteitis deformans in diseases classified elsewhere', '(731.1) Osteitis deformans in diseases classified elsewhere', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\(731.2) Hypertrophic pulmonary osteoarthropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\(731.2) Hypertrophic pulmonary osteoarthropathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''731.2''', NULL,
+ '(731.2) Hypertrophic pulmonary osteoarthropathy', '(731.2) Hypertrophic pulmonary osteoarthropathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\(731.3) Major osseous defects\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\(731.3) Major osseous defects\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''731.3''', NULL,
+ '(731.3) Major osseous defects', '(731.3) Major osseous defects', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\(731.8) Other bone involvement in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteitis deformans and osteopathies associated with other disorders classified elsewhere (731)\(731.8) Other bone involvement in diseases classified elsewhere\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''731.8''', NULL,
+ '(731.8) Other bone involvement in diseases classified elsewhere', '(731.8) Other bone involvement in diseases classified elsewhere', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''732''', NULL,
+ 'Osteochondropathies (732)', 'Osteochondropathies (732)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.0) Juvenile osteochondrosis of spine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.0) Juvenile osteochondrosis of spine\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''732.0''', NULL,
+ '(732.0) Juvenile osteochondrosis of spine', '(732.0) Juvenile osteochondrosis of spine', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.1) Juvenile osteochondrosis of hip and pelvis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.1) Juvenile osteochondrosis of hip and pelvis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''732.1''', NULL,
+ '(732.1) Juvenile osteochondrosis of hip and pelvis', '(732.1) Juvenile osteochondrosis of hip and pelvis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.2) Nontraumatic slipped upper femoral epiphysis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.2) Nontraumatic slipped upper femoral epiphysis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''732.2''', NULL,
+ '(732.2) Nontraumatic slipped upper femoral epiphysis', '(732.2) Nontraumatic slipped upper femoral epiphysis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.3) Juvenile osteochondrosis of upper extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.3) Juvenile osteochondrosis of upper extremity\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''732.3''', NULL,
+ '(732.3) Juvenile osteochondrosis of upper extremity', '(732.3) Juvenile osteochondrosis of upper extremity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.4) Juvenile osteochondrosis of lower extremity, excluding foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.4) Juvenile osteochondrosis of lower extremity, excluding foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''732.4''', NULL,
+ '(732.4) Juvenile osteochondrosis of lower extremity, excluding foot', '(732.4) Juvenile osteochondrosis of lower extremity, excluding foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.5) Juvenile osteochondrosis of foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.5) Juvenile osteochondrosis of foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''732.5''', NULL,
+ '(732.5) Juvenile osteochondrosis of foot', '(732.5) Juvenile osteochondrosis of foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.6) Other juvenile osteochondrosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.6) Other juvenile osteochondrosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''732.6''', NULL,
+ '(732.6) Other juvenile osteochondrosis', '(732.6) Other juvenile osteochondrosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.7) Osteochondritis dissecans\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.7) Osteochondritis dissecans\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''732.7''', NULL,
+ '(732.7) Osteochondritis dissecans', '(732.7) Osteochondritis dissecans', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.8) Other specified forms of osteochondropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.8) Other specified forms of osteochondropathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''732.8''', NULL,
+ '(732.8) Other specified forms of osteochondropathy', '(732.8) Other specified forms of osteochondropathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.9) Unspecified osteochondropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteochondropathies (732)\(732.9) Unspecified osteochondropathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''732.9''', NULL,
+ '(732.9) Unspecified osteochondropathy', '(732.9) Unspecified osteochondropathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730''', NULL,
+ 'Osteomyelitis, periostitis, and other infections involving bone (730)', 'Osteomyelitis, periostitis, and other infections involving bone (730)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.0''', NULL,
+ 'Acute osteomyelitis (730.0)', 'Acute osteomyelitis (730.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.00) Acute osteomyelitis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.00) Acute osteomyelitis, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.00''', NULL,
+ '(730.00) Acute osteomyelitis, site unspecified', '(730.00) Acute osteomyelitis, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.01) Acute osteomyelitis, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.01) Acute osteomyelitis, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.01''', NULL,
+ '(730.01) Acute osteomyelitis, shoulder region', '(730.01) Acute osteomyelitis, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.02) Acute osteomyelitis, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.02) Acute osteomyelitis, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.02''', NULL,
+ '(730.02) Acute osteomyelitis, upper arm', '(730.02) Acute osteomyelitis, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.03) Acute osteomyelitis, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.03) Acute osteomyelitis, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.03''', NULL,
+ '(730.03) Acute osteomyelitis, forearm', '(730.03) Acute osteomyelitis, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.04) Acute osteomyelitis, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.04) Acute osteomyelitis, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.04''', NULL,
+ '(730.04) Acute osteomyelitis, hand', '(730.04) Acute osteomyelitis, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.05) Acute osteomyelitis, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.05) Acute osteomyelitis, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.05''', NULL,
+ '(730.05) Acute osteomyelitis, pelvic region and thigh', '(730.05) Acute osteomyelitis, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.06) Acute osteomyelitis, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.06) Acute osteomyelitis, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.06''', NULL,
+ '(730.06) Acute osteomyelitis, lower leg', '(730.06) Acute osteomyelitis, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.07) Acute osteomyelitis, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.07) Acute osteomyelitis, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.07''', NULL,
+ '(730.07) Acute osteomyelitis, ankle and foot', '(730.07) Acute osteomyelitis, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.08) Acute osteomyelitis, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.08) Acute osteomyelitis, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.08''', NULL,
+ '(730.08) Acute osteomyelitis, other specified sites', '(730.08) Acute osteomyelitis, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.09) Acute osteomyelitis, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Acute osteomyelitis (730.0)\(730.09) Acute osteomyelitis, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.09''', NULL,
+ '(730.09) Acute osteomyelitis, multiple sites', '(730.09) Acute osteomyelitis, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.1''', NULL,
+ 'Chronic osteomyelitis (730.1)', 'Chronic osteomyelitis (730.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.10) Chronic osteomyelitis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.10) Chronic osteomyelitis, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.10''', NULL,
+ '(730.10) Chronic osteomyelitis, site unspecified', '(730.10) Chronic osteomyelitis, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.11) Chronic osteomyelitis, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.11) Chronic osteomyelitis, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.11''', NULL,
+ '(730.11) Chronic osteomyelitis, shoulder region', '(730.11) Chronic osteomyelitis, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.12) Chronic osteomyelitis, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.12) Chronic osteomyelitis, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.12''', NULL,
+ '(730.12) Chronic osteomyelitis, upper arm', '(730.12) Chronic osteomyelitis, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.13) Chronic osteomyelitis, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.13) Chronic osteomyelitis, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.13''', NULL,
+ '(730.13) Chronic osteomyelitis, forearm', '(730.13) Chronic osteomyelitis, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.14) Chronic osteomyelitis, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.14) Chronic osteomyelitis, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.14''', NULL,
+ '(730.14) Chronic osteomyelitis, hand', '(730.14) Chronic osteomyelitis, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.15) Chronic osteomyelitis, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.15) Chronic osteomyelitis, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.15''', NULL,
+ '(730.15) Chronic osteomyelitis, pelvic region and thigh', '(730.15) Chronic osteomyelitis, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.16) Chronic osteomyelitis, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.16) Chronic osteomyelitis, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.16''', NULL,
+ '(730.16) Chronic osteomyelitis, lower leg', '(730.16) Chronic osteomyelitis, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.17) Chronic osteomyelitis, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.17) Chronic osteomyelitis, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.17''', NULL,
+ '(730.17) Chronic osteomyelitis, ankle and foot', '(730.17) Chronic osteomyelitis, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.18) Chronic osteomyelitis, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.18) Chronic osteomyelitis, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.18''', NULL,
+ '(730.18) Chronic osteomyelitis, other specified sites', '(730.18) Chronic osteomyelitis, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.19) Chronic osteomyelitis, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Chronic osteomyelitis (730.1)\(730.19) Chronic osteomyelitis, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.19''', NULL,
+ '(730.19) Chronic osteomyelitis, multiple sites', '(730.19) Chronic osteomyelitis, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.7''', NULL,
+ 'Osteopathy resulting from poliomyelitis (730.7)', 'Osteopathy resulting from poliomyelitis (730.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.70) Osteopathy resulting from poliomyelitis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.70) Osteopathy resulting from poliomyelitis, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.70''', NULL,
+ '(730.70) Osteopathy resulting from poliomyelitis, site unspecified', '(730.70) Osteopathy resulting from poliomyelitis, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.71) Osteopathy resulting from poliomyelitis, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.71) Osteopathy resulting from poliomyelitis, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.71''', NULL,
+ '(730.71) Osteopathy resulting from poliomyelitis, shoulder region', '(730.71) Osteopathy resulting from poliomyelitis, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.72) Osteopathy resulting from poliomyelitis, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.72) Osteopathy resulting from poliomyelitis, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.72''', NULL,
+ '(730.72) Osteopathy resulting from poliomyelitis, upper arm', '(730.72) Osteopathy resulting from poliomyelitis, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.73) Osteopathy resulting from poliomyelitis, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.73) Osteopathy resulting from poliomyelitis, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.73''', NULL,
+ '(730.73) Osteopathy resulting from poliomyelitis, forearm', '(730.73) Osteopathy resulting from poliomyelitis, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.74) Osteopathy resulting from poliomyelitis, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.74) Osteopathy resulting from poliomyelitis, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.74''', NULL,
+ '(730.74) Osteopathy resulting from poliomyelitis, hand', '(730.74) Osteopathy resulting from poliomyelitis, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.75) Osteopathy resulting from poliomyelitis, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.75) Osteopathy resulting from poliomyelitis, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.75''', NULL,
+ '(730.75) Osteopathy resulting from poliomyelitis, pelvic region and thigh', '(730.75) Osteopathy resulting from poliomyelitis, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.76) Osteopathy resulting from poliomyelitis, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.76) Osteopathy resulting from poliomyelitis, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.76''', NULL,
+ '(730.76) Osteopathy resulting from poliomyelitis, lower leg', '(730.76) Osteopathy resulting from poliomyelitis, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.77) Osteopathy resulting from poliomyelitis, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.77) Osteopathy resulting from poliomyelitis, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.77''', NULL,
+ '(730.77) Osteopathy resulting from poliomyelitis, ankle and foot', '(730.77) Osteopathy resulting from poliomyelitis, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.78) Osteopathy resulting from poliomyelitis, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.78) Osteopathy resulting from poliomyelitis, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.78''', NULL,
+ '(730.78) Osteopathy resulting from poliomyelitis, other specified sites', '(730.78) Osteopathy resulting from poliomyelitis, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.79) Osteopathy resulting from poliomyelitis, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Osteopathy resulting from poliomyelitis (730.7)\(730.79) Osteopathy resulting from poliomyelitis, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.79''', NULL,
+ '(730.79) Osteopathy resulting from poliomyelitis, multiple sites', '(730.79) Osteopathy resulting from poliomyelitis, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.8''', NULL,
+ 'Other infections involving bone in disease classified elsewhere (730.8)', 'Other infections involving bone in disease classified elsewhere (730.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.80) Other infections involving bone in diseases classified elsewhere, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.80) Other infections involving bone in diseases classified elsewhere, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.80''', NULL,
+ '(730.80) Other infections involving bone in diseases classified elsewhere, site unspecified', '(730.80) Other infections involving bone in diseases classified elsewhere, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.81) Other infections involving bone in diseases classified elsewhere, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.81) Other infections involving bone in diseases classified elsewhere, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.81''', NULL,
+ '(730.81) Other infections involving bone in diseases classified elsewhere, shoulder region', '(730.81) Other infections involving bone in diseases classified elsewhere, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.82) Other infections involving bone in diseases classified elsewhere, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.82) Other infections involving bone in diseases classified elsewhere, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.82''', NULL,
+ '(730.82) Other infections involving bone in diseases classified elsewhere, upper arm', '(730.82) Other infections involving bone in diseases classified elsewhere, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.83) Other infections involving bone in diseases classified elsewhere, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.83) Other infections involving bone in diseases classified elsewhere, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.83''', NULL,
+ '(730.83) Other infections involving bone in diseases classified elsewhere, forearm', '(730.83) Other infections involving bone in diseases classified elsewhere, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.84) Other infections involving bone in diseases classified elsewhere, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.84) Other infections involving bone in diseases classified elsewhere, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.84''', NULL,
+ '(730.84) Other infections involving bone in diseases classified elsewhere, hand', '(730.84) Other infections involving bone in diseases classified elsewhere, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.85) Other infections involving bone in diseases classified elsewhere, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.85) Other infections involving bone in diseases classified elsewhere, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.85''', NULL,
+ '(730.85) Other infections involving bone in diseases classified elsewhere, pelvic region and thigh', '(730.85) Other infections involving bone in diseases classified elsewhere, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.86) Other infections involving bone in diseases classified elsewhere, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.86) Other infections involving bone in diseases classified elsewhere, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.86''', NULL,
+ '(730.86) Other infections involving bone in diseases classified elsewhere, lower leg', '(730.86) Other infections involving bone in diseases classified elsewhere, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.87) Other infections involving bone in diseases classified elsewhere, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.87) Other infections involving bone in diseases classified elsewhere, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.87''', NULL,
+ '(730.87) Other infections involving bone in diseases classified elsewhere, ankle and foot', '(730.87) Other infections involving bone in diseases classified elsewhere, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.88) Other infections involving bone in diseases classified elsewhere, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.88) Other infections involving bone in diseases classified elsewhere, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.88''', NULL,
+ '(730.88) Other infections involving bone in diseases classified elsewhere, other specified sites', '(730.88) Other infections involving bone in diseases classified elsewhere, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.89) Other infections involving bone in diseases classified elsewhere, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Other infections involving bone in disease classified elsewhere (730.8)\(730.89) Other infections involving bone in diseases classified elsewhere, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.89''', NULL,
+ '(730.89) Other infections involving bone in diseases classified elsewhere, multiple sites', '(730.89) Other infections involving bone in diseases classified elsewhere, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.3''', NULL,
+ 'Periostitis without mention of osteomyelitis (730.3)', 'Periostitis without mention of osteomyelitis (730.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.30) Periostitis, without mention of osteomyelitis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.30) Periostitis, without mention of osteomyelitis, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.30''', NULL,
+ '(730.30) Periostitis, without mention of osteomyelitis, site unspecified', '(730.30) Periostitis, without mention of osteomyelitis, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.31) Periostitis, without mention of osteomyelitis, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.31) Periostitis, without mention of osteomyelitis, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.31''', NULL,
+ '(730.31) Periostitis, without mention of osteomyelitis, shoulder region', '(730.31) Periostitis, without mention of osteomyelitis, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.32) Periostitis, without mention of osteomyelitis, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.32) Periostitis, without mention of osteomyelitis, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.32''', NULL,
+ '(730.32) Periostitis, without mention of osteomyelitis, upper arm', '(730.32) Periostitis, without mention of osteomyelitis, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.33) Periostitis, without mention of osteomyelitis, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.33) Periostitis, without mention of osteomyelitis, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.33''', NULL,
+ '(730.33) Periostitis, without mention of osteomyelitis, forearm', '(730.33) Periostitis, without mention of osteomyelitis, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.34) Periostitis, without mention of osteomyelitis, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.34) Periostitis, without mention of osteomyelitis, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.34''', NULL,
+ '(730.34) Periostitis, without mention of osteomyelitis, hand', '(730.34) Periostitis, without mention of osteomyelitis, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.35) Periostitis, without mention of osteomyelitis, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.35) Periostitis, without mention of osteomyelitis, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.35''', NULL,
+ '(730.35) Periostitis, without mention of osteomyelitis, pelvic region and thigh', '(730.35) Periostitis, without mention of osteomyelitis, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.36) Periostitis, without mention of osteomyelitis, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.36) Periostitis, without mention of osteomyelitis, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.36''', NULL,
+ '(730.36) Periostitis, without mention of osteomyelitis, lower leg', '(730.36) Periostitis, without mention of osteomyelitis, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.37) Periostitis, without mention of osteomyelitis, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.37) Periostitis, without mention of osteomyelitis, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.37''', NULL,
+ '(730.37) Periostitis, without mention of osteomyelitis, ankle and foot', '(730.37) Periostitis, without mention of osteomyelitis, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.38) Periostitis, without mention of osteomyelitis, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.38) Periostitis, without mention of osteomyelitis, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.38''', NULL,
+ '(730.38) Periostitis, without mention of osteomyelitis, other specified sites', '(730.38) Periostitis, without mention of osteomyelitis, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.39) Periostitis, without mention of osteomyelitis, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Periostitis without mention of osteomyelitis (730.3)\(730.39) Periostitis, without mention of osteomyelitis, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.39''', NULL,
+ '(730.39) Periostitis, without mention of osteomyelitis, multiple sites', '(730.39) Periostitis, without mention of osteomyelitis, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.9''', NULL,
+ 'Unspecified infection of bone (730.9)', 'Unspecified infection of bone (730.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.90) Unspecified infection of bone, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.90) Unspecified infection of bone, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.90''', NULL,
+ '(730.90) Unspecified infection of bone, site unspecified', '(730.90) Unspecified infection of bone, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.91) Unspecified infection of bone, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.91) Unspecified infection of bone, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.91''', NULL,
+ '(730.91) Unspecified infection of bone, shoulder region', '(730.91) Unspecified infection of bone, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.92) Unspecified infection of bone, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.92) Unspecified infection of bone, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.92''', NULL,
+ '(730.92) Unspecified infection of bone, upper arm', '(730.92) Unspecified infection of bone, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.93) Unspecified infection of bone, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.93) Unspecified infection of bone, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.93''', NULL,
+ '(730.93) Unspecified infection of bone, forearm', '(730.93) Unspecified infection of bone, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.94) Unspecified infection of bone, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.94) Unspecified infection of bone, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.94''', NULL,
+ '(730.94) Unspecified infection of bone, hand', '(730.94) Unspecified infection of bone, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.95) Unspecified infection of bone, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.95) Unspecified infection of bone, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.95''', NULL,
+ '(730.95) Unspecified infection of bone, pelvic region and thigh', '(730.95) Unspecified infection of bone, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.96) Unspecified infection of bone, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.96) Unspecified infection of bone, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.96''', NULL,
+ '(730.96) Unspecified infection of bone, lower leg', '(730.96) Unspecified infection of bone, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.97) Unspecified infection of bone, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.97) Unspecified infection of bone, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.97''', NULL,
+ '(730.97) Unspecified infection of bone, ankle and foot', '(730.97) Unspecified infection of bone, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.98) Unspecified infection of bone, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.98) Unspecified infection of bone, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.98''', NULL,
+ '(730.98) Unspecified infection of bone, other specified sites', '(730.98) Unspecified infection of bone, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.99) Unspecified infection of bone, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified infection of bone (730.9)\(730.99) Unspecified infection of bone, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.99''', NULL,
+ '(730.99) Unspecified infection of bone, multiple sites', '(730.99) Unspecified infection of bone, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.2''', NULL,
+ 'Unspecified osteomyelitis (730.2)', 'Unspecified osteomyelitis (730.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.20) Unspecified osteomyelitis, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.20) Unspecified osteomyelitis, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.20''', NULL,
+ '(730.20) Unspecified osteomyelitis, site unspecified', '(730.20) Unspecified osteomyelitis, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.21) Unspecified osteomyelitis, shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.21) Unspecified osteomyelitis, shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.21''', NULL,
+ '(730.21) Unspecified osteomyelitis, shoulder region', '(730.21) Unspecified osteomyelitis, shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.22) Unspecified osteomyelitis, upper arm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.22) Unspecified osteomyelitis, upper arm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.22''', NULL,
+ '(730.22) Unspecified osteomyelitis, upper arm', '(730.22) Unspecified osteomyelitis, upper arm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.23) Unspecified osteomyelitis, forearm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.23) Unspecified osteomyelitis, forearm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.23''', NULL,
+ '(730.23) Unspecified osteomyelitis, forearm', '(730.23) Unspecified osteomyelitis, forearm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.24) Unspecified osteomyelitis, hand\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.24) Unspecified osteomyelitis, hand\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.24''', NULL,
+ '(730.24) Unspecified osteomyelitis, hand', '(730.24) Unspecified osteomyelitis, hand', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.25) Unspecified osteomyelitis, pelvic region and thigh\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.25) Unspecified osteomyelitis, pelvic region and thigh\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.25''', NULL,
+ '(730.25) Unspecified osteomyelitis, pelvic region and thigh', '(730.25) Unspecified osteomyelitis, pelvic region and thigh', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.26) Unspecified osteomyelitis, lower leg\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.26) Unspecified osteomyelitis, lower leg\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.26''', NULL,
+ '(730.26) Unspecified osteomyelitis, lower leg', '(730.26) Unspecified osteomyelitis, lower leg', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.27) Unspecified osteomyelitis, ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.27) Unspecified osteomyelitis, ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.27''', NULL,
+ '(730.27) Unspecified osteomyelitis, ankle and foot', '(730.27) Unspecified osteomyelitis, ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.28) Unspecified osteomyelitis, other specified sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.28) Unspecified osteomyelitis, other specified sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.28''', NULL,
+ '(730.28) Unspecified osteomyelitis, other specified sites', '(730.28) Unspecified osteomyelitis, other specified sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.29) Unspecified osteomyelitis, multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Osteomyelitis, periostitis, and other infections involving bone (730)\Unspecified osteomyelitis (730.2)\(730.29) Unspecified osteomyelitis, multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''730.29''', NULL,
+ '(730.29) Unspecified osteomyelitis, multiple sites', '(730.29) Unspecified osteomyelitis, multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736''', NULL,
+ 'Other acquired deformities of limbs (736)', 'Other acquired deformities of limbs (736)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\(736.1) Mallet finger\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\(736.1) Mallet finger\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.1''', NULL,
+ '(736.1) Mallet finger', '(736.1) Mallet finger', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\(736.5) Genu recurvatum (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\(736.5) Genu recurvatum (acquired)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.5) Genu recurvatum (acquired''', NULL,
+ '(736.5) Genu recurvatum (acquired)', '(736.5) Genu recurvatum (acquired)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\(736.6) Other acquired deformities of knee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\(736.6) Other acquired deformities of knee\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.6''', NULL,
+ '(736.6) Other acquired deformities of knee', '(736.6) Other acquired deformities of knee', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\(736.9) Acquired deformity of limb, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\(736.9) Acquired deformity of limb, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.9''', NULL,
+ '(736.9) Acquired deformity of limb, site unspecified', '(736.9) Acquired deformity of limb, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.0''', NULL,
+ 'Acquired deformities of forearm, excluding fingers (736.0)', 'Acquired deformities of forearm, excluding fingers (736.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.00) Unspecified deformity of forearm, excluding fingers\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.00) Unspecified deformity of forearm, excluding fingers\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.00''', NULL,
+ '(736.00) Unspecified deformity of forearm, excluding fingers', '(736.00) Unspecified deformity of forearm, excluding fingers', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.01) Cubitus valgus (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.01) Cubitus valgus (acquired)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.01) Cubitus valgus (acquired''', NULL,
+ '(736.01) Cubitus valgus (acquired)', '(736.01) Cubitus valgus (acquired)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.02) Cubitus varus (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.02) Cubitus varus (acquired)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.02) Cubitus varus (acquired''', NULL,
+ '(736.02) Cubitus varus (acquired)', '(736.02) Cubitus varus (acquired)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.03) Valgus deformity of wrist (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.03) Valgus deformity of wrist (acquired)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.03) Valgus deformity of wrist (acquired''', NULL,
+ '(736.03) Valgus deformity of wrist (acquired)', '(736.03) Valgus deformity of wrist (acquired)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.04) Varus deformity of wrist (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.04) Varus deformity of wrist (acquired)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.04) Varus deformity of wrist (acquired''', NULL,
+ '(736.04) Varus deformity of wrist (acquired)', '(736.04) Varus deformity of wrist (acquired)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.05) Wrist drop (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.05) Wrist drop (acquired)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.05) Wrist drop (acquired''', NULL,
+ '(736.05) Wrist drop (acquired)', '(736.05) Wrist drop (acquired)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.06) Claw hand (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.06) Claw hand (acquired)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.06) Claw hand (acquired''', NULL,
+ '(736.06) Claw hand (acquired)', '(736.06) Claw hand (acquired)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.07) Club hand, acquired\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.07) Club hand, acquired\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.07''', NULL,
+ '(736.07) Club hand, acquired', '(736.07) Club hand, acquired', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.09) Other acquired deformities of forearm, excluding fingers\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of forearm, excluding fingers (736.0)\(736.09) Other acquired deformities of forearm, excluding fingers\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.09''', NULL,
+ '(736.09) Other acquired deformities of forearm, excluding fingers', '(736.09) Other acquired deformities of forearm, excluding fingers', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of hip (736.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of hip (736.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.3''', NULL,
+ 'Acquired deformities of hip (736.3)', 'Acquired deformities of hip (736.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of hip (736.3)\(736.30) Unspecified acquired deformity of hip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of hip (736.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of hip (736.3)\(736.30) Unspecified acquired deformity of hip\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.30''', NULL,
+ '(736.30) Unspecified acquired deformity of hip', '(736.30) Unspecified acquired deformity of hip', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of hip (736.3)\(736.31) Coxa valga (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of hip (736.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of hip (736.3)\(736.31) Coxa valga (acquired)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.31) Coxa valga (acquired''', NULL,
+ '(736.31) Coxa valga (acquired)', '(736.31) Coxa valga (acquired)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of hip (736.3)\(736.32) Coxa vara (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of hip (736.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of hip (736.3)\(736.32) Coxa vara (acquired)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.32) Coxa vara (acquired''', NULL,
+ '(736.32) Coxa vara (acquired)', '(736.32) Coxa vara (acquired)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of hip (736.3)\(736.39) Other acquired deformities of hip\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of hip (736.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of hip (736.3)\(736.39) Other acquired deformities of hip\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.39''', NULL,
+ '(736.39) Other acquired deformities of hip', '(736.39) Other acquired deformities of hip', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of other parts of limbs (736.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of other parts of limbs (736.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.8''', NULL,
+ 'Acquired deformities of other parts of limbs (736.8)', 'Acquired deformities of other parts of limbs (736.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of other parts of limbs (736.8)\(736.81) Unequal leg length (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of other parts of limbs (736.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of other parts of limbs (736.8)\(736.81) Unequal leg length (acquired)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.81) Unequal leg length (acquired''', NULL,
+ '(736.81) Unequal leg length (acquired)', '(736.81) Unequal leg length (acquired)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of other parts of limbs (736.8)\(736.89) Other acquired deformity of other parts of limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of other parts of limbs (736.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Acquired deformities of other parts of limbs (736.8)\(736.89) Other acquired deformity of other parts of limb\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.89''', NULL,
+ '(736.89) Other acquired deformity of other parts of limb', '(736.89) Other acquired deformity of other parts of limb', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Genu valgum or varum (acquired) (736.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Genu valgum or varum (acquired) (736.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''acquired) (736.4''', NULL,
+ 'Genu valgum or varum (acquired) (736.4)', 'Genu valgum or varum (acquired) (736.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Genu valgum or varum (acquired) (736.4)\(736.41) Genu valgum (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Genu valgum or varum (acquired) (736.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Genu valgum or varum (acquired) (736.4)\(736.41) Genu valgum (acquired)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.41) Genu valgum (acquired''', NULL,
+ '(736.41) Genu valgum (acquired)', '(736.41) Genu valgum (acquired)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Genu valgum or varum (acquired) (736.4)\(736.42) Genu varum (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Genu valgum or varum (acquired) (736.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Genu valgum or varum (acquired) (736.4)\(736.42) Genu varum (acquired)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.42) Genu varum (acquired''', NULL,
+ '(736.42) Genu varum (acquired)', '(736.42) Genu varum (acquired)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.7''', NULL,
+ 'Other acquired deformities of ankle and foot (736.7)', 'Other acquired deformities of ankle and foot (736.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.70) Unspecified deformity of ankle and foot, acquired\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.70) Unspecified deformity of ankle and foot, acquired\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.70''', NULL,
+ '(736.70) Unspecified deformity of ankle and foot, acquired', '(736.70) Unspecified deformity of ankle and foot, acquired', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.71) Acquired equinovarus deformity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.71) Acquired equinovarus deformity\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.71''', NULL,
+ '(736.71) Acquired equinovarus deformity', '(736.71) Acquired equinovarus deformity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.72) Equinus deformity of foot, acquired\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.72) Equinus deformity of foot, acquired\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.72''', NULL,
+ '(736.72) Equinus deformity of foot, acquired', '(736.72) Equinus deformity of foot, acquired', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.73) Cavus deformity of foot, acquired\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.73) Cavus deformity of foot, acquired\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.73''', NULL,
+ '(736.73) Cavus deformity of foot, acquired', '(736.73) Cavus deformity of foot, acquired', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.74) Claw foot, acquired\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.74) Claw foot, acquired\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.74''', NULL,
+ '(736.74) Claw foot, acquired', '(736.74) Claw foot, acquired', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.75) Cavovarus deformity of foot, acquired\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.75) Cavovarus deformity of foot, acquired\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.75''', NULL,
+ '(736.75) Cavovarus deformity of foot, acquired', '(736.75) Cavovarus deformity of foot, acquired', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.76) Other acquired calcaneus deformity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.76) Other acquired calcaneus deformity\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.76''', NULL,
+ '(736.76) Other acquired calcaneus deformity', '(736.76) Other acquired calcaneus deformity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.79) Other acquired deformities of ankle and foot\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of ankle and foot (736.7)\(736.79) Other acquired deformities of ankle and foot\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.79''', NULL,
+ '(736.79) Other acquired deformities of ankle and foot', '(736.79) Other acquired deformities of ankle and foot', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of finger (736.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of finger (736.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.2''', NULL,
+ 'Other acquired deformities of finger (736.2)', 'Other acquired deformities of finger (736.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of finger (736.2)\(736.20) Unspecified deformity of finger\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of finger (736.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of finger (736.2)\(736.20) Unspecified deformity of finger\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.20''', NULL,
+ '(736.20) Unspecified deformity of finger', '(736.20) Unspecified deformity of finger', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of finger (736.2)\(736.21) Boutonniere deformity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of finger (736.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of finger (736.2)\(736.21) Boutonniere deformity\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.21''', NULL,
+ '(736.21) Boutonniere deformity', '(736.21) Boutonniere deformity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of finger (736.2)\(736.22) Swan-neck deformity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of finger (736.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of finger (736.2)\(736.22) Swan-neck deformity\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.22''', NULL,
+ '(736.22) Swan-neck deformity', '(736.22) Swan-neck deformity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of finger (736.2)\(736.29) Other acquired deformities of finger\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of finger (736.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired deformities of limbs (736)\Other acquired deformities of finger (736.2)\(736.29) Other acquired deformities of finger\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''736.29''', NULL,
+ '(736.29) Other acquired deformities of finger', '(736.29) Other acquired deformities of finger', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''738''', NULL,
+ 'Other acquired musculoskeletal deformity (738)', 'Other acquired musculoskeletal deformity (738)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.0) Acquired deformity of nose\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.0) Acquired deformity of nose\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''738.0''', NULL,
+ '(738.0) Acquired deformity of nose', '(738.0) Acquired deformity of nose', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.2) Acquired deformity of neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.2) Acquired deformity of neck\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''738.2''', NULL,
+ '(738.2) Acquired deformity of neck', '(738.2) Acquired deformity of neck', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.3) Acquired deformity of chest and rib\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.3) Acquired deformity of chest and rib\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''738.3''', NULL,
+ '(738.3) Acquired deformity of chest and rib', '(738.3) Acquired deformity of chest and rib', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.4) Acquired spondylolisthesis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.4) Acquired spondylolisthesis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''738.4''', NULL,
+ '(738.4) Acquired spondylolisthesis', '(738.4) Acquired spondylolisthesis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.5) Other acquired deformity of back or spine\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.5) Other acquired deformity of back or spine\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''738.5''', NULL,
+ '(738.5) Other acquired deformity of back or spine', '(738.5) Other acquired deformity of back or spine', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.6) Acquired deformity of pelvis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.6) Acquired deformity of pelvis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''738.6''', NULL,
+ '(738.6) Acquired deformity of pelvis', '(738.6) Acquired deformity of pelvis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.7) Cauliflower ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.7) Cauliflower ear\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''738.7''', NULL,
+ '(738.7) Cauliflower ear', '(738.7) Cauliflower ear', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.8) Acquired deformity of other specified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.8) Acquired deformity of other specified site\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''738.8''', NULL,
+ '(738.8) Acquired deformity of other specified site', '(738.8) Acquired deformity of other specified site', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.9) Acquired deformity of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\(738.9) Acquired deformity of unspecified site\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''738.9''', NULL,
+ '(738.9) Acquired deformity of unspecified site', '(738.9) Acquired deformity of unspecified site', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\Other acquired deformity of head (738.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\Other acquired deformity of head (738.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''738.1''', NULL,
+ 'Other acquired deformity of head (738.1)', 'Other acquired deformity of head (738.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\Other acquired deformity of head (738.1)\(738.10) Unspecified acquired deformity of head\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\Other acquired deformity of head (738.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\Other acquired deformity of head (738.1)\(738.10) Unspecified acquired deformity of head\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''738.10''', NULL,
+ '(738.10) Unspecified acquired deformity of head', '(738.10) Unspecified acquired deformity of head', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\Other acquired deformity of head (738.1)\(738.11) Zygomatic hyperplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\Other acquired deformity of head (738.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\Other acquired deformity of head (738.1)\(738.11) Zygomatic hyperplasia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''738.11''', NULL,
+ '(738.11) Zygomatic hyperplasia', '(738.11) Zygomatic hyperplasia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\Other acquired deformity of head (738.1)\(738.12) Zygomatic hypoplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\Other acquired deformity of head (738.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\Other acquired deformity of head (738.1)\(738.12) Zygomatic hypoplasia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''738.12''', NULL,
+ '(738.12) Zygomatic hypoplasia', '(738.12) Zygomatic hypoplasia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\Other acquired deformity of head (738.1)\(738.19) Other specified acquired deformity of head\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\Other acquired deformity of head (738.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other acquired musculoskeletal deformity (738)\Other acquired deformity of head (738.1)\(738.19) Other specified acquired deformity of head\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''738.19''', NULL,
+ '(738.19) Other specified acquired deformity of head', '(738.19) Other specified acquired deformity of head', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733''', NULL,
+ 'Other disorders of bone and cartilage (733)', 'Other disorders of bone and cartilage (733)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\(733.3) Hyperostosis of skull\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\(733.3) Hyperostosis of skull\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.3''', NULL,
+ '(733.3) Hyperostosis of skull', '(733.3) Hyperostosis of skull', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\(733.5) Osteitis condensans\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\(733.5) Osteitis condensans\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.5''', NULL,
+ '(733.5) Osteitis condensans', '(733.5) Osteitis condensans', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\(733.6) Tietze''s disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\(733.6) Tietze''s disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.6''', NULL,
+ '(733.6) Tietze''s disease', '(733.6) Tietze''s disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\(733.7) Algoneurodystrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\(733.7) Algoneurodystrophy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.7''', NULL,
+ '(733.7) Algoneurodystrophy', '(733.7) Algoneurodystrophy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.4''', NULL,
+ 'Aseptic necrosis of bone (733.4)', 'Aseptic necrosis of bone (733.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\(733.40) Aseptic necrosis of bone, site unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\(733.40) Aseptic necrosis of bone, site unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.40''', NULL,
+ '(733.40) Aseptic necrosis of bone, site unspecified', '(733.40) Aseptic necrosis of bone, site unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\(733.41) Aseptic necrosis of head of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\(733.41) Aseptic necrosis of head of humerus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.41''', NULL,
+ '(733.41) Aseptic necrosis of head of humerus', '(733.41) Aseptic necrosis of head of humerus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\(733.42) Aseptic necrosis of head and neck of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\(733.42) Aseptic necrosis of head and neck of femur\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.42''', NULL,
+ '(733.42) Aseptic necrosis of head and neck of femur', '(733.42) Aseptic necrosis of head and neck of femur', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\(733.43) Aseptic necrosis of medial femoral condyle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\(733.43) Aseptic necrosis of medial femoral condyle\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.43''', NULL,
+ '(733.43) Aseptic necrosis of medial femoral condyle', '(733.43) Aseptic necrosis of medial femoral condyle', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\(733.44) Aseptic necrosis of talus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\(733.44) Aseptic necrosis of talus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.44''', NULL,
+ '(733.44) Aseptic necrosis of talus', '(733.44) Aseptic necrosis of talus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\(733.45) Aseptic necrosis of bone, jaw\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\(733.45) Aseptic necrosis of bone, jaw\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.45''', NULL,
+ '(733.45) Aseptic necrosis of bone, jaw', '(733.45) Aseptic necrosis of bone, jaw', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\(733.49) Aseptic necrosis of bone, other\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Aseptic necrosis of bone (733.4)\(733.49) Aseptic necrosis of bone, other\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.49''', NULL,
+ '(733.49) Aseptic necrosis of bone, other', '(733.49) Aseptic necrosis of bone, other', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Cyst of bone (733.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Cyst of bone (733.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.2''', NULL,
+ 'Cyst of bone (733.2)', 'Cyst of bone (733.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Cyst of bone (733.2)\(733.20) Cyst of bone (localized), unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Cyst of bone (733.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Cyst of bone (733.2)\(733.20) Cyst of bone (localized), unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.20) Cyst of bone (localized''', NULL,
+ '(733.20) Cyst of bone (localized), unspecified', '(733.20) Cyst of bone (localized), unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Cyst of bone (733.2)\(733.21) Solitary bone cyst\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Cyst of bone (733.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Cyst of bone (733.2)\(733.21) Solitary bone cyst\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.21''', NULL,
+ '(733.21) Solitary bone cyst', '(733.21) Solitary bone cyst', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Cyst of bone (733.2)\(733.22) Aneurysmal bone cyst\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Cyst of bone (733.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Cyst of bone (733.2)\(733.22) Aneurysmal bone cyst\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.22''', NULL,
+ '(733.22) Aneurysmal bone cyst', '(733.22) Aneurysmal bone cyst', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Cyst of bone (733.2)\(733.29) Other bone cyst\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Cyst of bone (733.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Cyst of bone (733.2)\(733.29) Other bone cyst\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.29''', NULL,
+ '(733.29) Other bone cyst', '(733.29) Other bone cyst', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Malunion and nonunion of fracture (733.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Malunion and nonunion of fracture (733.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.8''', NULL,
+ 'Malunion and nonunion of fracture (733.8)', 'Malunion and nonunion of fracture (733.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Malunion and nonunion of fracture (733.8)\(733.81) Malunion of fracture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Malunion and nonunion of fracture (733.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Malunion and nonunion of fracture (733.8)\(733.81) Malunion of fracture\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.81''', NULL,
+ '(733.81) Malunion of fracture', '(733.81) Malunion of fracture', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Malunion and nonunion of fracture (733.8)\(733.82) Nonunion of fracture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Malunion and nonunion of fracture (733.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Malunion and nonunion of fracture (733.8)\(733.82) Nonunion of fracture\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.82''', NULL,
+ '(733.82) Nonunion of fracture', '(733.82) Nonunion of fracture', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.0''', NULL,
+ 'Osteoporosis (733.0)', 'Osteoporosis (733.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\(733.00) Osteoporosis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\(733.00) Osteoporosis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.00''', NULL,
+ '(733.00) Osteoporosis, unspecified', '(733.00) Osteoporosis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\(733.01) Senile osteoporosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\(733.01) Senile osteoporosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.01''', NULL,
+ '(733.01) Senile osteoporosis', '(733.01) Senile osteoporosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\(733.02) Idiopathic osteoporosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\(733.02) Idiopathic osteoporosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.02''', NULL,
+ '(733.02) Idiopathic osteoporosis', '(733.02) Idiopathic osteoporosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\(733.03) Disuse osteoporosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\(733.03) Disuse osteoporosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.03''', NULL,
+ '(733.03) Disuse osteoporosis', '(733.03) Disuse osteoporosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\(733.09) Other osteoporosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Osteoporosis (733.0)\(733.09) Other osteoporosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.09''', NULL,
+ '(733.09) Other osteoporosis', '(733.09) Other osteoporosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.9''', NULL,
+ 'Other and unspecified disorders of bone and cartilage (733.9)', 'Other and unspecified disorders of bone and cartilage (733.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.90) Disorder of bone and cartilage, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.90) Disorder of bone and cartilage, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.90''', NULL,
+ '(733.90) Disorder of bone and cartilage, unspecified', '(733.90) Disorder of bone and cartilage, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.91) Arrest of bone development or growth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.91) Arrest of bone development or growth\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.91''', NULL,
+ '(733.91) Arrest of bone development or growth', '(733.91) Arrest of bone development or growth', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.92) Chondromalacia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.92) Chondromalacia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.92''', NULL,
+ '(733.92) Chondromalacia', '(733.92) Chondromalacia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.93) Stress fracture of tibia or fibula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.93) Stress fracture of tibia or fibula\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.93''', NULL,
+ '(733.93) Stress fracture of tibia or fibula', '(733.93) Stress fracture of tibia or fibula', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.94) Stress fracture of the metatarsals\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.94) Stress fracture of the metatarsals\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.94''', NULL,
+ '(733.94) Stress fracture of the metatarsals', '(733.94) Stress fracture of the metatarsals', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.95) Stress fracture of other bone\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.95) Stress fracture of other bone\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.95''', NULL,
+ '(733.95) Stress fracture of other bone', '(733.95) Stress fracture of other bone', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.96) Stress fracture of femoral neck\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.96) Stress fracture of femoral neck\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.96''', NULL,
+ '(733.96) Stress fracture of femoral neck', '(733.96) Stress fracture of femoral neck', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.97) Stress fracture of shaft of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.97) Stress fracture of shaft of femur\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.97''', NULL,
+ '(733.97) Stress fracture of shaft of femur', '(733.97) Stress fracture of shaft of femur', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.98) Stress fracture of pelvis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.98) Stress fracture of pelvis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.98''', NULL,
+ '(733.98) Stress fracture of pelvis', '(733.98) Stress fracture of pelvis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.99) Other disorders of bone and cartilage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Other and unspecified disorders of bone and cartilage (733.9)\(733.99) Other disorders of bone and cartilage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.99''', NULL,
+ '(733.99) Other disorders of bone and cartilage', '(733.99) Other disorders of bone and cartilage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.1''', NULL,
+ 'Pathologic fracture (733.1)', 'Pathologic fracture (733.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.10) Pathologic fracture, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.10) Pathologic fracture, unspecified site\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.10''', NULL,
+ '(733.10) Pathologic fracture, unspecified site', '(733.10) Pathologic fracture, unspecified site', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.11) Pathologic fracture of humerus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.11) Pathologic fracture of humerus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.11''', NULL,
+ '(733.11) Pathologic fracture of humerus', '(733.11) Pathologic fracture of humerus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.12) Pathologic fracture of distal radius and ulna\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.12) Pathologic fracture of distal radius and ulna\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.12''', NULL,
+ '(733.12) Pathologic fracture of distal radius and ulna', '(733.12) Pathologic fracture of distal radius and ulna', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.13) Pathologic fracture of vertebrae\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.13) Pathologic fracture of vertebrae\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.13''', NULL,
+ '(733.13) Pathologic fracture of vertebrae', '(733.13) Pathologic fracture of vertebrae', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.14) Pathologic fracture of neck of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.14) Pathologic fracture of neck of femur\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.14''', NULL,
+ '(733.14) Pathologic fracture of neck of femur', '(733.14) Pathologic fracture of neck of femur', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.15) Pathologic fracture of other specified part of femur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.15) Pathologic fracture of other specified part of femur\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.15''', NULL,
+ '(733.15) Pathologic fracture of other specified part of femur', '(733.15) Pathologic fracture of other specified part of femur', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.16) Pathologic fracture of tibia or fibula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.16) Pathologic fracture of tibia or fibula\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.16''', NULL,
+ '(733.16) Pathologic fracture of tibia or fibula', '(733.16) Pathologic fracture of tibia or fibula', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.19) Pathologic fracture of other specified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Osteopathies, chondropathies, and acquired musculoskeletal deformities (730-739.99)\Other disorders of bone and cartilage (733)\Pathologic fracture (733.1)\(733.19) Pathologic fracture of other specified site\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''733.19''', NULL,
+ '(733.19) Pathologic fracture of other specified site', '(733.19) Pathologic fracture of other specified site', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''725'' AND ''729.99''', NULL,
+ 'Rheumatism, excluding the back (725-729.99)', 'Rheumatism, excluding the back (725-729.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\(725) Polymyalgia rheumatica\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\(725) Polymyalgia rheumatica\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''725''', NULL,
+ '(725) Polymyalgia rheumatica', '(725) Polymyalgia rheumatica', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728''', NULL,
+ 'Disorders of muscle, ligament, and fascia (728)', 'Disorders of muscle, ligament, and fascia (728)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\(728.0) Infective myositis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\(728.0) Infective myositis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.0''', NULL,
+ '(728.0) Infective myositis', '(728.0) Infective myositis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\(728.2) Muscular wasting and disuse atrophy, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\(728.2) Muscular wasting and disuse atrophy, not elsewhere classified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.2''', NULL,
+ '(728.2) Muscular wasting and disuse atrophy, not elsewhere classified', '(728.2) Muscular wasting and disuse atrophy, not elsewhere classified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\(728.3) Other specific muscle disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\(728.3) Other specific muscle disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.3''', NULL,
+ '(728.3) Other specific muscle disorders', '(728.3) Other specific muscle disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\(728.4) Laxity of ligament\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\(728.4) Laxity of ligament\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.4''', NULL,
+ '(728.4) Laxity of ligament', '(728.4) Laxity of ligament', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\(728.5) Hypermobility syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\(728.5) Hypermobility syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.5''', NULL,
+ '(728.5) Hypermobility syndrome', '(728.5) Hypermobility syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\(728.6) Contracture of palmar fascia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\(728.6) Contracture of palmar fascia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.6''', NULL,
+ '(728.6) Contracture of palmar fascia', '(728.6) Contracture of palmar fascia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\(728.9) Unspecified disorder of muscle, ligament, and fascia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\(728.9) Unspecified disorder of muscle, ligament, and fascia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.9''', NULL,
+ '(728.9) Unspecified disorder of muscle, ligament, and fascia', '(728.9) Unspecified disorder of muscle, ligament, and fascia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.1''', NULL,
+ 'Muscular calcification and ossification (728.1)', 'Muscular calcification and ossification (728.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\(728.10) Calcification and ossification, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\(728.10) Calcification and ossification, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.10''', NULL,
+ '(728.10) Calcification and ossification, unspecified', '(728.10) Calcification and ossification, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\(728.11) Progressive myositis ossificans\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\(728.11) Progressive myositis ossificans\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.11''', NULL,
+ '(728.11) Progressive myositis ossificans', '(728.11) Progressive myositis ossificans', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\(728.12) Traumatic myositis ossificans\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\(728.12) Traumatic myositis ossificans\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.12''', NULL,
+ '(728.12) Traumatic myositis ossificans', '(728.12) Traumatic myositis ossificans', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\(728.13) Postoperative heterotopic calcification\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\(728.13) Postoperative heterotopic calcification\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.13''', NULL,
+ '(728.13) Postoperative heterotopic calcification', '(728.13) Postoperative heterotopic calcification', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\(728.19) Other muscular calcification and ossification\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Muscular calcification and ossification (728.1)\(728.19) Other muscular calcification and ossification\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.19''', NULL,
+ '(728.19) Other muscular calcification and ossification', '(728.19) Other muscular calcification and ossification', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.8''', NULL,
+ 'Other disorders of muscle, ligament, and fascia (728.8)', 'Other disorders of muscle, ligament, and fascia (728.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.81) Interstitial myositis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.81) Interstitial myositis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.81''', NULL,
+ '(728.81) Interstitial myositis', '(728.81) Interstitial myositis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.82) Foreign body granuloma of muscle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.82) Foreign body granuloma of muscle\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.82''', NULL,
+ '(728.82) Foreign body granuloma of muscle', '(728.82) Foreign body granuloma of muscle', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.83) Rupture of muscle, nontraumatic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.83) Rupture of muscle, nontraumatic\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.83''', NULL,
+ '(728.83) Rupture of muscle, nontraumatic', '(728.83) Rupture of muscle, nontraumatic', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.84) Diastasis of muscle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.84) Diastasis of muscle\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.84''', NULL,
+ '(728.84) Diastasis of muscle', '(728.84) Diastasis of muscle', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.85) Spasm of muscle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.85) Spasm of muscle\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.85''', NULL,
+ '(728.85) Spasm of muscle', '(728.85) Spasm of muscle', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.86) Necrotizing fasciitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.86) Necrotizing fasciitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.86''', NULL,
+ '(728.86) Necrotizing fasciitis', '(728.86) Necrotizing fasciitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.87) Muscle weakness (generalized)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.87) Muscle weakness (generalized)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.87) Muscle weakness (generalized''', NULL,
+ '(728.87) Muscle weakness (generalized)', '(728.87) Muscle weakness (generalized)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.88) Rhabdomyolysis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.88) Rhabdomyolysis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.88''', NULL,
+ '(728.88) Rhabdomyolysis', '(728.88) Rhabdomyolysis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.89) Other disorders of muscle, ligament, and fascia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other disorders of muscle, ligament, and fascia (728.8)\(728.89) Other disorders of muscle, ligament, and fascia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.89''', NULL,
+ '(728.89) Other disorders of muscle, ligament, and fascia', '(728.89) Other disorders of muscle, ligament, and fascia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other fibromatoses of muscle, ligament, and fascia (728.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other fibromatoses of muscle, ligament, and fascia (728.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.7''', NULL,
+ 'Other fibromatoses of muscle, ligament, and fascia (728.7)', 'Other fibromatoses of muscle, ligament, and fascia (728.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other fibromatoses of muscle, ligament, and fascia (728.7)\(728.71) Plantar fascial fibromatosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other fibromatoses of muscle, ligament, and fascia (728.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other fibromatoses of muscle, ligament, and fascia (728.7)\(728.71) Plantar fascial fibromatosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.71''', NULL,
+ '(728.71) Plantar fascial fibromatosis', '(728.71) Plantar fascial fibromatosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other fibromatoses of muscle, ligament, and fascia (728.7)\(728.79) Other fibromatoses of muscle, ligament, and fascia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other fibromatoses of muscle, ligament, and fascia (728.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Disorders of muscle, ligament, and fascia (728)\Other fibromatoses of muscle, ligament, and fascia (728.7)\(728.79) Other fibromatoses of muscle, ligament, and fascia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''728.79''', NULL,
+ '(728.79) Other fibromatoses of muscle, ligament, and fascia', '(728.79) Other fibromatoses of muscle, ligament, and fascia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729''', NULL,
+ 'Other disorders of soft tissues (729)', 'Other disorders of soft tissues (729)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\(729.0) Rheumatism, unspecified and fibrositis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\(729.0) Rheumatism, unspecified and fibrositis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.0''', NULL,
+ '(729.0) Rheumatism, unspecified and fibrositis', '(729.0) Rheumatism, unspecified and fibrositis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\(729.1) Myalgia and myositis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\(729.1) Myalgia and myositis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.1''', NULL,
+ '(729.1) Myalgia and myositis, unspecified', '(729.1) Myalgia and myositis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\(729.2) Neuralgia, neuritis, and radiculitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\(729.2) Neuralgia, neuritis, and radiculitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.2''', NULL,
+ '(729.2) Neuralgia, neuritis, and radiculitis, unspecified', '(729.2) Neuralgia, neuritis, and radiculitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\(729.4) Fasciitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\(729.4) Fasciitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.4''', NULL,
+ '(729.4) Fasciitis, unspecified', '(729.4) Fasciitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\(729.5) Pain in limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\(729.5) Pain in limb\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.5''', NULL,
+ '(729.5) Pain in limb', '(729.5) Pain in limb', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\(729.6) Residual foreign body in soft tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\(729.6) Residual foreign body in soft tissue\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.6''', NULL,
+ '(729.6) Residual foreign body in soft tissue', '(729.6) Residual foreign body in soft tissue', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Nontraumatic compartment syndrome (729.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Nontraumatic compartment syndrome (729.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.7''', NULL,
+ 'Nontraumatic compartment syndrome (729.7)', 'Nontraumatic compartment syndrome (729.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Nontraumatic compartment syndrome (729.7)\(729.71) Nontraumatic compartment syndrome of upper extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Nontraumatic compartment syndrome (729.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Nontraumatic compartment syndrome (729.7)\(729.71) Nontraumatic compartment syndrome of upper extremity\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.71''', NULL,
+ '(729.71) Nontraumatic compartment syndrome of upper extremity', '(729.71) Nontraumatic compartment syndrome of upper extremity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Nontraumatic compartment syndrome (729.7)\(729.72) Nontraumatic compartment syndrome of lower extremity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Nontraumatic compartment syndrome (729.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Nontraumatic compartment syndrome (729.7)\(729.72) Nontraumatic compartment syndrome of lower extremity\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.72''', NULL,
+ '(729.72) Nontraumatic compartment syndrome of lower extremity', '(729.72) Nontraumatic compartment syndrome of lower extremity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Nontraumatic compartment syndrome (729.7)\(729.73) Nontraumatic compartment syndrome of abdomen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Nontraumatic compartment syndrome (729.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Nontraumatic compartment syndrome (729.7)\(729.73) Nontraumatic compartment syndrome of abdomen\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.73''', NULL,
+ '(729.73) Nontraumatic compartment syndrome of abdomen', '(729.73) Nontraumatic compartment syndrome of abdomen', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Nontraumatic compartment syndrome (729.7)\(729.79) Nontraumatic compartment syndrome of other sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Nontraumatic compartment syndrome (729.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Nontraumatic compartment syndrome (729.7)\(729.79) Nontraumatic compartment syndrome of other sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.79''', NULL,
+ '(729.79) Nontraumatic compartment syndrome of other sites', '(729.79) Nontraumatic compartment syndrome of other sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other and unspecified disorders of soft tissue (729.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other and unspecified disorders of soft tissue (729.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.9''', NULL,
+ 'Other and unspecified disorders of soft tissue (729.9)', 'Other and unspecified disorders of soft tissue (729.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other and unspecified disorders of soft tissue (729.9)\(729.90) Disorders of soft tissue, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other and unspecified disorders of soft tissue (729.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other and unspecified disorders of soft tissue (729.9)\(729.90) Disorders of soft tissue, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.90''', NULL,
+ '(729.90) Disorders of soft tissue, unspecified', '(729.90) Disorders of soft tissue, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other and unspecified disorders of soft tissue (729.9)\(729.91) Post-traumatic seroma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other and unspecified disorders of soft tissue (729.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other and unspecified disorders of soft tissue (729.9)\(729.91) Post-traumatic seroma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.91''', NULL,
+ '(729.91) Post-traumatic seroma', '(729.91) Post-traumatic seroma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other and unspecified disorders of soft tissue (729.9)\(729.92) Nontraumatic hematoma of soft tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other and unspecified disorders of soft tissue (729.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other and unspecified disorders of soft tissue (729.9)\(729.92) Nontraumatic hematoma of soft tissue\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.92''', NULL,
+ '(729.92) Nontraumatic hematoma of soft tissue', '(729.92) Nontraumatic hematoma of soft tissue', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other and unspecified disorders of soft tissue (729.9)\(729.99) Other disorders of soft tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other and unspecified disorders of soft tissue (729.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other and unspecified disorders of soft tissue (729.9)\(729.99) Other disorders of soft tissue\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.99''', NULL,
+ '(729.99) Other disorders of soft tissue', '(729.99) Other disorders of soft tissue', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other musculoskeletal symptoms referable to limbs (729.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other musculoskeletal symptoms referable to limbs (729.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.8''', NULL,
+ 'Other musculoskeletal symptoms referable to limbs (729.8)', 'Other musculoskeletal symptoms referable to limbs (729.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other musculoskeletal symptoms referable to limbs (729.8)\(729.81) Swelling of limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other musculoskeletal symptoms referable to limbs (729.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other musculoskeletal symptoms referable to limbs (729.8)\(729.81) Swelling of limb\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.81''', NULL,
+ '(729.81) Swelling of limb', '(729.81) Swelling of limb', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other musculoskeletal symptoms referable to limbs (729.8)\(729.82) Cramp of limb\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other musculoskeletal symptoms referable to limbs (729.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other musculoskeletal symptoms referable to limbs (729.8)\(729.82) Cramp of limb\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.82''', NULL,
+ '(729.82) Cramp of limb', '(729.82) Cramp of limb', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other musculoskeletal symptoms referable to limbs (729.8)\(729.89) Other musculoskeletal symptoms referable to limbs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other musculoskeletal symptoms referable to limbs (729.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Other musculoskeletal symptoms referable to limbs (729.8)\(729.89) Other musculoskeletal symptoms referable to limbs\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.89''', NULL,
+ '(729.89) Other musculoskeletal symptoms referable to limbs', '(729.89) Other musculoskeletal symptoms referable to limbs', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Panniculitis, unspecified (729.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Panniculitis, unspecified (729.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.3''', NULL,
+ 'Panniculitis, unspecified (729.3)', 'Panniculitis, unspecified (729.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Panniculitis, unspecified (729.3)\(729.30) Panniculitis, unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Panniculitis, unspecified (729.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Panniculitis, unspecified (729.3)\(729.30) Panniculitis, unspecified site\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.30''', NULL,
+ '(729.30) Panniculitis, unspecified site', '(729.30) Panniculitis, unspecified site', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Panniculitis, unspecified (729.3)\(729.31) Hypertrophy of fat pad, knee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Panniculitis, unspecified (729.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Panniculitis, unspecified (729.3)\(729.31) Hypertrophy of fat pad, knee\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.31''', NULL,
+ '(729.31) Hypertrophy of fat pad, knee', '(729.31) Hypertrophy of fat pad, knee', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Panniculitis, unspecified (729.3)\(729.39) Panniculitis, other site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Panniculitis, unspecified (729.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of soft tissues (729)\Panniculitis, unspecified (729.3)\(729.39) Panniculitis, other site\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''729.39''', NULL,
+ '(729.39) Panniculitis, other site', '(729.39) Panniculitis, other site', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727''', NULL,
+ 'Other disorders of synovium, tendon, and bursa (727)', 'Other disorders of synovium, tendon, and bursa (727)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\(727.1) Bunion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\(727.1) Bunion\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.1''', NULL,
+ '(727.1) Bunion', '(727.1) Bunion', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\(727.2) Specific bursitides often of occupational origin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\(727.2) Specific bursitides often of occupational origin\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.2''', NULL,
+ '(727.2) Specific bursitides often of occupational origin', '(727.2) Specific bursitides often of occupational origin', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\(727.3) Other bursitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\(727.3) Other bursitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.3''', NULL,
+ '(727.3) Other bursitis', '(727.3) Other bursitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\(727.9) Unspecified disorder of synovium, tendon, and bursa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\(727.9) Unspecified disorder of synovium, tendon, and bursa\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.9''', NULL,
+ '(727.9) Unspecified disorder of synovium, tendon, and bursa', '(727.9) Unspecified disorder of synovium, tendon, and bursa', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.4''', NULL,
+ 'Ganglion and cyst of synovium, tendon, and bursa (727.4)', 'Ganglion and cyst of synovium, tendon, and bursa (727.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\(727.40) Synovial cyst, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\(727.40) Synovial cyst, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.40''', NULL,
+ '(727.40) Synovial cyst, unspecified', '(727.40) Synovial cyst, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\(727.41) Ganglion of joint\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\(727.41) Ganglion of joint\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.41''', NULL,
+ '(727.41) Ganglion of joint', '(727.41) Ganglion of joint', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\(727.42) Ganglion of tendon sheath\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\(727.42) Ganglion of tendon sheath\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.42''', NULL,
+ '(727.42) Ganglion of tendon sheath', '(727.42) Ganglion of tendon sheath', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\(727.43) Ganglion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\(727.43) Ganglion, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.43''', NULL,
+ '(727.43) Ganglion, unspecified', '(727.43) Ganglion, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\(727.49) Other ganglion and cyst of synovium, tendon, and bursa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Ganglion and cyst of synovium, tendon, and bursa (727.4)\(727.49) Other ganglion and cyst of synovium, tendon, and bursa\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.49''', NULL,
+ '(727.49) Other ganglion and cyst of synovium, tendon, and bursa', '(727.49) Other ganglion and cyst of synovium, tendon, and bursa', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Other disorders of synovium, tendon, and bursa (727.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Other disorders of synovium, tendon, and bursa (727.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.8''', NULL,
+ 'Other disorders of synovium, tendon, and bursa (727.8)', 'Other disorders of synovium, tendon, and bursa (727.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Other disorders of synovium, tendon, and bursa (727.8)\(727.81) Contracture of tendon (sheath)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Other disorders of synovium, tendon, and bursa (727.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Other disorders of synovium, tendon, and bursa (727.8)\(727.81) Contracture of tendon (sheath)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.81) Contracture of tendon (sheath''', NULL,
+ '(727.81) Contracture of tendon (sheath)', '(727.81) Contracture of tendon (sheath)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Other disorders of synovium, tendon, and bursa (727.8)\(727.82) Calcium deposits in tendon and bursa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Other disorders of synovium, tendon, and bursa (727.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Other disorders of synovium, tendon, and bursa (727.8)\(727.82) Calcium deposits in tendon and bursa\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.82''', NULL,
+ '(727.82) Calcium deposits in tendon and bursa', '(727.82) Calcium deposits in tendon and bursa', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Other disorders of synovium, tendon, and bursa (727.8)\(727.83) Plica syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Other disorders of synovium, tendon, and bursa (727.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Other disorders of synovium, tendon, and bursa (727.8)\(727.83) Plica syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.83''', NULL,
+ '(727.83) Plica syndrome', '(727.83) Plica syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Other disorders of synovium, tendon, and bursa (727.8)\(727.89) Other disorders of synovium, tendon, and bursa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Other disorders of synovium, tendon, and bursa (727.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Other disorders of synovium, tendon, and bursa (727.8)\(727.89) Other disorders of synovium, tendon, and bursa\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.89''', NULL,
+ '(727.89) Other disorders of synovium, tendon, and bursa', '(727.89) Other disorders of synovium, tendon, and bursa', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of synovium (727.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of synovium (727.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.5''', NULL,
+ 'Rupture of synovium (727.5)', 'Rupture of synovium (727.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of synovium (727.5)\(727.50) Rupture of synovium, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of synovium (727.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of synovium (727.5)\(727.50) Rupture of synovium, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.50''', NULL,
+ '(727.50) Rupture of synovium, unspecified', '(727.50) Rupture of synovium, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of synovium (727.5)\(727.51) Synovial cyst of popliteal space\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of synovium (727.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of synovium (727.5)\(727.51) Synovial cyst of popliteal space\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.51''', NULL,
+ '(727.51) Synovial cyst of popliteal space', '(727.51) Synovial cyst of popliteal space', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of synovium (727.5)\(727.59) Other rupture of synovium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of synovium (727.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of synovium (727.5)\(727.59) Other rupture of synovium\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.59''', NULL,
+ '(727.59) Other rupture of synovium', '(727.59) Other rupture of synovium', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.6''', NULL,
+ 'Rupture of tendon, nontraumatic (727.6)', 'Rupture of tendon, nontraumatic (727.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.60) Nontraumatic rupture of unspecified tendon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.60) Nontraumatic rupture of unspecified tendon\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.60''', NULL,
+ '(727.60) Nontraumatic rupture of unspecified tendon', '(727.60) Nontraumatic rupture of unspecified tendon', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.61) Complete rupture of rotator cuff\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.61) Complete rupture of rotator cuff\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.61''', NULL,
+ '(727.61) Complete rupture of rotator cuff', '(727.61) Complete rupture of rotator cuff', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.62) Nontraumatic rupture of tendons of biceps (long head)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.62) Nontraumatic rupture of tendons of biceps (long head)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.62) Nontraumatic rupture of tendons of biceps (long head''', NULL,
+ '(727.62) Nontraumatic rupture of tendons of biceps (long head)', '(727.62) Nontraumatic rupture of tendons of biceps (long head)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.63) Nontraumatic rupture of extensor tendons of hand and wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.63) Nontraumatic rupture of extensor tendons of hand and wrist\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.63''', NULL,
+ '(727.63) Nontraumatic rupture of extensor tendons of hand and wrist', '(727.63) Nontraumatic rupture of extensor tendons of hand and wrist', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.64) Nontraumatic rupture of flexor tendons of hand and wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.64) Nontraumatic rupture of flexor tendons of hand and wrist\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.64''', NULL,
+ '(727.64) Nontraumatic rupture of flexor tendons of hand and wrist', '(727.64) Nontraumatic rupture of flexor tendons of hand and wrist', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.65) Nontraumatic rupture of quadriceps tendon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.65) Nontraumatic rupture of quadriceps tendon\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.65''', NULL,
+ '(727.65) Nontraumatic rupture of quadriceps tendon', '(727.65) Nontraumatic rupture of quadriceps tendon', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.66) Nontraumatic rupture of patellar tendon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.66) Nontraumatic rupture of patellar tendon\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.66''', NULL,
+ '(727.66) Nontraumatic rupture of patellar tendon', '(727.66) Nontraumatic rupture of patellar tendon', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.67) Nontraumatic rupture of achilles tendon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.67) Nontraumatic rupture of achilles tendon\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.67''', NULL,
+ '(727.67) Nontraumatic rupture of achilles tendon', '(727.67) Nontraumatic rupture of achilles tendon', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.68) Nontraumatic rupture of other tendons of foot and ankle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.68) Nontraumatic rupture of other tendons of foot and ankle\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.68''', NULL,
+ '(727.68) Nontraumatic rupture of other tendons of foot and ankle', '(727.68) Nontraumatic rupture of other tendons of foot and ankle', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.69) Nontraumatic rupture of other tendon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Rupture of tendon, nontraumatic (727.6)\(727.69) Nontraumatic rupture of other tendon\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.69''', NULL,
+ '(727.69) Nontraumatic rupture of other tendon', '(727.69) Nontraumatic rupture of other tendon', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.0''', NULL,
+ 'Synovitis and tenosynovitis (727.0)', 'Synovitis and tenosynovitis (727.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.00) Synovitis and tenosynovitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.00) Synovitis and tenosynovitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.00''', NULL,
+ '(727.00) Synovitis and tenosynovitis, unspecified', '(727.00) Synovitis and tenosynovitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.01) Synovitis and tenosynovitis in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.01) Synovitis and tenosynovitis in diseases classified elsewhere\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.01''', NULL,
+ '(727.01) Synovitis and tenosynovitis in diseases classified elsewhere', '(727.01) Synovitis and tenosynovitis in diseases classified elsewhere', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.02) Giant cell tumor of tendon sheath\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.02) Giant cell tumor of tendon sheath\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.02''', NULL,
+ '(727.02) Giant cell tumor of tendon sheath', '(727.02) Giant cell tumor of tendon sheath', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.03) Trigger finger (acquired)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.03) Trigger finger (acquired)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.03) Trigger finger (acquired''', NULL,
+ '(727.03) Trigger finger (acquired)', '(727.03) Trigger finger (acquired)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.04) Radial styloid tenosynovitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.04) Radial styloid tenosynovitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.04''', NULL,
+ '(727.04) Radial styloid tenosynovitis', '(727.04) Radial styloid tenosynovitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.05) Other tenosynovitis of hand and wrist\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.05) Other tenosynovitis of hand and wrist\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.05''', NULL,
+ '(727.05) Other tenosynovitis of hand and wrist', '(727.05) Other tenosynovitis of hand and wrist', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.06) Tenosynovitis of foot and ankle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.06) Tenosynovitis of foot and ankle\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.06''', NULL,
+ '(727.06) Tenosynovitis of foot and ankle', '(727.06) Tenosynovitis of foot and ankle', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.09) Other synovitis and tenosynovitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Other disorders of synovium, tendon, and bursa (727)\Synovitis and tenosynovitis (727.0)\(727.09) Other synovitis and tenosynovitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''727.09''', NULL,
+ '(727.09) Other synovitis and tenosynovitis', '(727.09) Other synovitis and tenosynovitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726''', NULL,
+ 'Peripheral enthesopathies and allied syndromes (726)', 'Peripheral enthesopathies and allied syndromes (726)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\(726.0) Adhesive capsulitis of shoulder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\(726.0) Adhesive capsulitis of shoulder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.0''', NULL,
+ '(726.0) Adhesive capsulitis of shoulder', '(726.0) Adhesive capsulitis of shoulder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\(726.2) Other affections of shoulder region, not elsewhere classified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\(726.2) Other affections of shoulder region, not elsewhere classified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.2''', NULL,
+ '(726.2) Other affections of shoulder region, not elsewhere classified', '(726.2) Other affections of shoulder region, not elsewhere classified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\(726.4) Enthesopathy of wrist and carpus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\(726.4) Enthesopathy of wrist and carpus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.4''', NULL,
+ '(726.4) Enthesopathy of wrist and carpus', '(726.4) Enthesopathy of wrist and carpus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\(726.5) Enthesopathy of hip region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\(726.5) Enthesopathy of hip region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.5''', NULL,
+ '(726.5) Enthesopathy of hip region', '(726.5) Enthesopathy of hip region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\(726.8) Other peripheral enthesopathies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\(726.8) Other peripheral enthesopathies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.8''', NULL,
+ '(726.8) Other peripheral enthesopathies', '(726.8) Other peripheral enthesopathies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.7''', NULL,
+ 'Enthesopathy of ankle and tarsus (726.7)', 'Enthesopathy of ankle and tarsus (726.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\(726.70) Enthesopathy of ankle and tarsus, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\(726.70) Enthesopathy of ankle and tarsus, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.70''', NULL,
+ '(726.70) Enthesopathy of ankle and tarsus, unspecified', '(726.70) Enthesopathy of ankle and tarsus, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\(726.71) Achilles bursitis or tendinitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\(726.71) Achilles bursitis or tendinitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.71''', NULL,
+ '(726.71) Achilles bursitis or tendinitis', '(726.71) Achilles bursitis or tendinitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\(726.72) Tibialis tendinitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\(726.72) Tibialis tendinitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.72''', NULL,
+ '(726.72) Tibialis tendinitis', '(726.72) Tibialis tendinitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\(726.73) Calcaneal spur\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\(726.73) Calcaneal spur\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.73''', NULL,
+ '(726.73) Calcaneal spur', '(726.73) Calcaneal spur', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\(726.79) Other enthesopathy of ankle and tarsus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of ankle and tarsus (726.7)\(726.79) Other enthesopathy of ankle and tarsus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.79''', NULL,
+ '(726.79) Other enthesopathy of ankle and tarsus', '(726.79) Other enthesopathy of ankle and tarsus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.3''', NULL,
+ 'Enthesopathy of elbow region (726.3)', 'Enthesopathy of elbow region (726.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\(726.30) Enthesopathy of elbow, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\(726.30) Enthesopathy of elbow, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.30''', NULL,
+ '(726.30) Enthesopathy of elbow, unspecified', '(726.30) Enthesopathy of elbow, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\(726.31) Medial epicondylitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\(726.31) Medial epicondylitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.31''', NULL,
+ '(726.31) Medial epicondylitis', '(726.31) Medial epicondylitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\(726.32) Lateral epicondylitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\(726.32) Lateral epicondylitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.32''', NULL,
+ '(726.32) Lateral epicondylitis', '(726.32) Lateral epicondylitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\(726.33) Olecranon bursitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\(726.33) Olecranon bursitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.33''', NULL,
+ '(726.33) Olecranon bursitis', '(726.33) Olecranon bursitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\(726.39) Other enthesopathy of elbow region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of elbow region (726.3)\(726.39) Other enthesopathy of elbow region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.39''', NULL,
+ '(726.39) Other enthesopathy of elbow region', '(726.39) Other enthesopathy of elbow region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.6''', NULL,
+ 'Enthesopathy of knee (726.6)', 'Enthesopathy of knee (726.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\(726.60) Enthesopathy of knee, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\(726.60) Enthesopathy of knee, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.60''', NULL,
+ '(726.60) Enthesopathy of knee, unspecified', '(726.60) Enthesopathy of knee, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\(726.61) Pes anserinus tendinitis or bursitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\(726.61) Pes anserinus tendinitis or bursitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.61''', NULL,
+ '(726.61) Pes anserinus tendinitis or bursitis', '(726.61) Pes anserinus tendinitis or bursitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\(726.62) Tibial collateral ligament bursitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\(726.62) Tibial collateral ligament bursitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.62''', NULL,
+ '(726.62) Tibial collateral ligament bursitis', '(726.62) Tibial collateral ligament bursitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\(726.63) Fibular collateral ligament bursitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\(726.63) Fibular collateral ligament bursitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.63''', NULL,
+ '(726.63) Fibular collateral ligament bursitis', '(726.63) Fibular collateral ligament bursitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\(726.64) Patellar tendinitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\(726.64) Patellar tendinitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.64''', NULL,
+ '(726.64) Patellar tendinitis', '(726.64) Patellar tendinitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\(726.65) Prepatellar bursitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\(726.65) Prepatellar bursitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.65''', NULL,
+ '(726.65) Prepatellar bursitis', '(726.65) Prepatellar bursitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\(726.69) Other enthesopathy of knee\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Enthesopathy of knee (726.6)\(726.69) Other enthesopathy of knee\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.69''', NULL,
+ '(726.69) Other enthesopathy of knee', '(726.69) Other enthesopathy of knee', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.1''', NULL,
+ 'Rotator cuff syndrome of shoulder and allied disorders (726.1)', 'Rotator cuff syndrome of shoulder and allied disorders (726.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\(726.10) Disorders of bursae and tendons in shoulder region, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\(726.10) Disorders of bursae and tendons in shoulder region, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.10''', NULL,
+ '(726.10) Disorders of bursae and tendons in shoulder region, unspecified', '(726.10) Disorders of bursae and tendons in shoulder region, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\(726.11) Calcifying tendinitis of shoulder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\(726.11) Calcifying tendinitis of shoulder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.11''', NULL,
+ '(726.11) Calcifying tendinitis of shoulder', '(726.11) Calcifying tendinitis of shoulder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\(726.12) Bicipital tenosynovitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\(726.12) Bicipital tenosynovitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.12''', NULL,
+ '(726.12) Bicipital tenosynovitis', '(726.12) Bicipital tenosynovitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\(726.13) Partial tear of rotator cuff\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\(726.13) Partial tear of rotator cuff\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.13''', NULL,
+ '(726.13) Partial tear of rotator cuff', '(726.13) Partial tear of rotator cuff', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\(726.19) Other specified disorders of bursae and tendons in shoulder region\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Rotator cuff syndrome of shoulder and allied disorders (726.1)\(726.19) Other specified disorders of bursae and tendons in shoulder region\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.19''', NULL,
+ '(726.19) Other specified disorders of bursae and tendons in shoulder region', '(726.19) Other specified disorders of bursae and tendons in shoulder region', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Unspecified enthesopathy (726.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Unspecified enthesopathy (726.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.9''', NULL,
+ 'Unspecified enthesopathy (726.9)', 'Unspecified enthesopathy (726.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Unspecified enthesopathy (726.9)\(726.90) Enthesopathy of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Unspecified enthesopathy (726.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Unspecified enthesopathy (726.9)\(726.90) Enthesopathy of unspecified site\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.90''', NULL,
+ '(726.90) Enthesopathy of unspecified site', '(726.90) Enthesopathy of unspecified site', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Unspecified enthesopathy (726.9)\(726.91) Exostosis of unspecified site\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Unspecified enthesopathy (726.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the musculoskeletal system and connective tissue (710-739.99)\Rheumatism, excluding the back (725-729.99)\Peripheral enthesopathies and allied syndromes (726)\Unspecified enthesopathy (726.9)\(726.91) Exostosis of unspecified site\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''726.91''', NULL,
+ '(726.91) Exostosis of unspecified site', '(726.91) Exostosis of unspecified site', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''320'' AND ''389.99''', NULL,
+ 'Diseases of the nervous system and sense organs (320-389.99)', 'Diseases of the nervous system and sense organs (320-389.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''380'' AND ''389.99''', NULL,
+ 'Diseases of the ear and mastoid process (380-389.99)', 'Diseases of the ear and mastoid process (380-389.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380''', NULL,
+ 'Disorders of external ear (380)', 'Disorders of external ear (380)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\(380.4) Impacted cerumen\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\(380.4) Impacted cerumen\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.4''', NULL,
+ '(380.4) Impacted cerumen', '(380.4) Impacted cerumen', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\(380.9) Unspecified disorder of external ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\(380.9) Unspecified disorder of external ear\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.9''', NULL,
+ '(380.9) Unspecified disorder of external ear', '(380.9) Unspecified disorder of external ear', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Acquired stenosis of external ear canal (380.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Acquired stenosis of external ear canal (380.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.5''', NULL,
+ 'Acquired stenosis of external ear canal (380.5)', 'Acquired stenosis of external ear canal (380.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Acquired stenosis of external ear canal (380.5)\(380.50) Acquired stenosis of external ear canal, unspecified as to cause\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Acquired stenosis of external ear canal (380.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Acquired stenosis of external ear canal (380.5)\(380.50) Acquired stenosis of external ear canal, unspecified as to cause\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.50''', NULL,
+ '(380.50) Acquired stenosis of external ear canal, unspecified as to cause', '(380.50) Acquired stenosis of external ear canal, unspecified as to cause', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Acquired stenosis of external ear canal (380.5)\(380.51) Acquired stenosis of external ear canal secondary to trauma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Acquired stenosis of external ear canal (380.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Acquired stenosis of external ear canal (380.5)\(380.51) Acquired stenosis of external ear canal secondary to trauma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.51''', NULL,
+ '(380.51) Acquired stenosis of external ear canal secondary to trauma', '(380.51) Acquired stenosis of external ear canal secondary to trauma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Acquired stenosis of external ear canal (380.5)\(380.52) Acquired stenosis of external ear canal secondary to surgery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Acquired stenosis of external ear canal (380.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Acquired stenosis of external ear canal (380.5)\(380.52) Acquired stenosis of external ear canal secondary to surgery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.52''', NULL,
+ '(380.52) Acquired stenosis of external ear canal secondary to surgery', '(380.52) Acquired stenosis of external ear canal secondary to surgery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Acquired stenosis of external ear canal (380.5)\(380.53) Acquired stenosis of external ear canal secondary to inflammation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Acquired stenosis of external ear canal (380.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Acquired stenosis of external ear canal (380.5)\(380.53) Acquired stenosis of external ear canal secondary to inflammation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.53''', NULL,
+ '(380.53) Acquired stenosis of external ear canal secondary to inflammation', '(380.53) Acquired stenosis of external ear canal secondary to inflammation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.1''', NULL,
+ 'Infective otitis externa (380.1)', 'Infective otitis externa (380.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\(380.10) Infective otitis externa, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\(380.10) Infective otitis externa, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.10''', NULL,
+ '(380.10) Infective otitis externa, unspecified', '(380.10) Infective otitis externa, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\(380.11) Acute infection of pinna\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\(380.11) Acute infection of pinna\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.11''', NULL,
+ '(380.11) Acute infection of pinna', '(380.11) Acute infection of pinna', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\(380.12) Acute swimmers'' ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\(380.12) Acute swimmers'' ear\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.12''', NULL,
+ '(380.12) Acute swimmers'' ear', '(380.12) Acute swimmers'' ear', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\(380.13) Other acute infections of external ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\(380.13) Other acute infections of external ear\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.13''', NULL,
+ '(380.13) Other acute infections of external ear', '(380.13) Other acute infections of external ear', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\(380.14) Malignant otitis externa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\(380.14) Malignant otitis externa\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.14''', NULL,
+ '(380.14) Malignant otitis externa', '(380.14) Malignant otitis externa', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\(380.15) Chronic mycotic otitis externa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\(380.15) Chronic mycotic otitis externa\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.15''', NULL,
+ '(380.15) Chronic mycotic otitis externa', '(380.15) Chronic mycotic otitis externa', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\(380.16) Other chronic infective otitis externa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Infective otitis externa (380.1)\(380.16) Other chronic infective otitis externa\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.16''', NULL,
+ '(380.16) Other chronic infective otitis externa', '(380.16) Other chronic infective otitis externa', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Noninfectious disorders of pinna (380.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Noninfectious disorders of pinna (380.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.3''', NULL,
+ 'Noninfectious disorders of pinna (380.3)', 'Noninfectious disorders of pinna (380.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Noninfectious disorders of pinna (380.3)\(380.30) Disorder of pinna, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Noninfectious disorders of pinna (380.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Noninfectious disorders of pinna (380.3)\(380.30) Disorder of pinna, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.30''', NULL,
+ '(380.30) Disorder of pinna, unspecified', '(380.30) Disorder of pinna, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Noninfectious disorders of pinna (380.3)\(380.31) Hematoma of auricle or pinna\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Noninfectious disorders of pinna (380.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Noninfectious disorders of pinna (380.3)\(380.31) Hematoma of auricle or pinna\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.31''', NULL,
+ '(380.31) Hematoma of auricle or pinna', '(380.31) Hematoma of auricle or pinna', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Noninfectious disorders of pinna (380.3)\(380.32) Acquired deformities of auricle or pinna\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Noninfectious disorders of pinna (380.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Noninfectious disorders of pinna (380.3)\(380.32) Acquired deformities of auricle or pinna\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.32''', NULL,
+ '(380.32) Acquired deformities of auricle or pinna', '(380.32) Acquired deformities of auricle or pinna', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Noninfectious disorders of pinna (380.3)\(380.39) Other noninfectious disorders of pinna\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Noninfectious disorders of pinna (380.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Noninfectious disorders of pinna (380.3)\(380.39) Other noninfectious disorders of pinna\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.39''', NULL,
+ '(380.39) Other noninfectious disorders of pinna', '(380.39) Other noninfectious disorders of pinna', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other disorders of external ear (380.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other disorders of external ear (380.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.8''', NULL,
+ 'Other disorders of external ear (380.8)', 'Other disorders of external ear (380.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other disorders of external ear (380.8)\(380.81) Exostosis of external ear canal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other disorders of external ear (380.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other disorders of external ear (380.8)\(380.81) Exostosis of external ear canal\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.81''', NULL,
+ '(380.81) Exostosis of external ear canal', '(380.81) Exostosis of external ear canal', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other disorders of external ear (380.8)\(380.89) Other disorders of external ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other disorders of external ear (380.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other disorders of external ear (380.8)\(380.89) Other disorders of external ear\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.89''', NULL,
+ '(380.89) Other disorders of external ear', '(380.89) Other disorders of external ear', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other otitis externa (380.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other otitis externa (380.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.2''', NULL,
+ 'Other otitis externa (380.2)', 'Other otitis externa (380.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other otitis externa (380.2)\(380.21) Cholesteatoma of external ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other otitis externa (380.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other otitis externa (380.2)\(380.21) Cholesteatoma of external ear\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.21''', NULL,
+ '(380.21) Cholesteatoma of external ear', '(380.21) Cholesteatoma of external ear', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other otitis externa (380.2)\(380.22) Other acute otitis externa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other otitis externa (380.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other otitis externa (380.2)\(380.22) Other acute otitis externa\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.22''', NULL,
+ '(380.22) Other acute otitis externa', '(380.22) Other acute otitis externa', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other otitis externa (380.2)\(380.23) Other chronic otitis externa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other otitis externa (380.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Other otitis externa (380.2)\(380.23) Other chronic otitis externa\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.23''', NULL,
+ '(380.23) Other chronic otitis externa', '(380.23) Other chronic otitis externa', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Perichondritis and chondritis of pinna (380.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Perichondritis and chondritis of pinna (380.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.0''', NULL,
+ 'Perichondritis and chondritis of pinna (380.0)', 'Perichondritis and chondritis of pinna (380.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Perichondritis and chondritis of pinna (380.0)\(380.00) Perichondritis of pinna, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Perichondritis and chondritis of pinna (380.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Perichondritis and chondritis of pinna (380.0)\(380.00) Perichondritis of pinna, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.00''', NULL,
+ '(380.00) Perichondritis of pinna, unspecified', '(380.00) Perichondritis of pinna, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Perichondritis and chondritis of pinna (380.0)\(380.01) Acute perichondritis of pinna\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Perichondritis and chondritis of pinna (380.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Perichondritis and chondritis of pinna (380.0)\(380.01) Acute perichondritis of pinna\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.01''', NULL,
+ '(380.01) Acute perichondritis of pinna', '(380.01) Acute perichondritis of pinna', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Perichondritis and chondritis of pinna (380.0)\(380.02) Chronic perichondritis of pinna\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Perichondritis and chondritis of pinna (380.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Perichondritis and chondritis of pinna (380.0)\(380.02) Chronic perichondritis of pinna\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.02''', NULL,
+ '(380.02) Chronic perichondritis of pinna', '(380.02) Chronic perichondritis of pinna', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Perichondritis and chondritis of pinna (380.0)\(380.03) Chondritis of pinna\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Perichondritis and chondritis of pinna (380.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Disorders of external ear (380)\Perichondritis and chondritis of pinna (380.0)\(380.03) Chondritis of pinna\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''380.03''', NULL,
+ '(380.03) Chondritis of pinna', '(380.03) Chondritis of pinna', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389''', NULL,
+ 'Hearing loss (389)', 'Hearing loss (389)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\(389.7) Deaf, nonspeaking, not elsewhere classifiable\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\(389.7) Deaf, nonspeaking, not elsewhere classifiable\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.7''', NULL,
+ '(389.7) Deaf, nonspeaking, not elsewhere classifiable', '(389.7) Deaf, nonspeaking, not elsewhere classifiable', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\(389.8) Other specified forms of hearing loss\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\(389.8) Other specified forms of hearing loss\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.8''', NULL,
+ '(389.8) Other specified forms of hearing loss', '(389.8) Other specified forms of hearing loss', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\(389.9) Unspecified hearing loss\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\(389.9) Unspecified hearing loss\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.9''', NULL,
+ '(389.9) Unspecified hearing loss', '(389.9) Unspecified hearing loss', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.0''', NULL,
+ 'Conductive hearing loss (389.0)', 'Conductive hearing loss (389.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.00) Conductive hearing loss, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.00) Conductive hearing loss, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.00''', NULL,
+ '(389.00) Conductive hearing loss, unspecified', '(389.00) Conductive hearing loss, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.01) Conductive hearing loss, external ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.01) Conductive hearing loss, external ear\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.01''', NULL,
+ '(389.01) Conductive hearing loss, external ear', '(389.01) Conductive hearing loss, external ear', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.02) Conductive hearing loss, tympanic membrane\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.02) Conductive hearing loss, tympanic membrane\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.02''', NULL,
+ '(389.02) Conductive hearing loss, tympanic membrane', '(389.02) Conductive hearing loss, tympanic membrane', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.03) Conductive hearing loss, middle ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.03) Conductive hearing loss, middle ear\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.03''', NULL,
+ '(389.03) Conductive hearing loss, middle ear', '(389.03) Conductive hearing loss, middle ear', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.04) Conductive hearing loss, inner ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.04) Conductive hearing loss, inner ear\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.04''', NULL,
+ '(389.04) Conductive hearing loss, inner ear', '(389.04) Conductive hearing loss, inner ear', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.05) Conductive hearing loss, unilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.05) Conductive hearing loss, unilateral\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.05''', NULL,
+ '(389.05) Conductive hearing loss, unilateral', '(389.05) Conductive hearing loss, unilateral', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.06) Conductive hearing loss, bilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.06) Conductive hearing loss, bilateral\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.06''', NULL,
+ '(389.06) Conductive hearing loss, bilateral', '(389.06) Conductive hearing loss, bilateral', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.08) Conductive hearing loss of combined types\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Conductive hearing loss (389.0)\(389.08) Conductive hearing loss of combined types\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.08''', NULL,
+ '(389.08) Conductive hearing loss of combined types', '(389.08) Conductive hearing loss of combined types', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Mixed conductive and sensorineural hearing loss (389.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Mixed conductive and sensorineural hearing loss (389.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.2''', NULL,
+ 'Mixed conductive and sensorineural hearing loss (389.2)', 'Mixed conductive and sensorineural hearing loss (389.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Mixed conductive and sensorineural hearing loss (389.2)\(389.20) Mixed hearing loss, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Mixed conductive and sensorineural hearing loss (389.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Mixed conductive and sensorineural hearing loss (389.2)\(389.20) Mixed hearing loss, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.20''', NULL,
+ '(389.20) Mixed hearing loss, unspecified', '(389.20) Mixed hearing loss, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Mixed conductive and sensorineural hearing loss (389.2)\(389.21) Mixed hearing loss, unilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Mixed conductive and sensorineural hearing loss (389.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Mixed conductive and sensorineural hearing loss (389.2)\(389.21) Mixed hearing loss, unilateral\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.21''', NULL,
+ '(389.21) Mixed hearing loss, unilateral', '(389.21) Mixed hearing loss, unilateral', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Mixed conductive and sensorineural hearing loss (389.2)\(389.22) Mixed hearing loss, bilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Mixed conductive and sensorineural hearing loss (389.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Mixed conductive and sensorineural hearing loss (389.2)\(389.22) Mixed hearing loss, bilateral\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.22''', NULL,
+ '(389.22) Mixed hearing loss, bilateral', '(389.22) Mixed hearing loss, bilateral', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.1''', NULL,
+ 'Sensorineural hearing loss (389.1)', 'Sensorineural hearing loss (389.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.10) Sensorineural hearing loss, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.10) Sensorineural hearing loss, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.10''', NULL,
+ '(389.10) Sensorineural hearing loss, unspecified', '(389.10) Sensorineural hearing loss, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.11) Sensory hearing loss, bilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.11) Sensory hearing loss, bilateral\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.11''', NULL,
+ '(389.11) Sensory hearing loss, bilateral', '(389.11) Sensory hearing loss, bilateral', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.12) Neural hearing loss, bilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.12) Neural hearing loss, bilateral\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.12''', NULL,
+ '(389.12) Neural hearing loss, bilateral', '(389.12) Neural hearing loss, bilateral', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.13) Neural hearing loss, unilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.13) Neural hearing loss, unilateral\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.13''', NULL,
+ '(389.13) Neural hearing loss, unilateral', '(389.13) Neural hearing loss, unilateral', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.14) Central hearing loss\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.14) Central hearing loss\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.14''', NULL,
+ '(389.14) Central hearing loss', '(389.14) Central hearing loss', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.15) Sensorineural hearing loss, unilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.15) Sensorineural hearing loss, unilateral\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.15''', NULL,
+ '(389.15) Sensorineural hearing loss, unilateral', '(389.15) Sensorineural hearing loss, unilateral', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.16) Sensorineural hearing loss, asymmetrical\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.16) Sensorineural hearing loss, asymmetrical\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.16''', NULL,
+ '(389.16) Sensorineural hearing loss, asymmetrical', '(389.16) Sensorineural hearing loss, asymmetrical', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.17) Sensory hearing loss, unilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.17) Sensory hearing loss, unilateral\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.17''', NULL,
+ '(389.17) Sensory hearing loss, unilateral', '(389.17) Sensory hearing loss, unilateral', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.18) Sensorineural hearing loss, bilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Hearing loss (389)\Sensorineural hearing loss (389.1)\(389.18) Sensorineural hearing loss, bilateral\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''389.18''', NULL,
+ '(389.18) Sensorineural hearing loss, bilateral', '(389.18) Sensorineural hearing loss, bilateral', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383''', NULL,
+ 'Mastoiditis and related conditions (383)', 'Mastoiditis and related conditions (383)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\(383.1) Chronic mastoiditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\(383.1) Chronic mastoiditis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.1''', NULL,
+ '(383.1) Chronic mastoiditis', '(383.1) Chronic mastoiditis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\(383.9) Unspecified mastoiditis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\(383.9) Unspecified mastoiditis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.9''', NULL,
+ '(383.9) Unspecified mastoiditis', '(383.9) Unspecified mastoiditis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Acute mastoiditis (383.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Acute mastoiditis (383.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.0''', NULL,
+ 'Acute mastoiditis (383.0)', 'Acute mastoiditis (383.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Acute mastoiditis (383.0)\(383.00) Acute mastoiditis without complications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Acute mastoiditis (383.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Acute mastoiditis (383.0)\(383.00) Acute mastoiditis without complications\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.00''', NULL,
+ '(383.00) Acute mastoiditis without complications', '(383.00) Acute mastoiditis without complications', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Acute mastoiditis (383.0)\(383.01) Subperiosteal abscess of mastoid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Acute mastoiditis (383.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Acute mastoiditis (383.0)\(383.01) Subperiosteal abscess of mastoid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.01''', NULL,
+ '(383.01) Subperiosteal abscess of mastoid', '(383.01) Subperiosteal abscess of mastoid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Acute mastoiditis (383.0)\(383.02) Acute mastoiditis with other complications\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Acute mastoiditis (383.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Acute mastoiditis (383.0)\(383.02) Acute mastoiditis with other complications\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.02''', NULL,
+ '(383.02) Acute mastoiditis with other complications', '(383.02) Acute mastoiditis with other complications', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Complications following mastoidectomy (383.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Complications following mastoidectomy (383.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.3''', NULL,
+ 'Complications following mastoidectomy (383.3)', 'Complications following mastoidectomy (383.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Complications following mastoidectomy (383.3)\(383.30) Postmastoidectomy complication, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Complications following mastoidectomy (383.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Complications following mastoidectomy (383.3)\(383.30) Postmastoidectomy complication, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.30''', NULL,
+ '(383.30) Postmastoidectomy complication, unspecified', '(383.30) Postmastoidectomy complication, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Complications following mastoidectomy (383.3)\(383.31) Mucosal cyst of postmastoidectomy cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Complications following mastoidectomy (383.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Complications following mastoidectomy (383.3)\(383.31) Mucosal cyst of postmastoidectomy cavity\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.31''', NULL,
+ '(383.31) Mucosal cyst of postmastoidectomy cavity', '(383.31) Mucosal cyst of postmastoidectomy cavity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Complications following mastoidectomy (383.3)\(383.32) Recurrent cholesteatoma of postmastoidectomy cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Complications following mastoidectomy (383.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Complications following mastoidectomy (383.3)\(383.32) Recurrent cholesteatoma of postmastoidectomy cavity\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.32''', NULL,
+ '(383.32) Recurrent cholesteatoma of postmastoidectomy cavity', '(383.32) Recurrent cholesteatoma of postmastoidectomy cavity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Complications following mastoidectomy (383.3)\(383.33) Granulations of postmastoidectomy cavity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Complications following mastoidectomy (383.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Complications following mastoidectomy (383.3)\(383.33) Granulations of postmastoidectomy cavity\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.33''', NULL,
+ '(383.33) Granulations of postmastoidectomy cavity', '(383.33) Granulations of postmastoidectomy cavity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Other disorders of mastoid (383.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Other disorders of mastoid (383.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.8''', NULL,
+ 'Other disorders of mastoid (383.8)', 'Other disorders of mastoid (383.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Other disorders of mastoid (383.8)\(383.81) Postauricular fistula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Other disorders of mastoid (383.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Other disorders of mastoid (383.8)\(383.81) Postauricular fistula\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.81''', NULL,
+ '(383.81) Postauricular fistula', '(383.81) Postauricular fistula', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Other disorders of mastoid (383.8)\(383.89) Other disorders of mastoid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Other disorders of mastoid (383.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Other disorders of mastoid (383.8)\(383.89) Other disorders of mastoid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.89''', NULL,
+ '(383.89) Other disorders of mastoid', '(383.89) Other disorders of mastoid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Petrositis (383.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Petrositis (383.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.2''', NULL,
+ 'Petrositis (383.2)', 'Petrositis (383.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Petrositis (383.2)\(383.20) Petrositis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Petrositis (383.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Petrositis (383.2)\(383.20) Petrositis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.20''', NULL,
+ '(383.20) Petrositis, unspecified', '(383.20) Petrositis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Petrositis (383.2)\(383.21) Acute petrositis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Petrositis (383.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Petrositis (383.2)\(383.21) Acute petrositis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.21''', NULL,
+ '(383.21) Acute petrositis', '(383.21) Acute petrositis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Petrositis (383.2)\(383.22) Chronic petrositis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Petrositis (383.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Mastoiditis and related conditions (383)\Petrositis (383.2)\(383.22) Chronic petrositis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''383.22''', NULL,
+ '(383.22) Chronic petrositis', '(383.22) Chronic petrositis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381''', NULL,
+ 'Nonsuppurative otitis media and Eustachian tube disorders (381)', 'Nonsuppurative otitis media and Eustachian tube disorders (381)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\(381.3) Other and unspecified chronic nonsuppurative otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\(381.3) Other and unspecified chronic nonsuppurative otitis media\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.3''', NULL,
+ '(381.3) Other and unspecified chronic nonsuppurative otitis media', '(381.3) Other and unspecified chronic nonsuppurative otitis media', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\(381.4) Nonsuppurative otitis media, not specified as acute or chronic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\(381.4) Nonsuppurative otitis media, not specified as acute or chronic\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.4''', NULL,
+ '(381.4) Nonsuppurative otitis media, not specified as acute or chronic', '(381.4) Nonsuppurative otitis media, not specified as acute or chronic', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\(381.7) Patulous Eustachian tube\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\(381.7) Patulous Eustachian tube\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.7''', NULL,
+ '(381.7) Patulous Eustachian tube', '(381.7) Patulous Eustachian tube', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\(381.9) Unspecified Eustachian tube disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\(381.9) Unspecified Eustachian tube disorder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.9''', NULL,
+ '(381.9) Unspecified Eustachian tube disorder', '(381.9) Unspecified Eustachian tube disorder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.0''', NULL,
+ 'Acute nonsuppurative otitis media (381.0)', 'Acute nonsuppurative otitis media (381.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\(381.00) Acute nonsuppurative otitis media, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\(381.00) Acute nonsuppurative otitis media, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.00''', NULL,
+ '(381.00) Acute nonsuppurative otitis media, unspecified', '(381.00) Acute nonsuppurative otitis media, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\(381.01) Acute serous otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\(381.01) Acute serous otitis media\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.01''', NULL,
+ '(381.01) Acute serous otitis media', '(381.01) Acute serous otitis media', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\(381.02) Acute mucoid otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\(381.02) Acute mucoid otitis media\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.02''', NULL,
+ '(381.02) Acute mucoid otitis media', '(381.02) Acute mucoid otitis media', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\(381.03) Acute sanguinous otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\(381.03) Acute sanguinous otitis media\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.03''', NULL,
+ '(381.03) Acute sanguinous otitis media', '(381.03) Acute sanguinous otitis media', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\(381.04) Acute allergic serous otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\(381.04) Acute allergic serous otitis media\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.04''', NULL,
+ '(381.04) Acute allergic serous otitis media', '(381.04) Acute allergic serous otitis media', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\(381.05) Acute allergic mucoid otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\(381.05) Acute allergic mucoid otitis media\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.05''', NULL,
+ '(381.05) Acute allergic mucoid otitis media', '(381.05) Acute allergic mucoid otitis media', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\(381.06) Acute allergic sanguinous otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Acute nonsuppurative otitis media (381.0)\(381.06) Acute allergic sanguinous otitis media\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.06''', NULL,
+ '(381.06) Acute allergic sanguinous otitis media', '(381.06) Acute allergic sanguinous otitis media', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic mucoid otitis media (381.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic mucoid otitis media (381.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.2''', NULL,
+ 'Chronic mucoid otitis media (381.2)', 'Chronic mucoid otitis media (381.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic mucoid otitis media (381.2)\(381.20) Chronic mucoid otitis media, simple or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic mucoid otitis media (381.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic mucoid otitis media (381.2)\(381.20) Chronic mucoid otitis media, simple or unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.20''', NULL,
+ '(381.20) Chronic mucoid otitis media, simple or unspecified', '(381.20) Chronic mucoid otitis media, simple or unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic mucoid otitis media (381.2)\(381.29) Other chronic mucoid otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic mucoid otitis media (381.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic mucoid otitis media (381.2)\(381.29) Other chronic mucoid otitis media\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.29''', NULL,
+ '(381.29) Other chronic mucoid otitis media', '(381.29) Other chronic mucoid otitis media', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic serous otitis media (381.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic serous otitis media (381.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.1''', NULL,
+ 'Chronic serous otitis media (381.1)', 'Chronic serous otitis media (381.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic serous otitis media (381.1)\(381.10) Chronic serous otitis media, simple or unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic serous otitis media (381.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic serous otitis media (381.1)\(381.10) Chronic serous otitis media, simple or unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.10''', NULL,
+ '(381.10) Chronic serous otitis media, simple or unspecified', '(381.10) Chronic serous otitis media, simple or unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic serous otitis media (381.1)\(381.19) Other chronic serous otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic serous otitis media (381.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Chronic serous otitis media (381.1)\(381.19) Other chronic serous otitis media\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.19''', NULL,
+ '(381.19) Other chronic serous otitis media', '(381.19) Other chronic serous otitis media', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Eustachian salpingitis (381.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Eustachian salpingitis (381.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.5''', NULL,
+ 'Eustachian salpingitis (381.5)', 'Eustachian salpingitis (381.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Eustachian salpingitis (381.5)\(381.50) Eustachian salpingitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Eustachian salpingitis (381.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Eustachian salpingitis (381.5)\(381.50) Eustachian salpingitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.50''', NULL,
+ '(381.50) Eustachian salpingitis, unspecified', '(381.50) Eustachian salpingitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Eustachian salpingitis (381.5)\(381.51) Acute Eustachian salpingitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Eustachian salpingitis (381.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Eustachian salpingitis (381.5)\(381.51) Acute Eustachian salpingitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.51''', NULL,
+ '(381.51) Acute Eustachian salpingitis', '(381.51) Acute Eustachian salpingitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Eustachian salpingitis (381.5)\(381.52) Chronic Eustachian salpingitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Eustachian salpingitis (381.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Eustachian salpingitis (381.5)\(381.52) Chronic Eustachian salpingitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.52''', NULL,
+ '(381.52) Chronic Eustachian salpingitis', '(381.52) Chronic Eustachian salpingitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Obstruction of Eustachian tube (381.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Obstruction of Eustachian tube (381.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.6''', NULL,
+ 'Obstruction of Eustachian tube (381.6)', 'Obstruction of Eustachian tube (381.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Obstruction of Eustachian tube (381.6)\(381.60) Obstruction of Eustachian tube, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Obstruction of Eustachian tube (381.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Obstruction of Eustachian tube (381.6)\(381.60) Obstruction of Eustachian tube, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.60''', NULL,
+ '(381.60) Obstruction of Eustachian tube, unspecified', '(381.60) Obstruction of Eustachian tube, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Obstruction of Eustachian tube (381.6)\(381.61) Osseous obstruction of Eustachian tube\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Obstruction of Eustachian tube (381.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Obstruction of Eustachian tube (381.6)\(381.61) Osseous obstruction of Eustachian tube\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.61''', NULL,
+ '(381.61) Osseous obstruction of Eustachian tube', '(381.61) Osseous obstruction of Eustachian tube', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Obstruction of Eustachian tube (381.6)\(381.62) Intrinsic cartilagenous obstruction of Eustachian tube\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Obstruction of Eustachian tube (381.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Obstruction of Eustachian tube (381.6)\(381.62) Intrinsic cartilagenous obstruction of Eustachian tube\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.62''', NULL,
+ '(381.62) Intrinsic cartilagenous obstruction of Eustachian tube', '(381.62) Intrinsic cartilagenous obstruction of Eustachian tube', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Obstruction of Eustachian tube (381.6)\(381.63) Extrinsic cartilagenous obstruction of Eustachian tube\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Obstruction of Eustachian tube (381.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Obstruction of Eustachian tube (381.6)\(381.63) Extrinsic cartilagenous obstruction of Eustachian tube\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.63''', NULL,
+ '(381.63) Extrinsic cartilagenous obstruction of Eustachian tube', '(381.63) Extrinsic cartilagenous obstruction of Eustachian tube', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Other disorders of Eustachian tube (381.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Other disorders of Eustachian tube (381.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.8''', NULL,
+ 'Other disorders of Eustachian tube (381.8)', 'Other disorders of Eustachian tube (381.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Other disorders of Eustachian tube (381.8)\(381.81) Dysfunction of Eustachian tube\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Other disorders of Eustachian tube (381.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Other disorders of Eustachian tube (381.8)\(381.81) Dysfunction of Eustachian tube\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.81''', NULL,
+ '(381.81) Dysfunction of Eustachian tube', '(381.81) Dysfunction of Eustachian tube', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Other disorders of Eustachian tube (381.8)\(381.89) Other disorders of Eustachian tube\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Other disorders of Eustachian tube (381.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Nonsuppurative otitis media and Eustachian tube disorders (381)\Other disorders of Eustachian tube (381.8)\(381.89) Other disorders of Eustachian tube\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''381.89''', NULL,
+ '(381.89) Other disorders of Eustachian tube', '(381.89) Other disorders of Eustachian tube', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388''', NULL,
+ 'Other disorders of ear (388)', 'Other disorders of ear (388)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\(388.2) Sudden hearing loss, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\(388.2) Sudden hearing loss, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.2''', NULL,
+ '(388.2) Sudden hearing loss, unspecified', '(388.2) Sudden hearing loss, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\(388.5) Disorders of acoustic nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\(388.5) Disorders of acoustic nerve\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.5''', NULL,
+ '(388.5) Disorders of acoustic nerve', '(388.5) Disorders of acoustic nerve', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\(388.8) Other disorders of ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\(388.8) Other disorders of ear\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.8''', NULL,
+ '(388.8) Other disorders of ear', '(388.8) Other disorders of ear', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\(388.9) Unspecified disorder of ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\(388.9) Unspecified disorder of ear\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.9''', NULL,
+ '(388.9) Unspecified disorder of ear', '(388.9) Unspecified disorder of ear', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Degenerative and vascular disorders of ear (388.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Degenerative and vascular disorders of ear (388.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.0''', NULL,
+ 'Degenerative and vascular disorders of ear (388.0)', 'Degenerative and vascular disorders of ear (388.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Degenerative and vascular disorders of ear (388.0)\(388.00) Degenerative and vascular disorders, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Degenerative and vascular disorders of ear (388.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Degenerative and vascular disorders of ear (388.0)\(388.00) Degenerative and vascular disorders, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.00''', NULL,
+ '(388.00) Degenerative and vascular disorders, unspecified', '(388.00) Degenerative and vascular disorders, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Degenerative and vascular disorders of ear (388.0)\(388.01) Presbyacusis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Degenerative and vascular disorders of ear (388.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Degenerative and vascular disorders of ear (388.0)\(388.01) Presbyacusis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.01''', NULL,
+ '(388.01) Presbyacusis', '(388.01) Presbyacusis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Degenerative and vascular disorders of ear (388.0)\(388.02) Transient ischemic deafness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Degenerative and vascular disorders of ear (388.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Degenerative and vascular disorders of ear (388.0)\(388.02) Transient ischemic deafness\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.02''', NULL,
+ '(388.02) Transient ischemic deafness', '(388.02) Transient ischemic deafness', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Noise effects on inner ear (388.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Noise effects on inner ear (388.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.1''', NULL,
+ 'Noise effects on inner ear (388.1)', 'Noise effects on inner ear (388.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Noise effects on inner ear (388.1)\(388.10) Noise effects on inner ear, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Noise effects on inner ear (388.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Noise effects on inner ear (388.1)\(388.10) Noise effects on inner ear, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.10''', NULL,
+ '(388.10) Noise effects on inner ear, unspecified', '(388.10) Noise effects on inner ear, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Noise effects on inner ear (388.1)\(388.11) Acoustic trauma (explosive) to ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Noise effects on inner ear (388.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Noise effects on inner ear (388.1)\(388.11) Acoustic trauma (explosive) to ear\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.11) Acoustic trauma (explosive''', NULL,
+ '(388.11) Acoustic trauma (explosive) to ear', '(388.11) Acoustic trauma (explosive) to ear', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Noise effects on inner ear (388.1)\(388.12) Noise-induced hearing loss\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Noise effects on inner ear (388.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Noise effects on inner ear (388.1)\(388.12) Noise-induced hearing loss\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.12''', NULL,
+ '(388.12) Noise-induced hearing loss', '(388.12) Noise-induced hearing loss', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otalgia (388.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otalgia (388.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.7''', NULL,
+ 'Otalgia (388.7)', 'Otalgia (388.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otalgia (388.7)\(388.70) Otalgia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otalgia (388.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otalgia (388.7)\(388.70) Otalgia, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.70''', NULL,
+ '(388.70) Otalgia, unspecified', '(388.70) Otalgia, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otalgia (388.7)\(388.71) Otogenic pain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otalgia (388.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otalgia (388.7)\(388.71) Otogenic pain\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.71''', NULL,
+ '(388.71) Otogenic pain', '(388.71) Otogenic pain', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otalgia (388.7)\(388.72) Referred otogenic pain\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otalgia (388.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otalgia (388.7)\(388.72) Referred otogenic pain\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.72''', NULL,
+ '(388.72) Referred otogenic pain', '(388.72) Referred otogenic pain', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.4''', NULL,
+ 'Other abnormal auditory perception (388.4)', 'Other abnormal auditory perception (388.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\(388.40) Abnormal auditory perception, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\(388.40) Abnormal auditory perception, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.40''', NULL,
+ '(388.40) Abnormal auditory perception, unspecified', '(388.40) Abnormal auditory perception, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\(388.41) Diplacusis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\(388.41) Diplacusis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.41''', NULL,
+ '(388.41) Diplacusis', '(388.41) Diplacusis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\(388.42) Hyperacusis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\(388.42) Hyperacusis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.42''', NULL,
+ '(388.42) Hyperacusis', '(388.42) Hyperacusis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\(388.43) Impairment of auditory discrimination\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\(388.43) Impairment of auditory discrimination\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.43''', NULL,
+ '(388.43) Impairment of auditory discrimination', '(388.43) Impairment of auditory discrimination', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\(388.44) Auditory recruitment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\(388.44) Auditory recruitment\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.44''', NULL,
+ '(388.44) Auditory recruitment', '(388.44) Auditory recruitment', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\(388.45) Acquired auditory processing disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Other abnormal auditory perception (388.4)\(388.45) Acquired auditory processing disorder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.45''', NULL,
+ '(388.45) Acquired auditory processing disorder', '(388.45) Acquired auditory processing disorder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otorrhea (388.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otorrhea (388.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.6''', NULL,
+ 'Otorrhea (388.6)', 'Otorrhea (388.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otorrhea (388.6)\(388.60) Otorrhea, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otorrhea (388.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otorrhea (388.6)\(388.60) Otorrhea, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.60''', NULL,
+ '(388.60) Otorrhea, unspecified', '(388.60) Otorrhea, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otorrhea (388.6)\(388.61) Cerebrospinal fluid otorrhea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otorrhea (388.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otorrhea (388.6)\(388.61) Cerebrospinal fluid otorrhea\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.61''', NULL,
+ '(388.61) Cerebrospinal fluid otorrhea', '(388.61) Cerebrospinal fluid otorrhea', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otorrhea (388.6)\(388.69) Other otorrhea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otorrhea (388.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Otorrhea (388.6)\(388.69) Other otorrhea\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.69''', NULL,
+ '(388.69) Other otorrhea', '(388.69) Other otorrhea', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Tinnitus (388.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Tinnitus (388.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.3''', NULL,
+ 'Tinnitus (388.3)', 'Tinnitus (388.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Tinnitus (388.3)\(388.30) Tinnitus, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Tinnitus (388.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Tinnitus (388.3)\(388.30) Tinnitus, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.30''', NULL,
+ '(388.30) Tinnitus, unspecified', '(388.30) Tinnitus, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Tinnitus (388.3)\(388.31) Subjective tinnitus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Tinnitus (388.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Tinnitus (388.3)\(388.31) Subjective tinnitus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.31''', NULL,
+ '(388.31) Subjective tinnitus', '(388.31) Subjective tinnitus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Tinnitus (388.3)\(388.32) Objective tinnitus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Tinnitus (388.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of ear (388)\Tinnitus (388.3)\(388.32) Objective tinnitus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''388.32''', NULL,
+ '(388.32) Objective tinnitus', '(388.32) Objective tinnitus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385''', NULL,
+ 'Other disorders of middle ear and mastoid (385)', 'Other disorders of middle ear and mastoid (385)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\(385.9) Unspecified disorder of middle ear and mastoid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\(385.9) Unspecified disorder of middle ear and mastoid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.9''', NULL,
+ '(385.9) Unspecified disorder of middle ear and mastoid', '(385.9) Unspecified disorder of middle ear and mastoid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.1''', NULL,
+ 'Adhesive middle ear disease (385.1)', 'Adhesive middle ear disease (385.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\(385.10) Adhesive middle ear disease, unspecified as to involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\(385.10) Adhesive middle ear disease, unspecified as to involvement\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.10''', NULL,
+ '(385.10) Adhesive middle ear disease, unspecified as to involvement', '(385.10) Adhesive middle ear disease, unspecified as to involvement', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\(385.11) Adhesions of drum head to incus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\(385.11) Adhesions of drum head to incus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.11''', NULL,
+ '(385.11) Adhesions of drum head to incus', '(385.11) Adhesions of drum head to incus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\(385.12) Adhesions of drum head to stapes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\(385.12) Adhesions of drum head to stapes\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.12''', NULL,
+ '(385.12) Adhesions of drum head to stapes', '(385.12) Adhesions of drum head to stapes', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\(385.13) Adhesions of drum head to promontorium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\(385.13) Adhesions of drum head to promontorium\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.13''', NULL,
+ '(385.13) Adhesions of drum head to promontorium', '(385.13) Adhesions of drum head to promontorium', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\(385.19) Other middle ear adhesions and combinations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Adhesive middle ear disease (385.1)\(385.19) Other middle ear adhesions and combinations\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.19''', NULL,
+ '(385.19) Other middle ear adhesions and combinations', '(385.19) Other middle ear adhesions and combinations', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.3''', NULL,
+ 'Cholesteatoma of middle ear and mastoid (385.3)', 'Cholesteatoma of middle ear and mastoid (385.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\(385.30) Cholesteatoma, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\(385.30) Cholesteatoma, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.30''', NULL,
+ '(385.30) Cholesteatoma, unspecified', '(385.30) Cholesteatoma, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\(385.31) Cholesteatoma of attic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\(385.31) Cholesteatoma of attic\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.31''', NULL,
+ '(385.31) Cholesteatoma of attic', '(385.31) Cholesteatoma of attic', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\(385.32) Cholesteatoma of middle ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\(385.32) Cholesteatoma of middle ear\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.32''', NULL,
+ '(385.32) Cholesteatoma of middle ear', '(385.32) Cholesteatoma of middle ear', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\(385.33) Cholesteatoma of middle ear and mastoid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\(385.33) Cholesteatoma of middle ear and mastoid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.33''', NULL,
+ '(385.33) Cholesteatoma of middle ear and mastoid', '(385.33) Cholesteatoma of middle ear and mastoid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\(385.35) Diffuse cholesteatosis of middle ear and mastoid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Cholesteatoma of middle ear and mastoid (385.3)\(385.35) Diffuse cholesteatosis of middle ear and mastoid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.35''', NULL,
+ '(385.35) Diffuse cholesteatosis of middle ear and mastoid', '(385.35) Diffuse cholesteatosis of middle ear and mastoid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other acquired abnormality of ear ossicles (385.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other acquired abnormality of ear ossicles (385.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.2''', NULL,
+ 'Other acquired abnormality of ear ossicles (385.2)', 'Other acquired abnormality of ear ossicles (385.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other acquired abnormality of ear ossicles (385.2)\(385.21) Impaired mobility of malleus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other acquired abnormality of ear ossicles (385.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other acquired abnormality of ear ossicles (385.2)\(385.21) Impaired mobility of malleus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.21''', NULL,
+ '(385.21) Impaired mobility of malleus', '(385.21) Impaired mobility of malleus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other acquired abnormality of ear ossicles (385.2)\(385.22) Impaired mobility of other ear ossicles\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other acquired abnormality of ear ossicles (385.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other acquired abnormality of ear ossicles (385.2)\(385.22) Impaired mobility of other ear ossicles\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.22''', NULL,
+ '(385.22) Impaired mobility of other ear ossicles', '(385.22) Impaired mobility of other ear ossicles', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other acquired abnormality of ear ossicles (385.2)\(385.23) Discontinuity or dislocation of ear ossicles\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other acquired abnormality of ear ossicles (385.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other acquired abnormality of ear ossicles (385.2)\(385.23) Discontinuity or dislocation of ear ossicles\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.23''', NULL,
+ '(385.23) Discontinuity or dislocation of ear ossicles', '(385.23) Discontinuity or dislocation of ear ossicles', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other acquired abnormality of ear ossicles (385.2)\(385.24) Partial loss or necrosis of ear ossicles\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other acquired abnormality of ear ossicles (385.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other acquired abnormality of ear ossicles (385.2)\(385.24) Partial loss or necrosis of ear ossicles\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.24''', NULL,
+ '(385.24) Partial loss or necrosis of ear ossicles', '(385.24) Partial loss or necrosis of ear ossicles', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other disorders of middle ear and mastoid (385.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other disorders of middle ear and mastoid (385.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.8''', NULL,
+ 'Other disorders of middle ear and mastoid (385.8)', 'Other disorders of middle ear and mastoid (385.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other disorders of middle ear and mastoid (385.8)\(385.82) Cholesterin granuloma of middle ear and mastoid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other disorders of middle ear and mastoid (385.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other disorders of middle ear and mastoid (385.8)\(385.82) Cholesterin granuloma of middle ear and mastoid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.82''', NULL,
+ '(385.82) Cholesterin granuloma of middle ear and mastoid', '(385.82) Cholesterin granuloma of middle ear and mastoid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other disorders of middle ear and mastoid (385.8)\(385.83) Retained foreign body of middle ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other disorders of middle ear and mastoid (385.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other disorders of middle ear and mastoid (385.8)\(385.83) Retained foreign body of middle ear\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.83''', NULL,
+ '(385.83) Retained foreign body of middle ear', '(385.83) Retained foreign body of middle ear', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other disorders of middle ear and mastoid (385.8)\(385.89) Other disorders of middle ear and mastoid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other disorders of middle ear and mastoid (385.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Other disorders of middle ear and mastoid (385.8)\(385.89) Other disorders of middle ear and mastoid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.89''', NULL,
+ '(385.89) Other disorders of middle ear and mastoid', '(385.89) Other disorders of middle ear and mastoid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.0''', NULL,
+ 'Tympanosclerosis (385.0)', 'Tympanosclerosis (385.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\(385.00) Tympanosclerosis, unspecified as to involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\(385.00) Tympanosclerosis, unspecified as to involvement\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.00''', NULL,
+ '(385.00) Tympanosclerosis, unspecified as to involvement', '(385.00) Tympanosclerosis, unspecified as to involvement', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\(385.01) Tympanosclerosis involving tympanic membrane only\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\(385.01) Tympanosclerosis involving tympanic membrane only\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.01''', NULL,
+ '(385.01) Tympanosclerosis involving tympanic membrane only', '(385.01) Tympanosclerosis involving tympanic membrane only', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\(385.02) Tympanosclerosis involving tympanic membrane and ear ossicles\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\(385.02) Tympanosclerosis involving tympanic membrane and ear ossicles\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.02''', NULL,
+ '(385.02) Tympanosclerosis involving tympanic membrane and ear ossicles', '(385.02) Tympanosclerosis involving tympanic membrane and ear ossicles', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\(385.03) Tympanosclerosis involving tympanic membrane, ear ossicles, and middle ear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\(385.03) Tympanosclerosis involving tympanic membrane, ear ossicles, and middle ear\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.03''', NULL,
+ '(385.03) Tympanosclerosis involving tympanic membrane, ear ossicles, and middle ear', '(385.03) Tympanosclerosis involving tympanic membrane, ear ossicles, and middle ear', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\(385.09) Tympanosclerosis involving other combination of structures\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of middle ear and mastoid (385)\Tympanosclerosis (385.0)\(385.09) Tympanosclerosis involving other combination of structures\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''385.09''', NULL,
+ '(385.09) Tympanosclerosis involving other combination of structures', '(385.09) Tympanosclerosis involving other combination of structures', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384''', NULL,
+ 'Other disorders of tympanic membrane (384)', 'Other disorders of tympanic membrane (384)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\(384.1) Chronic myringitis without mention of otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\(384.1) Chronic myringitis without mention of otitis media\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.1''', NULL,
+ '(384.1) Chronic myringitis without mention of otitis media', '(384.1) Chronic myringitis without mention of otitis media', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\(384.9) Unspecified disorder of tympanic membrane\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\(384.9) Unspecified disorder of tympanic membrane\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.9''', NULL,
+ '(384.9) Unspecified disorder of tympanic membrane', '(384.9) Unspecified disorder of tympanic membrane', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Acute myringitis without mention of otitis media (384.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Acute myringitis without mention of otitis media (384.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.0''', NULL,
+ 'Acute myringitis without mention of otitis media (384.0)', 'Acute myringitis without mention of otitis media (384.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Acute myringitis without mention of otitis media (384.0)\(384.00) Acute myringitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Acute myringitis without mention of otitis media (384.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Acute myringitis without mention of otitis media (384.0)\(384.00) Acute myringitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.00''', NULL,
+ '(384.00) Acute myringitis, unspecified', '(384.00) Acute myringitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Acute myringitis without mention of otitis media (384.0)\(384.01) Bullous myringitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Acute myringitis without mention of otitis media (384.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Acute myringitis without mention of otitis media (384.0)\(384.01) Bullous myringitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.01''', NULL,
+ '(384.01) Bullous myringitis', '(384.01) Bullous myringitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Acute myringitis without mention of otitis media (384.0)\(384.09) Other acute myringitis without mention of otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Acute myringitis without mention of otitis media (384.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Acute myringitis without mention of otitis media (384.0)\(384.09) Other acute myringitis without mention of otitis media\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.09''', NULL,
+ '(384.09) Other acute myringitis without mention of otitis media', '(384.09) Other acute myringitis without mention of otitis media', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Other specified disorders of tympanic membrane (384.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Other specified disorders of tympanic membrane (384.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.8''', NULL,
+ 'Other specified disorders of tympanic membrane (384.8)', 'Other specified disorders of tympanic membrane (384.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Other specified disorders of tympanic membrane (384.8)\(384.81) Atrophic flaccid tympanic membrane\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Other specified disorders of tympanic membrane (384.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Other specified disorders of tympanic membrane (384.8)\(384.81) Atrophic flaccid tympanic membrane\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.81''', NULL,
+ '(384.81) Atrophic flaccid tympanic membrane', '(384.81) Atrophic flaccid tympanic membrane', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Other specified disorders of tympanic membrane (384.8)\(384.82) Atrophic nonflaccid tympanic membrane\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Other specified disorders of tympanic membrane (384.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Other specified disorders of tympanic membrane (384.8)\(384.82) Atrophic nonflaccid tympanic membrane\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.82''', NULL,
+ '(384.82) Atrophic nonflaccid tympanic membrane', '(384.82) Atrophic nonflaccid tympanic membrane', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.2''', NULL,
+ 'Perforation of tympanic membrane (384.2)', 'Perforation of tympanic membrane (384.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\(384.20) Perforation of tympanic membrane, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\(384.20) Perforation of tympanic membrane, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.20''', NULL,
+ '(384.20) Perforation of tympanic membrane, unspecified', '(384.20) Perforation of tympanic membrane, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\(384.21) Central perforation of tympanic membrane\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\(384.21) Central perforation of tympanic membrane\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.21''', NULL,
+ '(384.21) Central perforation of tympanic membrane', '(384.21) Central perforation of tympanic membrane', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\(384.22) Attic perforation of tympanic membrane\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\(384.22) Attic perforation of tympanic membrane\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.22''', NULL,
+ '(384.22) Attic perforation of tympanic membrane', '(384.22) Attic perforation of tympanic membrane', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\(384.23) Other marginal perforation of tympanic membrane\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\(384.23) Other marginal perforation of tympanic membrane\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.23''', NULL,
+ '(384.23) Other marginal perforation of tympanic membrane', '(384.23) Other marginal perforation of tympanic membrane', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\(384.24) Multiple perforations of tympanic membrane\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\(384.24) Multiple perforations of tympanic membrane\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.24''', NULL,
+ '(384.24) Multiple perforations of tympanic membrane', '(384.24) Multiple perforations of tympanic membrane', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\(384.25) Total perforation of tympanic membrane\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Other disorders of tympanic membrane (384)\Perforation of tympanic membrane (384.2)\(384.25) Total perforation of tympanic membrane\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''384.25''', NULL,
+ '(384.25) Total perforation of tympanic membrane', '(384.25) Total perforation of tympanic membrane', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''387''', NULL,
+ 'Otosclerosis (387)', 'Otosclerosis (387)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\(387.0) Otosclerosis involving oval window, nonobliterative\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\(387.0) Otosclerosis involving oval window, nonobliterative\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''387.0''', NULL,
+ '(387.0) Otosclerosis involving oval window, nonobliterative', '(387.0) Otosclerosis involving oval window, nonobliterative', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\(387.1) Otosclerosis involving oval window, obliterative\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\(387.1) Otosclerosis involving oval window, obliterative\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''387.1''', NULL,
+ '(387.1) Otosclerosis involving oval window, obliterative', '(387.1) Otosclerosis involving oval window, obliterative', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\(387.2) Cochlear otosclerosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\(387.2) Cochlear otosclerosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''387.2''', NULL,
+ '(387.2) Cochlear otosclerosis', '(387.2) Cochlear otosclerosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\(387.8) Other otosclerosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\(387.8) Other otosclerosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''387.8''', NULL,
+ '(387.8) Other otosclerosis', '(387.8) Other otosclerosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\(387.9) Otosclerosis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Otosclerosis (387)\(387.9) Otosclerosis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''387.9''', NULL,
+ '(387.9) Otosclerosis, unspecified', '(387.9) Otosclerosis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''382''', NULL,
+ 'Suppurative and unspecified otitis media (382)', 'Suppurative and unspecified otitis media (382)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\(382.1) Chronic tubotympanic suppurative otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\(382.1) Chronic tubotympanic suppurative otitis media\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''382.1''', NULL,
+ '(382.1) Chronic tubotympanic suppurative otitis media', '(382.1) Chronic tubotympanic suppurative otitis media', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\(382.2) Chronic atticoantral suppurative otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\(382.2) Chronic atticoantral suppurative otitis media\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''382.2''', NULL,
+ '(382.2) Chronic atticoantral suppurative otitis media', '(382.2) Chronic atticoantral suppurative otitis media', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\(382.3) Unspecified chronic suppurative otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\(382.3) Unspecified chronic suppurative otitis media\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''382.3''', NULL,
+ '(382.3) Unspecified chronic suppurative otitis media', '(382.3) Unspecified chronic suppurative otitis media', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\(382.4) Unspecified suppurative otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\(382.4) Unspecified suppurative otitis media\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''382.4''', NULL,
+ '(382.4) Unspecified suppurative otitis media', '(382.4) Unspecified suppurative otitis media', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\(382.9) Unspecified otitis media\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\(382.9) Unspecified otitis media\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''382.9''', NULL,
+ '(382.9) Unspecified otitis media', '(382.9) Unspecified otitis media', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\Acute suppurative otitis media (382.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\Acute suppurative otitis media (382.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''382.0''', NULL,
+ 'Acute suppurative otitis media (382.0)', 'Acute suppurative otitis media (382.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\Acute suppurative otitis media (382.0)\(382.00) Acute suppurative otitis media without spontaneous rupture of eardrum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\Acute suppurative otitis media (382.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\Acute suppurative otitis media (382.0)\(382.00) Acute suppurative otitis media without spontaneous rupture of eardrum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''382.00''', NULL,
+ '(382.00) Acute suppurative otitis media without spontaneous rupture of eardrum', '(382.00) Acute suppurative otitis media without spontaneous rupture of eardrum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\Acute suppurative otitis media (382.0)\(382.01) Acute suppurative otitis media with spontaneous rupture of eardrum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\Acute suppurative otitis media (382.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\Acute suppurative otitis media (382.0)\(382.01) Acute suppurative otitis media with spontaneous rupture of eardrum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''382.01''', NULL,
+ '(382.01) Acute suppurative otitis media with spontaneous rupture of eardrum', '(382.01) Acute suppurative otitis media with spontaneous rupture of eardrum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\Acute suppurative otitis media (382.0)\(382.02) Acute suppurative otitis media in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\Acute suppurative otitis media (382.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Suppurative and unspecified otitis media (382)\Acute suppurative otitis media (382.0)\(382.02) Acute suppurative otitis media in diseases classified elsewhere\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''382.02''', NULL,
+ '(382.02) Acute suppurative otitis media in diseases classified elsewhere', '(382.02) Acute suppurative otitis media in diseases classified elsewhere', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386''', NULL,
+ 'Vertiginous syndromes and other disorders of vestibular system (386)', 'Vertiginous syndromes and other disorders of vestibular system (386)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\(386.2) Vertigo of central origin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\(386.2) Vertigo of central origin\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.2''', NULL,
+ '(386.2) Vertigo of central origin', '(386.2) Vertigo of central origin', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\(386.8) Other disorders of labyrinth\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\(386.8) Other disorders of labyrinth\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.8''', NULL,
+ '(386.8) Other disorders of labyrinth', '(386.8) Other disorders of labyrinth', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\(386.9) Unspecified vertiginous syndromes and labyrinthine disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\(386.9) Unspecified vertiginous syndromes and labyrinthine disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.9''', NULL,
+ '(386.9) Unspecified vertiginous syndromes and labyrinthine disorders', '(386.9) Unspecified vertiginous syndromes and labyrinthine disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.5''', NULL,
+ 'Labyrinthine dysfunction (386.5)', 'Labyrinthine dysfunction (386.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.50) Labyrinthine dysfunction, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.50) Labyrinthine dysfunction, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.50''', NULL,
+ '(386.50) Labyrinthine dysfunction, unspecified', '(386.50) Labyrinthine dysfunction, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.51) Hyperactive labyrinth, unilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.51) Hyperactive labyrinth, unilateral\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.51''', NULL,
+ '(386.51) Hyperactive labyrinth, unilateral', '(386.51) Hyperactive labyrinth, unilateral', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.52) Hyperactive labyrinth, bilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.52) Hyperactive labyrinth, bilateral\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.52''', NULL,
+ '(386.52) Hyperactive labyrinth, bilateral', '(386.52) Hyperactive labyrinth, bilateral', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.53) Hypoactive labyrinth, unilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.53) Hypoactive labyrinth, unilateral\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.53''', NULL,
+ '(386.53) Hypoactive labyrinth, unilateral', '(386.53) Hypoactive labyrinth, unilateral', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.54) Hypoactive labyrinth, bilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.54) Hypoactive labyrinth, bilateral\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.54''', NULL,
+ '(386.54) Hypoactive labyrinth, bilateral', '(386.54) Hypoactive labyrinth, bilateral', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.55) Loss of labyrinthine reactivity, unilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.55) Loss of labyrinthine reactivity, unilateral\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.55''', NULL,
+ '(386.55) Loss of labyrinthine reactivity, unilateral', '(386.55) Loss of labyrinthine reactivity, unilateral', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.56) Loss of labyrinthine reactivity, bilateral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.56) Loss of labyrinthine reactivity, bilateral\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.56''', NULL,
+ '(386.56) Loss of labyrinthine reactivity, bilateral', '(386.56) Loss of labyrinthine reactivity, bilateral', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.58) Other forms and combinations of labyrinthine dysfunction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine dysfunction (386.5)\(386.58) Other forms and combinations of labyrinthine dysfunction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.58''', NULL,
+ '(386.58) Other forms and combinations of labyrinthine dysfunction', '(386.58) Other forms and combinations of labyrinthine dysfunction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.4''', NULL,
+ 'Labyrinthine fistula (386.4)', 'Labyrinthine fistula (386.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\(386.40) Labyrinthine fistula, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\(386.40) Labyrinthine fistula, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.40''', NULL,
+ '(386.40) Labyrinthine fistula, unspecified', '(386.40) Labyrinthine fistula, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\(386.41) Round window fistula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\(386.41) Round window fistula\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.41''', NULL,
+ '(386.41) Round window fistula', '(386.41) Round window fistula', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\(386.42) Oval window fistula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\(386.42) Oval window fistula\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.42''', NULL,
+ '(386.42) Oval window fistula', '(386.42) Oval window fistula', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\(386.43) Semicircular canal fistula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\(386.43) Semicircular canal fistula\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.43''', NULL,
+ '(386.43) Semicircular canal fistula', '(386.43) Semicircular canal fistula', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\(386.48) Labyrinthine fistula of combined sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthine fistula (386.4)\(386.48) Labyrinthine fistula of combined sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.48''', NULL,
+ '(386.48) Labyrinthine fistula of combined sites', '(386.48) Labyrinthine fistula of combined sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.3''', NULL,
+ 'Labyrinthitis (386.3)', 'Labyrinthitis (386.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\(386.30) Labyrinthitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\(386.30) Labyrinthitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.30''', NULL,
+ '(386.30) Labyrinthitis, unspecified', '(386.30) Labyrinthitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\(386.31) Serous labyrinthitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\(386.31) Serous labyrinthitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.31''', NULL,
+ '(386.31) Serous labyrinthitis', '(386.31) Serous labyrinthitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\(386.32) Circumscribed labyrinthitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\(386.32) Circumscribed labyrinthitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.32''', NULL,
+ '(386.32) Circumscribed labyrinthitis', '(386.32) Circumscribed labyrinthitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\(386.33) Suppurative labyrinthitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\(386.33) Suppurative labyrinthitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.33''', NULL,
+ '(386.33) Suppurative labyrinthitis', '(386.33) Suppurative labyrinthitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\(386.34) Toxic labyrinthitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\(386.34) Toxic labyrinthitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.34''', NULL,
+ '(386.34) Toxic labyrinthitis', '(386.34) Toxic labyrinthitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\(386.35) Viral labyrinthitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Labyrinthitis (386.3)\(386.35) Viral labyrinthitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.35''', NULL,
+ '(386.35) Viral labyrinthitis', '(386.35) Viral labyrinthitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.0''', NULL,
+ 'Meniere''s disease (386.0)', 'Meniere''s disease (386.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\(386.00) Meniere''s disease, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\(386.00) Meniere''s disease, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.00''', NULL,
+ '(386.00) Meniere''s disease, unspecified', '(386.00) Meniere''s disease, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\(386.01) Active Meniere''s disease, cochleovestibular\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\(386.01) Active Meniere''s disease, cochleovestibular\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.01''', NULL,
+ '(386.01) Active Meniere''s disease, cochleovestibular', '(386.01) Active Meniere''s disease, cochleovestibular', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\(386.02) Active Meniere''s disease, cochlear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\(386.02) Active Meniere''s disease, cochlear\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.02''', NULL,
+ '(386.02) Active Meniere''s disease, cochlear', '(386.02) Active Meniere''s disease, cochlear', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\(386.03) Active Meniere''s disease, vestibular\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\(386.03) Active Meniere''s disease, vestibular\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.03''', NULL,
+ '(386.03) Active Meniere''s disease, vestibular', '(386.03) Active Meniere''s disease, vestibular', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\(386.04) Inactive Meniere''s disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Meniere''s disease (386.0)\(386.04) Inactive Meniere''s disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.04''', NULL,
+ '(386.04) Inactive Meniere''s disease', '(386.04) Inactive Meniere''s disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Other and unspecified peripheral vertigo (386.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Other and unspecified peripheral vertigo (386.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.1''', NULL,
+ 'Other and unspecified peripheral vertigo (386.1)', 'Other and unspecified peripheral vertigo (386.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Other and unspecified peripheral vertigo (386.1)\(386.10) Peripheral vertigo, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Other and unspecified peripheral vertigo (386.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Other and unspecified peripheral vertigo (386.1)\(386.10) Peripheral vertigo, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.10''', NULL,
+ '(386.10) Peripheral vertigo, unspecified', '(386.10) Peripheral vertigo, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Other and unspecified peripheral vertigo (386.1)\(386.11) Benign paroxysmal positional vertigo\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Other and unspecified peripheral vertigo (386.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Other and unspecified peripheral vertigo (386.1)\(386.11) Benign paroxysmal positional vertigo\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.11''', NULL,
+ '(386.11) Benign paroxysmal positional vertigo', '(386.11) Benign paroxysmal positional vertigo', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Other and unspecified peripheral vertigo (386.1)\(386.12) Vestibular neuronitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Other and unspecified peripheral vertigo (386.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Other and unspecified peripheral vertigo (386.1)\(386.12) Vestibular neuronitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.12''', NULL,
+ '(386.12) Vestibular neuronitis', '(386.12) Vestibular neuronitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Other and unspecified peripheral vertigo (386.1)\(386.19) Other peripheral vertigo\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Other and unspecified peripheral vertigo (386.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Diseases of the ear and mastoid process (380-389.99)\Vertiginous syndromes and other disorders of vestibular system (386)\Other and unspecified peripheral vertigo (386.1)\(386.19) Other peripheral vertigo\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''386.19''', NULL,
+ '(386.19) Other peripheral vertigo', '(386.19) Other peripheral vertigo', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''360'' AND ''379.99''', NULL,
+ 'Disorders of the eye and adnexa (360-379.99)', 'Disorders of the eye and adnexa (360-379.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369''', NULL,
+ 'Blindness and low vision (369)', 'Blindness and low vision (369)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\(369.3) Unqualified visual loss, both eyes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\(369.3) Unqualified visual loss, both eyes\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.3''', NULL,
+ '(369.3) Unqualified visual loss, both eyes', '(369.3) Unqualified visual loss, both eyes', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\(369.4) Legal blindness, as defined in U.S.A.\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\(369.4) Legal blindness, as defined in U.S.A.\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.4''', NULL,
+ '(369.4) Legal blindness, as defined in U.S.A.', '(369.4) Legal blindness, as defined in U.S.A.', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\(369.8) Unqualified visual loss, one eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\(369.8) Unqualified visual loss, one eye\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.8''', NULL,
+ '(369.8) Unqualified visual loss, one eye', '(369.8) Unqualified visual loss, one eye', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\(369.9) Unspecified visual loss\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\(369.9) Unspecified visual loss\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.9''', NULL,
+ '(369.9) Unspecified visual loss', '(369.9) Unspecified visual loss', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.1''', NULL,
+ 'Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)', 'Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.10) Moderate or severe impairment, better eye, impairment level not further specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.10) Moderate or severe impairment, better eye, impairment level not further specified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.10''', NULL,
+ '(369.10) Moderate or severe impairment, better eye, impairment level not further specified', '(369.10) Moderate or severe impairment, better eye, impairment level not further specified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.11) Better eye: severe vision impairment; lesser eye: blind, not further specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.11) Better eye: severe vision impairment; lesser eye: blind, not further specified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.11''', NULL,
+ '(369.11) Better eye: severe vision impairment; lesser eye: blind, not further specified', '(369.11) Better eye: severe vision impairment; lesser eye: blind, not further specified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.12) Better eye: severe vision impairment; lesser eye: total vision impairment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.12) Better eye: severe vision impairment; lesser eye: total vision impairment\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.12''', NULL,
+ '(369.12) Better eye: severe vision impairment; lesser eye: total vision impairment', '(369.12) Better eye: severe vision impairment; lesser eye: total vision impairment', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.13) Better eye: severe vision impairment; lesser eye: near-total vision impairment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.13) Better eye: severe vision impairment; lesser eye: near-total vision impairment\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.13''', NULL,
+ '(369.13) Better eye: severe vision impairment; lesser eye: near-total vision impairment', '(369.13) Better eye: severe vision impairment; lesser eye: near-total vision impairment', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.14) Better eye: severe vision impairment; lesser eye: profound vision impairment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.14) Better eye: severe vision impairment; lesser eye: profound vision impairment\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.14''', NULL,
+ '(369.14) Better eye: severe vision impairment; lesser eye: profound vision impairment', '(369.14) Better eye: severe vision impairment; lesser eye: profound vision impairment', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.15) Better eye: moderate vision impairment; lesser eye: blind, not further specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.15) Better eye: moderate vision impairment; lesser eye: blind, not further specified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.15''', NULL,
+ '(369.15) Better eye: moderate vision impairment; lesser eye: blind, not further specified', '(369.15) Better eye: moderate vision impairment; lesser eye: blind, not further specified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.16) Better eye: moderate vision impairment; lesser eye: total vision impairment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.16) Better eye: moderate vision impairment; lesser eye: total vision impairment\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.16''', NULL,
+ '(369.16) Better eye: moderate vision impairment; lesser eye: total vision impairment', '(369.16) Better eye: moderate vision impairment; lesser eye: total vision impairment', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.17) Better eye: moderate vision impairment; lesser eye: near-total vision impairment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.17) Better eye: moderate vision impairment; lesser eye: near-total vision impairment\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.17''', NULL,
+ '(369.17) Better eye: moderate vision impairment; lesser eye: near-total vision impairment', '(369.17) Better eye: moderate vision impairment; lesser eye: near-total vision impairment', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.18) Better eye: moderate vision impairment; lesser eye: profound vision impairment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, better eye; profound vision impairment of lesser eye (369.1)\(369.18) Better eye: moderate vision impairment; lesser eye: profound vision impairment\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.18''', NULL,
+ '(369.18) Better eye: moderate vision impairment; lesser eye: profound vision impairment', '(369.18) Better eye: moderate vision impairment; lesser eye: profound vision impairment', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.2''', NULL,
+ 'Moderate or severe vision impairment, both eyes (369.2)', 'Moderate or severe vision impairment, both eyes (369.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\(369.20) Moderate or severe impairment, both eyes, impairment level not further specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\(369.20) Moderate or severe impairment, both eyes, impairment level not further specified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.20''', NULL,
+ '(369.20) Moderate or severe impairment, both eyes, impairment level not further specified', '(369.20) Moderate or severe impairment, both eyes, impairment level not further specified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\(369.21) Better eye: severe vision impairment; lesser eye; impairment not further specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\(369.21) Better eye: severe vision impairment; lesser eye; impairment not further specified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.21''', NULL,
+ '(369.21) Better eye: severe vision impairment; lesser eye; impairment not further specified', '(369.21) Better eye: severe vision impairment; lesser eye; impairment not further specified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\(369.22) Better eye: severe vision impairment; lesser eye: severe vision impairment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\(369.22) Better eye: severe vision impairment; lesser eye: severe vision impairment\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.22''', NULL,
+ '(369.22) Better eye: severe vision impairment; lesser eye: severe vision impairment', '(369.22) Better eye: severe vision impairment; lesser eye: severe vision impairment', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\(369.23) Better eye: moderate vision impairment; lesser eye: impairment not further specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\(369.23) Better eye: moderate vision impairment; lesser eye: impairment not further specified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.23''', NULL,
+ '(369.23) Better eye: moderate vision impairment; lesser eye: impairment not further specified', '(369.23) Better eye: moderate vision impairment; lesser eye: impairment not further specified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\(369.24) Better eye: moderate vision impairment; lesser eye: severe vision impairment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\(369.24) Better eye: moderate vision impairment; lesser eye: severe vision impairment\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.24''', NULL,
+ '(369.24) Better eye: moderate vision impairment; lesser eye: severe vision impairment', '(369.24) Better eye: moderate vision impairment; lesser eye: severe vision impairment', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\(369.25) Better eye: moderate vision impairment; lesser eye: moderate vision impairment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, both eyes (369.2)\(369.25) Better eye: moderate vision impairment; lesser eye: moderate vision impairment\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.25''', NULL,
+ '(369.25) Better eye: moderate vision impairment; lesser eye: moderate vision impairment', '(369.25) Better eye: moderate vision impairment; lesser eye: moderate vision impairment', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.7''', NULL,
+ 'Moderate or severe vision impairment, one eye (369.7)', 'Moderate or severe vision impairment, one eye (369.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\(369.70) Moderate or severe impairment, one eye, impairment level not further specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\(369.70) Moderate or severe impairment, one eye, impairment level not further specified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.70''', NULL,
+ '(369.70) Moderate or severe impairment, one eye, impairment level not further specified', '(369.70) Moderate or severe impairment, one eye, impairment level not further specified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\(369.71) One eye: severe vision impairment; other eye: vision not specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\(369.71) One eye: severe vision impairment; other eye: vision not specified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.71''', NULL,
+ '(369.71) One eye: severe vision impairment; other eye: vision not specified', '(369.71) One eye: severe vision impairment; other eye: vision not specified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\(369.72) One eye: severe vision impairment; other eye: near-normal vision\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\(369.72) One eye: severe vision impairment; other eye: near-normal vision\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.72''', NULL,
+ '(369.72) One eye: severe vision impairment; other eye: near-normal vision', '(369.72) One eye: severe vision impairment; other eye: near-normal vision', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\(369.73) One eye: severe vision impairment; other eye: normal vision\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\(369.73) One eye: severe vision impairment; other eye: normal vision\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.73''', NULL,
+ '(369.73) One eye: severe vision impairment; other eye: normal vision', '(369.73) One eye: severe vision impairment; other eye: normal vision', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\(369.74) One eye: moderate vision impairment; other eye: vision not specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\(369.74) One eye: moderate vision impairment; other eye: vision not specified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.74''', NULL,
+ '(369.74) One eye: moderate vision impairment; other eye: vision not specified', '(369.74) One eye: moderate vision impairment; other eye: vision not specified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\(369.75) One eye: moderate vision impairment; other eye: near-normal vision\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\(369.75) One eye: moderate vision impairment; other eye: near-normal vision\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.75''', NULL,
+ '(369.75) One eye: moderate vision impairment; other eye: near-normal vision', '(369.75) One eye: moderate vision impairment; other eye: near-normal vision', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\(369.76) One eye: moderate vision impairment; other eye: normal vision\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Moderate or severe vision impairment, one eye (369.7)\(369.76) One eye: moderate vision impairment; other eye: normal vision\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.76''', NULL,
+ '(369.76) One eye: moderate vision impairment; other eye: normal vision', '(369.76) One eye: moderate vision impairment; other eye: normal vision', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.0''', NULL,
+ 'Profound vision impairment, both eyes (369.0)', 'Profound vision impairment, both eyes (369.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.00) Profound impairment, both eyes, impairment level not further specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.00) Profound impairment, both eyes, impairment level not further specified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.00''', NULL,
+ '(369.00) Profound impairment, both eyes, impairment level not further specified', '(369.00) Profound impairment, both eyes, impairment level not further specified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.01) Better eye: total vision impairment; lesser eye: total vision impairment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.01) Better eye: total vision impairment; lesser eye: total vision impairment\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.01''', NULL,
+ '(369.01) Better eye: total vision impairment; lesser eye: total vision impairment', '(369.01) Better eye: total vision impairment; lesser eye: total vision impairment', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.02) Better eye: near-total vision impairment; lesser eye: not further specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.02) Better eye: near-total vision impairment; lesser eye: not further specified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.02''', NULL,
+ '(369.02) Better eye: near-total vision impairment; lesser eye: not further specified', '(369.02) Better eye: near-total vision impairment; lesser eye: not further specified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.03) Better eye: near-total vision impairment; lesser eye: total vision impairment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.03) Better eye: near-total vision impairment; lesser eye: total vision impairment\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.03''', NULL,
+ '(369.03) Better eye: near-total vision impairment; lesser eye: total vision impairment', '(369.03) Better eye: near-total vision impairment; lesser eye: total vision impairment', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.04) Better eye: near-total vision impairment; lesser eye: near-total vision impairment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.04) Better eye: near-total vision impairment; lesser eye: near-total vision impairment\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.04''', NULL,
+ '(369.04) Better eye: near-total vision impairment; lesser eye: near-total vision impairment', '(369.04) Better eye: near-total vision impairment; lesser eye: near-total vision impairment', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.05) Better eye: profound vision impairment; lesser eye: not further specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.05) Better eye: profound vision impairment; lesser eye: not further specified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.05''', NULL,
+ '(369.05) Better eye: profound vision impairment; lesser eye: not further specified', '(369.05) Better eye: profound vision impairment; lesser eye: not further specified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.06) Better eye: profound vision impairment; lesser eye: total vision impairment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.06) Better eye: profound vision impairment; lesser eye: total vision impairment\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.06''', NULL,
+ '(369.06) Better eye: profound vision impairment; lesser eye: total vision impairment', '(369.06) Better eye: profound vision impairment; lesser eye: total vision impairment', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.07) Better eye: profound vision impairment; lesser eye: near-total vision impairment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.07) Better eye: profound vision impairment; lesser eye: near-total vision impairment\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.07''', NULL,
+ '(369.07) Better eye: profound vision impairment; lesser eye: near-total vision impairment', '(369.07) Better eye: profound vision impairment; lesser eye: near-total vision impairment', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.08) Better eye: profound vision impairment; lesser eye: profound vision impairment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, both eyes (369.0)\(369.08) Better eye: profound vision impairment; lesser eye: profound vision impairment\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.08''', NULL,
+ '(369.08) Better eye: profound vision impairment; lesser eye: profound vision impairment', '(369.08) Better eye: profound vision impairment; lesser eye: profound vision impairment', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.6''', NULL,
+ 'Profound vision impairment, one eye (369.6)', 'Profound vision impairment, one eye (369.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.60) Profound impairment, one eye, impairment level not further specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.60) Profound impairment, one eye, impairment level not further specified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.60''', NULL,
+ '(369.60) Profound impairment, one eye, impairment level not further specified', '(369.60) Profound impairment, one eye, impairment level not further specified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.61) One eye: total vision impairment; other eye: not specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.61) One eye: total vision impairment; other eye: not specified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.61''', NULL,
+ '(369.61) One eye: total vision impairment; other eye: not specified', '(369.61) One eye: total vision impairment; other eye: not specified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.62) One eye: total vision impairment; other eye: near-normal vision\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.62) One eye: total vision impairment; other eye: near-normal vision\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.62''', NULL,
+ '(369.62) One eye: total vision impairment; other eye: near-normal vision', '(369.62) One eye: total vision impairment; other eye: near-normal vision', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.63) One eye: total vision impairment; other eye: normal vision\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.63) One eye: total vision impairment; other eye: normal vision\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.63''', NULL,
+ '(369.63) One eye: total vision impairment; other eye: normal vision', '(369.63) One eye: total vision impairment; other eye: normal vision', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.64) One eye: near-total vision impairment; other eye: vision not specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.64) One eye: near-total vision impairment; other eye: vision not specified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.64''', NULL,
+ '(369.64) One eye: near-total vision impairment; other eye: vision not specified', '(369.64) One eye: near-total vision impairment; other eye: vision not specified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.65) One eye: near-total vision impairment; other eye: near-normal vision\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.65) One eye: near-total vision impairment; other eye: near-normal vision\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.65''', NULL,
+ '(369.65) One eye: near-total vision impairment; other eye: near-normal vision', '(369.65) One eye: near-total vision impairment; other eye: near-normal vision', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.66) One eye: near-total vision impairment; other eye: normal vision\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.66) One eye: near-total vision impairment; other eye: normal vision\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.66''', NULL,
+ '(369.66) One eye: near-total vision impairment; other eye: normal vision', '(369.66) One eye: near-total vision impairment; other eye: normal vision', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.67) One eye: profound vision impairment; other eye: vision not specified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.67) One eye: profound vision impairment; other eye: vision not specified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.67''', NULL,
+ '(369.67) One eye: profound vision impairment; other eye: vision not specified', '(369.67) One eye: profound vision impairment; other eye: vision not specified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.68) One eye: profound vision impairment; other eye: near-normal vision\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.68) One eye: profound vision impairment; other eye: near-normal vision\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.68''', NULL,
+ '(369.68) One eye: profound vision impairment; other eye: near-normal vision', '(369.68) One eye: profound vision impairment; other eye: near-normal vision', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.69) One eye: profound vision impairment; other eye: normal vision\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Blindness and low vision (369)\Profound vision impairment, one eye (369.6)\(369.69) One eye: profound vision impairment; other eye: normal vision\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''369.69''', NULL,
+ '(369.69) One eye: profound vision impairment; other eye: normal vision', '(369.69) One eye: profound vision impairment; other eye: normal vision', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366''', NULL,
+ 'Cataract (366)', 'Cataract (366)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\(366.8) Other cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\(366.8) Other cataract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.8''', NULL,
+ '(366.8) Other cataract', '(366.8) Other cataract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\(366.9) Unspecified cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\(366.9) Unspecified cataract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.9''', NULL,
+ '(366.9) Unspecified cataract', '(366.9) Unspecified cataract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\After-cataract (366.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\After-cataract (366.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.5''', NULL,
+ 'After-cataract (366.5)', 'After-cataract (366.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\After-cataract (366.5)\(366.50) After-cataract, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\After-cataract (366.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\After-cataract (366.5)\(366.50) After-cataract, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.50''', NULL,
+ '(366.50) After-cataract, unspecified', '(366.50) After-cataract, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\After-cataract (366.5)\(366.51) Soemmering''s ring\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\After-cataract (366.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\After-cataract (366.5)\(366.51) Soemmering''s ring\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.51''', NULL,
+ '(366.51) Soemmering''s ring', '(366.51) Soemmering''s ring', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\After-cataract (366.5)\(366.52) Other after-cataract, not obscuring vision\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\After-cataract (366.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\After-cataract (366.5)\(366.52) Other after-cataract, not obscuring vision\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.52''', NULL,
+ '(366.52) Other after-cataract, not obscuring vision', '(366.52) Other after-cataract, not obscuring vision', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\After-cataract (366.5)\(366.53) After-cataract, obscuring vision\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\After-cataract (366.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\After-cataract (366.5)\(366.53) After-cataract, obscuring vision\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.53''', NULL,
+ '(366.53) After-cataract, obscuring vision', '(366.53) After-cataract, obscuring vision', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.4''', NULL,
+ 'Cataract associated with other disorders (366.4)', 'Cataract associated with other disorders (366.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\(366.41) Diabetic cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\(366.41) Diabetic cataract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.41''', NULL,
+ '(366.41) Diabetic cataract', '(366.41) Diabetic cataract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\(366.42) Tetanic cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\(366.42) Tetanic cataract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.42''', NULL,
+ '(366.42) Tetanic cataract', '(366.42) Tetanic cataract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\(366.43) Myotonic cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\(366.43) Myotonic cataract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.43''', NULL,
+ '(366.43) Myotonic cataract', '(366.43) Myotonic cataract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\(366.44) Cataract associated with other syndromes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\(366.44) Cataract associated with other syndromes\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.44''', NULL,
+ '(366.44) Cataract associated with other syndromes', '(366.44) Cataract associated with other syndromes', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\(366.45) Toxic cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\(366.45) Toxic cataract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.45''', NULL,
+ '(366.45) Toxic cataract', '(366.45) Toxic cataract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\(366.46) Cataract associated with radiation and other physical influences\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract associated with other disorders (366.4)\(366.46) Cataract associated with radiation and other physical influences\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.46''', NULL,
+ '(366.46) Cataract associated with radiation and other physical influences', '(366.46) Cataract associated with radiation and other physical influences', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.3''', NULL,
+ 'Cataract secondary to ocular disorders (366.3)', 'Cataract secondary to ocular disorders (366.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\(366.30) Cataracta complicata, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\(366.30) Cataracta complicata, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.30''', NULL,
+ '(366.30) Cataracta complicata, unspecified', '(366.30) Cataracta complicata, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\(366.31) Glaucomatous flecks (subcapsular)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\(366.31) Glaucomatous flecks (subcapsular)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.31) Glaucomatous flecks (subcapsular''', NULL,
+ '(366.31) Glaucomatous flecks (subcapsular)', '(366.31) Glaucomatous flecks (subcapsular)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\(366.32) Cataract in inflammatory ocular disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\(366.32) Cataract in inflammatory ocular disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.32''', NULL,
+ '(366.32) Cataract in inflammatory ocular disorders', '(366.32) Cataract in inflammatory ocular disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\(366.33) Cataract with neovascularization\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\(366.33) Cataract with neovascularization\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.33''', NULL,
+ '(366.33) Cataract with neovascularization', '(366.33) Cataract with neovascularization', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\(366.34) Cataract in degenerative ocular disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Cataract secondary to ocular disorders (366.3)\(366.34) Cataract in degenerative ocular disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.34''', NULL,
+ '(366.34) Cataract in degenerative ocular disorders', '(366.34) Cataract in degenerative ocular disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.0''', NULL,
+ 'Infantile, juvenile, and presenile cataract (366.0)', 'Infantile, juvenile, and presenile cataract (366.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\(366.00) Nonsenile cataract, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\(366.00) Nonsenile cataract, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.00''', NULL,
+ '(366.00) Nonsenile cataract, unspecified', '(366.00) Nonsenile cataract, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\(366.01) Anterior subcapsular polar cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\(366.01) Anterior subcapsular polar cataract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.01''', NULL,
+ '(366.01) Anterior subcapsular polar cataract', '(366.01) Anterior subcapsular polar cataract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\(366.02) Posterior subcapsular polar cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\(366.02) Posterior subcapsular polar cataract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.02''', NULL,
+ '(366.02) Posterior subcapsular polar cataract', '(366.02) Posterior subcapsular polar cataract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\(366.03) Cortical, lamellar, or zonular cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\(366.03) Cortical, lamellar, or zonular cataract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.03''', NULL,
+ '(366.03) Cortical, lamellar, or zonular cataract', '(366.03) Cortical, lamellar, or zonular cataract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\(366.04) Nuclear cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\(366.04) Nuclear cataract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.04''', NULL,
+ '(366.04) Nuclear cataract', '(366.04) Nuclear cataract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\(366.09) Other and combined forms of nonsenile cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Infantile, juvenile, and presenile cataract (366.0)\(366.09) Other and combined forms of nonsenile cataract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.09''', NULL,
+ '(366.09) Other and combined forms of nonsenile cataract', '(366.09) Other and combined forms of nonsenile cataract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.1''', NULL,
+ 'Senile cataract (366.1)', 'Senile cataract (366.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.10) Senile cataract, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.10) Senile cataract, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.10''', NULL,
+ '(366.10) Senile cataract, unspecified', '(366.10) Senile cataract, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.11) Pseudoexfoliation of lens capsule\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.11) Pseudoexfoliation of lens capsule\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.11''', NULL,
+ '(366.11) Pseudoexfoliation of lens capsule', '(366.11) Pseudoexfoliation of lens capsule', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.12) Incipient senile cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.12) Incipient senile cataract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.12''', NULL,
+ '(366.12) Incipient senile cataract', '(366.12) Incipient senile cataract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.13) Anterior subcapsular polar senile cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.13) Anterior subcapsular polar senile cataract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.13''', NULL,
+ '(366.13) Anterior subcapsular polar senile cataract', '(366.13) Anterior subcapsular polar senile cataract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.14) Posterior subcapsular polar senile cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.14) Posterior subcapsular polar senile cataract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.14''', NULL,
+ '(366.14) Posterior subcapsular polar senile cataract', '(366.14) Posterior subcapsular polar senile cataract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.15) Cortical senile cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.15) Cortical senile cataract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.15''', NULL,
+ '(366.15) Cortical senile cataract', '(366.15) Cortical senile cataract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.16) Senile nuclear sclerosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.16) Senile nuclear sclerosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.16''', NULL,
+ '(366.16) Senile nuclear sclerosis', '(366.16) Senile nuclear sclerosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.17) Total or mature cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.17) Total or mature cataract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.17''', NULL,
+ '(366.17) Total or mature cataract', '(366.17) Total or mature cataract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.18) Hypermature cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.18) Hypermature cataract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.18''', NULL,
+ '(366.18) Hypermature cataract', '(366.18) Hypermature cataract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.19) Other and combined forms of senile cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Senile cataract (366.1)\(366.19) Other and combined forms of senile cataract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.19''', NULL,
+ '(366.19) Other and combined forms of senile cataract', '(366.19) Other and combined forms of senile cataract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Traumatic cataract (366.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Traumatic cataract (366.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.2''', NULL,
+ 'Traumatic cataract (366.2)', 'Traumatic cataract (366.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Traumatic cataract (366.2)\(366.20) Traumatic cataract, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Traumatic cataract (366.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Traumatic cataract (366.2)\(366.20) Traumatic cataract, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.20''', NULL,
+ '(366.20) Traumatic cataract, unspecified', '(366.20) Traumatic cataract, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Traumatic cataract (366.2)\(366.21) Localized traumatic opacities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Traumatic cataract (366.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Traumatic cataract (366.2)\(366.21) Localized traumatic opacities\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.21''', NULL,
+ '(366.21) Localized traumatic opacities', '(366.21) Localized traumatic opacities', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Traumatic cataract (366.2)\(366.22) Total traumatic cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Traumatic cataract (366.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Traumatic cataract (366.2)\(366.22) Total traumatic cataract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.22''', NULL,
+ '(366.22) Total traumatic cataract', '(366.22) Total traumatic cataract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Traumatic cataract (366.2)\(366.23) Partially resolved traumatic cataract\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Traumatic cataract (366.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Cataract (366)\Traumatic cataract (366.2)\(366.23) Partially resolved traumatic cataract\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''366.23''', NULL,
+ '(366.23) Partially resolved traumatic cataract', '(366.23) Partially resolved traumatic cataract', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363''', NULL,
+ 'Chorioretinal inflammations, scars, and other disorders of choroid (363)', 'Chorioretinal inflammations, scars, and other disorders of choroid (363)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\(363.8) Other disorders of choroid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\(363.8) Other disorders of choroid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.8''', NULL,
+ '(363.8) Other disorders of choroid', '(363.8) Other disorders of choroid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\(363.9) Unspecified disorder of choroid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\(363.9) Unspecified disorder of choroid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.9''', NULL,
+ '(363.9) Unspecified disorder of choroid', '(363.9) Unspecified disorder of choroid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.3''', NULL,
+ 'Chorioretinal scars (363.3)', 'Chorioretinal scars (363.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\(363.30) Chorioretinal scar, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\(363.30) Chorioretinal scar, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.30''', NULL,
+ '(363.30) Chorioretinal scar, unspecified', '(363.30) Chorioretinal scar, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\(363.31) Solar retinopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\(363.31) Solar retinopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.31''', NULL,
+ '(363.31) Solar retinopathy', '(363.31) Solar retinopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\(363.32) Other macular scars\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\(363.32) Other macular scars\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.32''', NULL,
+ '(363.32) Other macular scars', '(363.32) Other macular scars', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\(363.33) Other scars of posterior pole\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\(363.33) Other scars of posterior pole\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.33''', NULL,
+ '(363.33) Other scars of posterior pole', '(363.33) Other scars of posterior pole', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\(363.34) Peripheral scars\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\(363.34) Peripheral scars\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.34''', NULL,
+ '(363.34) Peripheral scars', '(363.34) Peripheral scars', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\(363.35) Disseminated scars\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Chorioretinal scars (363.3)\(363.35) Disseminated scars\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.35''', NULL,
+ '(363.35) Disseminated scars', '(363.35) Disseminated scars', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal degenerations (363.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal degenerations (363.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.4''', NULL,
+ 'Choroidal degenerations (363.4)', 'Choroidal degenerations (363.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal degenerations (363.4)\(363.40) Choroidal degeneration, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal degenerations (363.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal degenerations (363.4)\(363.40) Choroidal degeneration, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.40''', NULL,
+ '(363.40) Choroidal degeneration, unspecified', '(363.40) Choroidal degeneration, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal degenerations (363.4)\(363.41) Senile atrophy of choroid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal degenerations (363.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal degenerations (363.4)\(363.41) Senile atrophy of choroid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.41''', NULL,
+ '(363.41) Senile atrophy of choroid', '(363.41) Senile atrophy of choroid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal degenerations (363.4)\(363.42) Diffuse secondary atrophy of choroid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal degenerations (363.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal degenerations (363.4)\(363.42) Diffuse secondary atrophy of choroid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.42''', NULL,
+ '(363.42) Diffuse secondary atrophy of choroid', '(363.42) Diffuse secondary atrophy of choroid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal degenerations (363.4)\(363.43) Angioid streaks of choroid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal degenerations (363.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal degenerations (363.4)\(363.43) Angioid streaks of choroid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.43''', NULL,
+ '(363.43) Angioid streaks of choroid', '(363.43) Angioid streaks of choroid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal detachment (363.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal detachment (363.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.7''', NULL,
+ 'Choroidal detachment (363.7)', 'Choroidal detachment (363.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal detachment (363.7)\(363.70) Choroidal detachment, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal detachment (363.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal detachment (363.7)\(363.70) Choroidal detachment, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.70''', NULL,
+ '(363.70) Choroidal detachment, unspecified', '(363.70) Choroidal detachment, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal detachment (363.7)\(363.71) Serous choroidal detachment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal detachment (363.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal detachment (363.7)\(363.71) Serous choroidal detachment\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.71''', NULL,
+ '(363.71) Serous choroidal detachment', '(363.71) Serous choroidal detachment', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal detachment (363.7)\(363.72) Hemorrhagic choroidal detachment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal detachment (363.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal detachment (363.7)\(363.72) Hemorrhagic choroidal detachment\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.72''', NULL,
+ '(363.72) Hemorrhagic choroidal detachment', '(363.72) Hemorrhagic choroidal detachment', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal hemorrhage and rupture (363.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal hemorrhage and rupture (363.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.6''', NULL,
+ 'Choroidal hemorrhage and rupture (363.6)', 'Choroidal hemorrhage and rupture (363.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal hemorrhage and rupture (363.6)\(363.61) Choroidal hemorrhage, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal hemorrhage and rupture (363.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal hemorrhage and rupture (363.6)\(363.61) Choroidal hemorrhage, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.61''', NULL,
+ '(363.61) Choroidal hemorrhage, unspecified', '(363.61) Choroidal hemorrhage, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal hemorrhage and rupture (363.6)\(363.62) Expulsive choroidal hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal hemorrhage and rupture (363.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal hemorrhage and rupture (363.6)\(363.62) Expulsive choroidal hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.62''', NULL,
+ '(363.62) Expulsive choroidal hemorrhage', '(363.62) Expulsive choroidal hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal hemorrhage and rupture (363.6)\(363.63) Choroidal rupture\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal hemorrhage and rupture (363.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Choroidal hemorrhage and rupture (363.6)\(363.63) Choroidal rupture\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.63''', NULL,
+ '(363.63) Choroidal rupture', '(363.63) Choroidal rupture', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.1''', NULL,
+ 'Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)', 'Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\(363.10) Disseminated chorioretinitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\(363.10) Disseminated chorioretinitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.10''', NULL,
+ '(363.10) Disseminated chorioretinitis, unspecified', '(363.10) Disseminated chorioretinitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\(363.11) Disseminated choroiditis and chorioretinitis, posterior pole\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\(363.11) Disseminated choroiditis and chorioretinitis, posterior pole\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.11''', NULL,
+ '(363.11) Disseminated choroiditis and chorioretinitis, posterior pole', '(363.11) Disseminated choroiditis and chorioretinitis, posterior pole', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\(363.12) Disseminated choroiditis and chorioretinitis, peripheral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\(363.12) Disseminated choroiditis and chorioretinitis, peripheral\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.12''', NULL,
+ '(363.12) Disseminated choroiditis and chorioretinitis, peripheral', '(363.12) Disseminated choroiditis and chorioretinitis, peripheral', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\(363.13) Disseminated choroiditis and chorioretinitis, generalized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\(363.13) Disseminated choroiditis and chorioretinitis, generalized\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.13''', NULL,
+ '(363.13) Disseminated choroiditis and chorioretinitis, generalized', '(363.13) Disseminated choroiditis and chorioretinitis, generalized', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\(363.14) Disseminated retinitis and retinochoroiditis, metastatic\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\(363.14) Disseminated retinitis and retinochoroiditis, metastatic\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.14''', NULL,
+ '(363.14) Disseminated retinitis and retinochoroiditis, metastatic', '(363.14) Disseminated retinitis and retinochoroiditis, metastatic', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\(363.15) Disseminated retinitis and retinochoroiditis, pigment epitheliopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Disseminated chorioretinitis and disseminated retinochoroiditis (363.1)\(363.15) Disseminated retinitis and retinochoroiditis, pigment epitheliopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.15''', NULL,
+ '(363.15) Disseminated retinitis and retinochoroiditis, pigment epitheliopathy', '(363.15) Disseminated retinitis and retinochoroiditis, pigment epitheliopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.0''', NULL,
+ 'Focal chorioretinitis and focal retinochoroiditis (363.0)', 'Focal chorioretinitis and focal retinochoroiditis (363.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.00) Focal chorioretinitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.00) Focal chorioretinitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.00''', NULL,
+ '(363.00) Focal chorioretinitis, unspecified', '(363.00) Focal chorioretinitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.01) Focal choroiditis and chorioretinitis, juxtapapillary\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.01) Focal choroiditis and chorioretinitis, juxtapapillary\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.01''', NULL,
+ '(363.01) Focal choroiditis and chorioretinitis, juxtapapillary', '(363.01) Focal choroiditis and chorioretinitis, juxtapapillary', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.03) Focal choroiditis and chorioretinitis of other posterior pole\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.03) Focal choroiditis and chorioretinitis of other posterior pole\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.03''', NULL,
+ '(363.03) Focal choroiditis and chorioretinitis of other posterior pole', '(363.03) Focal choroiditis and chorioretinitis of other posterior pole', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.04) Focal choroiditis and chorioretinitis, peripheral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.04) Focal choroiditis and chorioretinitis, peripheral\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.04''', NULL,
+ '(363.04) Focal choroiditis and chorioretinitis, peripheral', '(363.04) Focal choroiditis and chorioretinitis, peripheral', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.05) Focal retinitis and retinochoroiditis, juxtapapillary\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.05) Focal retinitis and retinochoroiditis, juxtapapillary\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.05''', NULL,
+ '(363.05) Focal retinitis and retinochoroiditis, juxtapapillary', '(363.05) Focal retinitis and retinochoroiditis, juxtapapillary', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.06) Focal retinitis and retinochoroiditis, macular or paramacular\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.06) Focal retinitis and retinochoroiditis, macular or paramacular\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.06''', NULL,
+ '(363.06) Focal retinitis and retinochoroiditis, macular or paramacular', '(363.06) Focal retinitis and retinochoroiditis, macular or paramacular', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.07) Focal retinitis and retinochoroiditis of other posterior pole\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.07) Focal retinitis and retinochoroiditis of other posterior pole\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.07''', NULL,
+ '(363.07) Focal retinitis and retinochoroiditis of other posterior pole', '(363.07) Focal retinitis and retinochoroiditis of other posterior pole', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.08) Focal retinitis and retinochoroiditis, peripheral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Focal chorioretinitis and focal retinochoroiditis (363.0)\(363.08) Focal retinitis and retinochoroiditis, peripheral\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.08''', NULL,
+ '(363.08) Focal retinitis and retinochoroiditis, peripheral', '(363.08) Focal retinitis and retinochoroiditis, peripheral', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.5''', NULL,
+ 'Hereditary choroidal dystrophies (363.5)', 'Hereditary choroidal dystrophies (363.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.50) Hereditary choroidal dystrophy or atrophy, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.50) Hereditary choroidal dystrophy or atrophy, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.50''', NULL,
+ '(363.50) Hereditary choroidal dystrophy or atrophy, unspecified', '(363.50) Hereditary choroidal dystrophy or atrophy, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.51) Circumpapillary dystrophy of choroid, partial\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.51) Circumpapillary dystrophy of choroid, partial\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.51''', NULL,
+ '(363.51) Circumpapillary dystrophy of choroid, partial', '(363.51) Circumpapillary dystrophy of choroid, partial', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.52) Circumpapillary dystrophy of choroid, total\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.52) Circumpapillary dystrophy of choroid, total\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.52''', NULL,
+ '(363.52) Circumpapillary dystrophy of choroid, total', '(363.52) Circumpapillary dystrophy of choroid, total', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.53) Central dystrophy of choroid, partial\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.53) Central dystrophy of choroid, partial\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.53''', NULL,
+ '(363.53) Central dystrophy of choroid, partial', '(363.53) Central dystrophy of choroid, partial', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.54) Central choroidal atrophy, total\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.54) Central choroidal atrophy, total\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.54''', NULL,
+ '(363.54) Central choroidal atrophy, total', '(363.54) Central choroidal atrophy, total', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.55) Choroideremia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.55) Choroideremia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.55''', NULL,
+ '(363.55) Choroideremia', '(363.55) Choroideremia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.56) Other diffuse or generalized dystrophy of choroid, partial\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.56) Other diffuse or generalized dystrophy of choroid, partial\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.56''', NULL,
+ '(363.56) Other diffuse or generalized dystrophy of choroid, partial', '(363.56) Other diffuse or generalized dystrophy of choroid, partial', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.57) Other diffuse or generalized dystrophy of choroid, total\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Hereditary choroidal dystrophies (363.5)\(363.57) Other diffuse or generalized dystrophy of choroid, total\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.57''', NULL,
+ '(363.57) Other diffuse or generalized dystrophy of choroid, total', '(363.57) Other diffuse or generalized dystrophy of choroid, total', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.2''', NULL,
+ 'Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)', 'Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)\(363.20) Chorioretinitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)\(363.20) Chorioretinitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.20''', NULL,
+ '(363.20) Chorioretinitis, unspecified', '(363.20) Chorioretinitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)\(363.21) Pars planitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)\(363.21) Pars planitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.21''', NULL,
+ '(363.21) Pars planitis', '(363.21) Pars planitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)\(363.22) Harada''s disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Chorioretinal inflammations, scars, and other disorders of choroid (363)\Other and unspecified forms of chorioretinitis and retinochoroiditis (363.2)\(363.22) Harada''s disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''363.22''', NULL,
+ '(363.22) Harada''s disease', '(363.22) Harada''s disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371''', NULL,
+ 'Corneal opacity and other disorders of cornea (371)', 'Corneal opacity and other disorders of cornea (371)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\(371.9) Unspecified corneal disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\(371.9) Unspecified corneal disorder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.9''', NULL,
+ '(371.9) Unspecified corneal disorder', '(371.9) Unspecified corneal disorder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Changes of corneal membranes (371.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Changes of corneal membranes (371.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.3''', NULL,
+ 'Changes of corneal membranes (371.3)', 'Changes of corneal membranes (371.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Changes of corneal membranes (371.3)\(371.30) Corneal membrane change, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Changes of corneal membranes (371.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Changes of corneal membranes (371.3)\(371.30) Corneal membrane change, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.30''', NULL,
+ '(371.30) Corneal membrane change, unspecified', '(371.30) Corneal membrane change, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Changes of corneal membranes (371.3)\(371.31) Folds and rupture of bowman''s membrane\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Changes of corneal membranes (371.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Changes of corneal membranes (371.3)\(371.31) Folds and rupture of bowman''s membrane\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.31''', NULL,
+ '(371.31) Folds and rupture of bowman''s membrane', '(371.31) Folds and rupture of bowman''s membrane', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Changes of corneal membranes (371.3)\(371.32) Folds in descemet''s membrane\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Changes of corneal membranes (371.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Changes of corneal membranes (371.3)\(371.32) Folds in descemet''s membrane\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.32''', NULL,
+ '(371.32) Folds in descemet''s membrane', '(371.32) Folds in descemet''s membrane', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Changes of corneal membranes (371.3)\(371.33) Rupture in descemet''s membrane\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Changes of corneal membranes (371.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Changes of corneal membranes (371.3)\(371.33) Rupture in descemet''s membrane\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.33''', NULL,
+ '(371.33) Rupture in descemet''s membrane', '(371.33) Rupture in descemet''s membrane', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.4''', NULL,
+ 'Corneal degenerations (371.4)', 'Corneal degenerations (371.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.40) Corneal degeneration, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.40) Corneal degeneration, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.40''', NULL,
+ '(371.40) Corneal degeneration, unspecified', '(371.40) Corneal degeneration, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.41) Senile corneal changes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.41) Senile corneal changes\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.41''', NULL,
+ '(371.41) Senile corneal changes', '(371.41) Senile corneal changes', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.42) Recurrent erosion of cornea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.42) Recurrent erosion of cornea\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.42''', NULL,
+ '(371.42) Recurrent erosion of cornea', '(371.42) Recurrent erosion of cornea', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.43) Band-shaped keratopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.43) Band-shaped keratopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.43''', NULL,
+ '(371.43) Band-shaped keratopathy', '(371.43) Band-shaped keratopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.44) Other calcerous degenerations of cornea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.44) Other calcerous degenerations of cornea\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.44''', NULL,
+ '(371.44) Other calcerous degenerations of cornea', '(371.44) Other calcerous degenerations of cornea', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.45) Keratomalacia NOS\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.45) Keratomalacia NOS\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.45''', NULL,
+ '(371.45) Keratomalacia NOS', '(371.45) Keratomalacia NOS', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.46) Nodular degeneration of cornea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.46) Nodular degeneration of cornea\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.46''', NULL,
+ '(371.46) Nodular degeneration of cornea', '(371.46) Nodular degeneration of cornea', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.48) Peripheral degenerations of cornea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.48) Peripheral degenerations of cornea\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.48''', NULL,
+ '(371.48) Peripheral degenerations of cornea', '(371.48) Peripheral degenerations of cornea', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.49) Other corneal degenerations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal degenerations (371.4)\(371.49) Other corneal degenerations\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.49''', NULL,
+ '(371.49) Other corneal degenerations', '(371.49) Other corneal degenerations', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.2''', NULL,
+ 'Corneal edema (371.2)', 'Corneal edema (371.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\(371.20) Corneal edema, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\(371.20) Corneal edema, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.20''', NULL,
+ '(371.20) Corneal edema, unspecified', '(371.20) Corneal edema, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\(371.21) Idiopathic corneal edema\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\(371.21) Idiopathic corneal edema\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.21''', NULL,
+ '(371.21) Idiopathic corneal edema', '(371.21) Idiopathic corneal edema', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\(371.22) Secondary corneal edema\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\(371.22) Secondary corneal edema\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.22''', NULL,
+ '(371.22) Secondary corneal edema', '(371.22) Secondary corneal edema', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\(371.23) Bullous keratopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\(371.23) Bullous keratopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.23''', NULL,
+ '(371.23) Bullous keratopathy', '(371.23) Bullous keratopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\(371.24) Corneal edema due to wearing of contact lenses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal edema (371.2)\(371.24) Corneal edema due to wearing of contact lenses\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.24''', NULL,
+ '(371.24) Corneal edema due to wearing of contact lenses', '(371.24) Corneal edema due to wearing of contact lenses', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.1''', NULL,
+ 'Corneal pigmentations and deposits (371.1)', 'Corneal pigmentations and deposits (371.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\(371.10) Corneal deposit, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\(371.10) Corneal deposit, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.10''', NULL,
+ '(371.10) Corneal deposit, unspecified', '(371.10) Corneal deposit, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\(371.11) Anterior corneal pigmentations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\(371.11) Anterior corneal pigmentations\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.11''', NULL,
+ '(371.11) Anterior corneal pigmentations', '(371.11) Anterior corneal pigmentations', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\(371.12) Stromal corneal pigmentations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\(371.12) Stromal corneal pigmentations\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.12''', NULL,
+ '(371.12) Stromal corneal pigmentations', '(371.12) Stromal corneal pigmentations', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\(371.13) Posterior corneal pigmentations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\(371.13) Posterior corneal pigmentations\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.13''', NULL,
+ '(371.13) Posterior corneal pigmentations', '(371.13) Posterior corneal pigmentations', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\(371.14) Kayser-Fleischer ring\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\(371.14) Kayser-Fleischer ring\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.14''', NULL,
+ '(371.14) Kayser-Fleischer ring', '(371.14) Kayser-Fleischer ring', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\(371.15) Other corneal deposits associated with metabolic disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\(371.15) Other corneal deposits associated with metabolic disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.15''', NULL,
+ '(371.15) Other corneal deposits associated with metabolic disorders', '(371.15) Other corneal deposits associated with metabolic disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\(371.16) Argentous corneal deposits\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal pigmentations and deposits (371.1)\(371.16) Argentous corneal deposits\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.16''', NULL,
+ '(371.16) Argentous corneal deposits', '(371.16) Argentous corneal deposits', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.0''', NULL,
+ 'Corneal scars and opacities (371.0)', 'Corneal scars and opacities (371.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\(371.00) Corneal opacity, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\(371.00) Corneal opacity, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.00''', NULL,
+ '(371.00) Corneal opacity, unspecified', '(371.00) Corneal opacity, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\(371.01) Minor opacity of cornea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\(371.01) Minor opacity of cornea\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.01''', NULL,
+ '(371.01) Minor opacity of cornea', '(371.01) Minor opacity of cornea', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\(371.02) Peripheral opacity of cornea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\(371.02) Peripheral opacity of cornea\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.02''', NULL,
+ '(371.02) Peripheral opacity of cornea', '(371.02) Peripheral opacity of cornea', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\(371.03) Central opacity of cornea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\(371.03) Central opacity of cornea\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.03''', NULL,
+ '(371.03) Central opacity of cornea', '(371.03) Central opacity of cornea', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\(371.04) Adherent leucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\(371.04) Adherent leucoma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.04''', NULL,
+ '(371.04) Adherent leucoma', '(371.04) Adherent leucoma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\(371.05) Phthisical cornea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Corneal scars and opacities (371.0)\(371.05) Phthisical cornea\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.05''', NULL,
+ '(371.05) Phthisical cornea', '(371.05) Phthisical cornea', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.5''', NULL,
+ 'Hereditary corneal dystrophies (371.5)', 'Hereditary corneal dystrophies (371.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.50) Hereditary corneal dystrophy, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.50) Hereditary corneal dystrophy, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.50''', NULL,
+ '(371.50) Hereditary corneal dystrophy, unspecified', '(371.50) Hereditary corneal dystrophy, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.51) Juvenile epithelial corneal dystrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.51) Juvenile epithelial corneal dystrophy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.51''', NULL,
+ '(371.51) Juvenile epithelial corneal dystrophy', '(371.51) Juvenile epithelial corneal dystrophy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.52) Other anterior corneal dystrophies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.52) Other anterior corneal dystrophies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.52''', NULL,
+ '(371.52) Other anterior corneal dystrophies', '(371.52) Other anterior corneal dystrophies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.53) Granular corneal dystrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.53) Granular corneal dystrophy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.53''', NULL,
+ '(371.53) Granular corneal dystrophy', '(371.53) Granular corneal dystrophy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.54) Lattice corneal dystrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.54) Lattice corneal dystrophy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.54''', NULL,
+ '(371.54) Lattice corneal dystrophy', '(371.54) Lattice corneal dystrophy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.55) Macular corneal dystrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.55) Macular corneal dystrophy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.55''', NULL,
+ '(371.55) Macular corneal dystrophy', '(371.55) Macular corneal dystrophy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.56) Other stromal corneal dystrophies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.56) Other stromal corneal dystrophies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.56''', NULL,
+ '(371.56) Other stromal corneal dystrophies', '(371.56) Other stromal corneal dystrophies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.57) Endothelial corneal dystrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.57) Endothelial corneal dystrophy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.57''', NULL,
+ '(371.57) Endothelial corneal dystrophy', '(371.57) Endothelial corneal dystrophy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.58) Other posterior corneal dystrophies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Hereditary corneal dystrophies (371.5)\(371.58) Other posterior corneal dystrophies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.58''', NULL,
+ '(371.58) Other posterior corneal dystrophies', '(371.58) Other posterior corneal dystrophies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Keratoconus (371.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Keratoconus (371.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.6''', NULL,
+ 'Keratoconus (371.6)', 'Keratoconus (371.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Keratoconus (371.6)\(371.60) Keratoconus, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Keratoconus (371.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Keratoconus (371.6)\(371.60) Keratoconus, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.60''', NULL,
+ '(371.60) Keratoconus, unspecified', '(371.60) Keratoconus, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Keratoconus (371.6)\(371.61) Keratoconus, stable condition\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Keratoconus (371.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Keratoconus (371.6)\(371.61) Keratoconus, stable condition\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.61''', NULL,
+ '(371.61) Keratoconus, stable condition', '(371.61) Keratoconus, stable condition', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Keratoconus (371.6)\(371.62) Keratoconus, acute hydrops\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Keratoconus (371.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Keratoconus (371.6)\(371.62) Keratoconus, acute hydrops\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.62''', NULL,
+ '(371.62) Keratoconus, acute hydrops', '(371.62) Keratoconus, acute hydrops', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal deformities (371.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal deformities (371.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.7''', NULL,
+ 'Other corneal deformities (371.7)', 'Other corneal deformities (371.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal deformities (371.7)\(371.70) Corneal deformity, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal deformities (371.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal deformities (371.7)\(371.70) Corneal deformity, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.70''', NULL,
+ '(371.70) Corneal deformity, unspecified', '(371.70) Corneal deformity, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal deformities (371.7)\(371.71) Corneal ectasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal deformities (371.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal deformities (371.7)\(371.71) Corneal ectasia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.71''', NULL,
+ '(371.71) Corneal ectasia', '(371.71) Corneal ectasia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal deformities (371.7)\(371.72) Descemetocele\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal deformities (371.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal deformities (371.7)\(371.72) Descemetocele\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.72''', NULL,
+ '(371.72) Descemetocele', '(371.72) Descemetocele', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal deformities (371.7)\(371.73) Corneal staphyloma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal deformities (371.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal deformities (371.7)\(371.73) Corneal staphyloma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.73''', NULL,
+ '(371.73) Corneal staphyloma', '(371.73) Corneal staphyloma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal disorders (371.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal disorders (371.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.8''', NULL,
+ 'Other corneal disorders (371.8)', 'Other corneal disorders (371.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal disorders (371.8)\(371.81) Corneal anesthesia and hypoesthesia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal disorders (371.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal disorders (371.8)\(371.81) Corneal anesthesia and hypoesthesia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.81''', NULL,
+ '(371.81) Corneal anesthesia and hypoesthesia', '(371.81) Corneal anesthesia and hypoesthesia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal disorders (371.8)\(371.82) Corneal disorder due to contact lens\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal disorders (371.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal disorders (371.8)\(371.82) Corneal disorder due to contact lens\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.82''', NULL,
+ '(371.82) Corneal disorder due to contact lens', '(371.82) Corneal disorder due to contact lens', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal disorders (371.8)\(371.89) Other corneal disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal disorders (371.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Corneal opacity and other disorders of cornea (371)\Other corneal disorders (371.8)\(371.89) Other corneal disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''371.89''', NULL,
+ '(371.89) Other corneal disorders', '(371.89) Other corneal disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372''', NULL,
+ 'Disorders of conjunctiva (372)', 'Disorders of conjunctiva (372)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\(372.9) Unspecified disorder of conjunctiva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\(372.9) Unspecified disorder of conjunctiva\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.9''', NULL,
+ '(372.9) Unspecified disorder of conjunctiva', '(372.9) Unspecified disorder of conjunctiva', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.0''', NULL,
+ 'Acute conjunctivitis (372.0)', 'Acute conjunctivitis (372.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\(372.00) Acute conjunctivitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\(372.00) Acute conjunctivitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.00''', NULL,
+ '(372.00) Acute conjunctivitis, unspecified', '(372.00) Acute conjunctivitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\(372.01) Serous conjunctivitis, except viral\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\(372.01) Serous conjunctivitis, except viral\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.01''', NULL,
+ '(372.01) Serous conjunctivitis, except viral', '(372.01) Serous conjunctivitis, except viral', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\(372.02) Acute follicular conjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\(372.02) Acute follicular conjunctivitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.02''', NULL,
+ '(372.02) Acute follicular conjunctivitis', '(372.02) Acute follicular conjunctivitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\(372.03) Other mucopurulent conjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\(372.03) Other mucopurulent conjunctivitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.03''', NULL,
+ '(372.03) Other mucopurulent conjunctivitis', '(372.03) Other mucopurulent conjunctivitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\(372.04) Pseudomembranous conjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\(372.04) Pseudomembranous conjunctivitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.04''', NULL,
+ '(372.04) Pseudomembranous conjunctivitis', '(372.04) Pseudomembranous conjunctivitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\(372.05) Acute atopic conjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\(372.05) Acute atopic conjunctivitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.05''', NULL,
+ '(372.05) Acute atopic conjunctivitis', '(372.05) Acute atopic conjunctivitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\(372.06) Acute chemical conjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Acute conjunctivitis (372.0)\(372.06) Acute chemical conjunctivitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.06''', NULL,
+ '(372.06) Acute chemical conjunctivitis', '(372.06) Acute chemical conjunctivitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Blepharoconjunctivitis (372.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Blepharoconjunctivitis (372.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.2''', NULL,
+ 'Blepharoconjunctivitis (372.2)', 'Blepharoconjunctivitis (372.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Blepharoconjunctivitis (372.2)\(372.20) Blepharoconjunctivitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Blepharoconjunctivitis (372.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Blepharoconjunctivitis (372.2)\(372.20) Blepharoconjunctivitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.20''', NULL,
+ '(372.20) Blepharoconjunctivitis, unspecified', '(372.20) Blepharoconjunctivitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Blepharoconjunctivitis (372.2)\(372.21) Angular blepharoconjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Blepharoconjunctivitis (372.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Blepharoconjunctivitis (372.2)\(372.21) Angular blepharoconjunctivitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.21''', NULL,
+ '(372.21) Angular blepharoconjunctivitis', '(372.21) Angular blepharoconjunctivitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Blepharoconjunctivitis (372.2)\(372.22) Contact blepharoconjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Blepharoconjunctivitis (372.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Blepharoconjunctivitis (372.2)\(372.22) Contact blepharoconjunctivitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.22''', NULL,
+ '(372.22) Contact blepharoconjunctivitis', '(372.22) Contact blepharoconjunctivitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.1''', NULL,
+ 'Chronic conjunctivitis (372.1)', 'Chronic conjunctivitis (372.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\(372.10) Chronic conjunctivitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\(372.10) Chronic conjunctivitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.10''', NULL,
+ '(372.10) Chronic conjunctivitis, unspecified', '(372.10) Chronic conjunctivitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\(372.11) Simple chronic conjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\(372.11) Simple chronic conjunctivitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.11''', NULL,
+ '(372.11) Simple chronic conjunctivitis', '(372.11) Simple chronic conjunctivitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\(372.12) Chronic follicular conjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\(372.12) Chronic follicular conjunctivitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.12''', NULL,
+ '(372.12) Chronic follicular conjunctivitis', '(372.12) Chronic follicular conjunctivitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\(372.13) Vernal conjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\(372.13) Vernal conjunctivitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.13''', NULL,
+ '(372.13) Vernal conjunctivitis', '(372.13) Vernal conjunctivitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\(372.14) Other chronic allergic conjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\(372.14) Other chronic allergic conjunctivitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.14''', NULL,
+ '(372.14) Other chronic allergic conjunctivitis', '(372.14) Other chronic allergic conjunctivitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\(372.15) Parasitic conjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Chronic conjunctivitis (372.1)\(372.15) Parasitic conjunctivitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.15''', NULL,
+ '(372.15) Parasitic conjunctivitis', '(372.15) Parasitic conjunctivitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.5''', NULL,
+ 'Conjunctival degenerations and deposits (372.5)', 'Conjunctival degenerations and deposits (372.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\(372.50) Conjunctival degeneration, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\(372.50) Conjunctival degeneration, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.50''', NULL,
+ '(372.50) Conjunctival degeneration, unspecified', '(372.50) Conjunctival degeneration, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\(372.51) Pinguecula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\(372.51) Pinguecula\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.51''', NULL,
+ '(372.51) Pinguecula', '(372.51) Pinguecula', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\(372.52) Pseudopterygium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\(372.52) Pseudopterygium\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.52''', NULL,
+ '(372.52) Pseudopterygium', '(372.52) Pseudopterygium', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\(372.53) Conjunctival xerosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\(372.53) Conjunctival xerosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.53''', NULL,
+ '(372.53) Conjunctival xerosis', '(372.53) Conjunctival xerosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\(372.54) Conjunctival concretions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\(372.54) Conjunctival concretions\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.54''', NULL,
+ '(372.54) Conjunctival concretions', '(372.54) Conjunctival concretions', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\(372.55) Conjunctival pigmentations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\(372.55) Conjunctival pigmentations\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.55''', NULL,
+ '(372.55) Conjunctival pigmentations', '(372.55) Conjunctival pigmentations', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\(372.56) Conjunctival deposits\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival degenerations and deposits (372.5)\(372.56) Conjunctival deposits\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.56''', NULL,
+ '(372.56) Conjunctival deposits', '(372.56) Conjunctival deposits', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival scars (372.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival scars (372.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.6''', NULL,
+ 'Conjunctival scars (372.6)', 'Conjunctival scars (372.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival scars (372.6)\(372.61) Granuloma of conjunctiva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival scars (372.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival scars (372.6)\(372.61) Granuloma of conjunctiva\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.61''', NULL,
+ '(372.61) Granuloma of conjunctiva', '(372.61) Granuloma of conjunctiva', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival scars (372.6)\(372.62) Localized adhesions and strands of conjunctiva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival scars (372.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival scars (372.6)\(372.62) Localized adhesions and strands of conjunctiva\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.62''', NULL,
+ '(372.62) Localized adhesions and strands of conjunctiva', '(372.62) Localized adhesions and strands of conjunctiva', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival scars (372.6)\(372.63) Symblepharon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival scars (372.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival scars (372.6)\(372.63) Symblepharon\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.63''', NULL,
+ '(372.63) Symblepharon', '(372.63) Symblepharon', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival scars (372.6)\(372.64) Scarring of conjunctiva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival scars (372.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival scars (372.6)\(372.64) Scarring of conjunctiva\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.64''', NULL,
+ '(372.64) Scarring of conjunctiva', '(372.64) Scarring of conjunctiva', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.7''', NULL,
+ 'Conjunctival vascular disorders and cysts (372.7)', 'Conjunctival vascular disorders and cysts (372.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\(372.71) Hyperemia of conjunctiva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\(372.71) Hyperemia of conjunctiva\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.71''', NULL,
+ '(372.71) Hyperemia of conjunctiva', '(372.71) Hyperemia of conjunctiva', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\(372.72) Conjunctival hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\(372.72) Conjunctival hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.72''', NULL,
+ '(372.72) Conjunctival hemorrhage', '(372.72) Conjunctival hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\(372.73) Conjunctival edema\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\(372.73) Conjunctival edema\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.73''', NULL,
+ '(372.73) Conjunctival edema', '(372.73) Conjunctival edema', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\(372.74) Vascular abnormalities of conjunctiva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\(372.74) Vascular abnormalities of conjunctiva\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.74''', NULL,
+ '(372.74) Vascular abnormalities of conjunctiva', '(372.74) Vascular abnormalities of conjunctiva', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\(372.75) Conjunctival cysts\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Conjunctival vascular disorders and cysts (372.7)\(372.75) Conjunctival cysts\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.75''', NULL,
+ '(372.75) Conjunctival cysts', '(372.75) Conjunctival cysts', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other and unspecified conjunctivitis (372.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other and unspecified conjunctivitis (372.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.3''', NULL,
+ 'Other and unspecified conjunctivitis (372.3)', 'Other and unspecified conjunctivitis (372.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other and unspecified conjunctivitis (372.3)\(372.30) Conjunctivitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other and unspecified conjunctivitis (372.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other and unspecified conjunctivitis (372.3)\(372.30) Conjunctivitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.30''', NULL,
+ '(372.30) Conjunctivitis, unspecified', '(372.30) Conjunctivitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other and unspecified conjunctivitis (372.3)\(372.31) Rosacea conjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other and unspecified conjunctivitis (372.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other and unspecified conjunctivitis (372.3)\(372.31) Rosacea conjunctivitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.31''', NULL,
+ '(372.31) Rosacea conjunctivitis', '(372.31) Rosacea conjunctivitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other and unspecified conjunctivitis (372.3)\(372.33) Conjunctivitis in mucocutaneous disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other and unspecified conjunctivitis (372.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other and unspecified conjunctivitis (372.3)\(372.33) Conjunctivitis in mucocutaneous disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.33''', NULL,
+ '(372.33) Conjunctivitis in mucocutaneous disease', '(372.33) Conjunctivitis in mucocutaneous disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other and unspecified conjunctivitis (372.3)\(372.39) Other conjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other and unspecified conjunctivitis (372.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other and unspecified conjunctivitis (372.3)\(372.39) Other conjunctivitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.39''', NULL,
+ '(372.39) Other conjunctivitis', '(372.39) Other conjunctivitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other disorders of conjunctiva (372.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other disorders of conjunctiva (372.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.8''', NULL,
+ 'Other disorders of conjunctiva (372.8)', 'Other disorders of conjunctiva (372.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other disorders of conjunctiva (372.8)\(372.81) Conjunctivochalasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other disorders of conjunctiva (372.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other disorders of conjunctiva (372.8)\(372.81) Conjunctivochalasis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.81''', NULL,
+ '(372.81) Conjunctivochalasis', '(372.81) Conjunctivochalasis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other disorders of conjunctiva (372.8)\(372.89) Other disorders of conjunctiva\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other disorders of conjunctiva (372.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Other disorders of conjunctiva (372.8)\(372.89) Other disorders of conjunctiva\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.89''', NULL,
+ '(372.89) Other disorders of conjunctiva', '(372.89) Other disorders of conjunctiva', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.4''', NULL,
+ 'Pterygium (372.4)', 'Pterygium (372.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\(372.40) Pterygium, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\(372.40) Pterygium, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.40''', NULL,
+ '(372.40) Pterygium, unspecified', '(372.40) Pterygium, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\(372.41) Peripheral pterygium, stationary\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\(372.41) Peripheral pterygium, stationary\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.41''', NULL,
+ '(372.41) Peripheral pterygium, stationary', '(372.41) Peripheral pterygium, stationary', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\(372.42) Peripheral pterygium, progressive\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\(372.42) Peripheral pterygium, progressive\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.42''', NULL,
+ '(372.42) Peripheral pterygium, progressive', '(372.42) Peripheral pterygium, progressive', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\(372.43) Central pterygium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\(372.43) Central pterygium\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.43''', NULL,
+ '(372.43) Central pterygium', '(372.43) Central pterygium', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\(372.44) Double pterygium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\(372.44) Double pterygium\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.44''', NULL,
+ '(372.44) Double pterygium', '(372.44) Double pterygium', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\(372.45) Recurrent pterygium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of conjunctiva (372)\Pterygium (372.4)\(372.45) Recurrent pterygium\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''372.45''', NULL,
+ '(372.45) Recurrent pterygium', '(372.45) Recurrent pterygium', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364''', NULL,
+ 'Disorders of iris and ciliary body (364)', 'Disorders of iris and ciliary body (364)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\(364.3) Unspecified iridocyclitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\(364.3) Unspecified iridocyclitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.3''', NULL,
+ '(364.3) Unspecified iridocyclitis', '(364.3) Unspecified iridocyclitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\(364.9) Unspecified disorder of iris and ciliary body\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\(364.9) Unspecified disorder of iris and ciliary body\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.9''', NULL,
+ '(364.9) Unspecified disorder of iris and ciliary body', '(364.9) Unspecified disorder of iris and ciliary body', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.0''', NULL,
+ 'Acute and subacute iridocyclitis (364.0)', 'Acute and subacute iridocyclitis (364.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\(364.00) Acute and subacute iridocyclitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\(364.00) Acute and subacute iridocyclitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.00''', NULL,
+ '(364.00) Acute and subacute iridocyclitis, unspecified', '(364.00) Acute and subacute iridocyclitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\(364.01) Primary iridocyclitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\(364.01) Primary iridocyclitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.01''', NULL,
+ '(364.01) Primary iridocyclitis', '(364.01) Primary iridocyclitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\(364.02) Recurrent iridocyclitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\(364.02) Recurrent iridocyclitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.02''', NULL,
+ '(364.02) Recurrent iridocyclitis', '(364.02) Recurrent iridocyclitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\(364.03) Secondary iridocyclitis, infectious\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\(364.03) Secondary iridocyclitis, infectious\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.03''', NULL,
+ '(364.03) Secondary iridocyclitis, infectious', '(364.03) Secondary iridocyclitis, infectious', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\(364.04) Secondary iridocyclitis, noninfectious\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\(364.04) Secondary iridocyclitis, noninfectious\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.04''', NULL,
+ '(364.04) Secondary iridocyclitis, noninfectious', '(364.04) Secondary iridocyclitis, noninfectious', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\(364.05) Hypopyon\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Acute and subacute iridocyclitis (364.0)\(364.05) Hypopyon\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.05''', NULL,
+ '(364.05) Hypopyon', '(364.05) Hypopyon', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.7''', NULL,
+ 'Adhesions and disruptions of iris and ciliary body (364.7)', 'Adhesions and disruptions of iris and ciliary body (364.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.70) Adhesions of iris, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.70) Adhesions of iris, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.70''', NULL,
+ '(364.70) Adhesions of iris, unspecified', '(364.70) Adhesions of iris, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.71) Posterior synechiae of iris\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.71) Posterior synechiae of iris\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.71''', NULL,
+ '(364.71) Posterior synechiae of iris', '(364.71) Posterior synechiae of iris', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.72) Anterior synechiae of iris\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.72) Anterior synechiae of iris\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.72''', NULL,
+ '(364.72) Anterior synechiae of iris', '(364.72) Anterior synechiae of iris', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.73) Goniosynechiae\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.73) Goniosynechiae\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.73''', NULL,
+ '(364.73) Goniosynechiae', '(364.73) Goniosynechiae', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.74) Adhesions and disruptions of pupillary membranes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.74) Adhesions and disruptions of pupillary membranes\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.74''', NULL,
+ '(364.74) Adhesions and disruptions of pupillary membranes', '(364.74) Adhesions and disruptions of pupillary membranes', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.75) Pupillary abnormalities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.75) Pupillary abnormalities\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.75''', NULL,
+ '(364.75) Pupillary abnormalities', '(364.75) Pupillary abnormalities', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.76) Iridodialysis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.76) Iridodialysis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.76''', NULL,
+ '(364.76) Iridodialysis', '(364.76) Iridodialysis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.77) Recession of chamber angle of eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Adhesions and disruptions of iris and ciliary body (364.7)\(364.77) Recession of chamber angle of eye\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.77''', NULL,
+ '(364.77) Recession of chamber angle of eye', '(364.77) Recession of chamber angle of eye', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Certain types of iridocyclitis (364.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Certain types of iridocyclitis (364.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.2''', NULL,
+ 'Certain types of iridocyclitis (364.2)', 'Certain types of iridocyclitis (364.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Certain types of iridocyclitis (364.2)\(364.21) Fuchs'' heterochromic cyclitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Certain types of iridocyclitis (364.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Certain types of iridocyclitis (364.2)\(364.21) Fuchs'' heterochromic cyclitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.21''', NULL,
+ '(364.21) Fuchs'' heterochromic cyclitis', '(364.21) Fuchs'' heterochromic cyclitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Certain types of iridocyclitis (364.2)\(364.22) Glaucomatocyclitic crises\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Certain types of iridocyclitis (364.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Certain types of iridocyclitis (364.2)\(364.22) Glaucomatocyclitic crises\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.22''', NULL,
+ '(364.22) Glaucomatocyclitic crises', '(364.22) Glaucomatocyclitic crises', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Certain types of iridocyclitis (364.2)\(364.23) Lens-induced iridocyclitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Certain types of iridocyclitis (364.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Certain types of iridocyclitis (364.2)\(364.23) Lens-induced iridocyclitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.23''', NULL,
+ '(364.23) Lens-induced iridocyclitis', '(364.23) Lens-induced iridocyclitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Certain types of iridocyclitis (364.2)\(364.24) Vogt-koyanagi syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Certain types of iridocyclitis (364.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Certain types of iridocyclitis (364.2)\(364.24) Vogt-koyanagi syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.24''', NULL,
+ '(364.24) Vogt-koyanagi syndrome', '(364.24) Vogt-koyanagi syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Chronic iridocyclitis (364.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Chronic iridocyclitis (364.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.1''', NULL,
+ 'Chronic iridocyclitis (364.1)', 'Chronic iridocyclitis (364.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Chronic iridocyclitis (364.1)\(364.10) Chronic iridocyclitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Chronic iridocyclitis (364.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Chronic iridocyclitis (364.1)\(364.10) Chronic iridocyclitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.10''', NULL,
+ '(364.10) Chronic iridocyclitis, unspecified', '(364.10) Chronic iridocyclitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Chronic iridocyclitis (364.1)\(364.11) Chronic iridocyclitis in diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Chronic iridocyclitis (364.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Chronic iridocyclitis (364.1)\(364.11) Chronic iridocyclitis in diseases classified elsewhere\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.11''', NULL,
+ '(364.11) Chronic iridocyclitis in diseases classified elsewhere', '(364.11) Chronic iridocyclitis in diseases classified elsewhere', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.6''', NULL,
+ 'Cysts of iris, ciliary body, and anterior chamber (364.6)', 'Cysts of iris, ciliary body, and anterior chamber (364.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\(364.60) Idiopathic cysts of iris, ciliary body, and anterior chamber\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\(364.60) Idiopathic cysts of iris, ciliary body, and anterior chamber\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.60''', NULL,
+ '(364.60) Idiopathic cysts of iris, ciliary body, and anterior chamber', '(364.60) Idiopathic cysts of iris, ciliary body, and anterior chamber', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\(364.61) Implantation cysts of iris, ciliary body, and anterior chamber\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\(364.61) Implantation cysts of iris, ciliary body, and anterior chamber\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.61''', NULL,
+ '(364.61) Implantation cysts of iris, ciliary body, and anterior chamber', '(364.61) Implantation cysts of iris, ciliary body, and anterior chamber', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\(364.62) Exudative cysts of iris or anterior chamber\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\(364.62) Exudative cysts of iris or anterior chamber\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.62''', NULL,
+ '(364.62) Exudative cysts of iris or anterior chamber', '(364.62) Exudative cysts of iris or anterior chamber', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\(364.63) Primary cyst of pars plana\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\(364.63) Primary cyst of pars plana\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.63''', NULL,
+ '(364.63) Primary cyst of pars plana', '(364.63) Primary cyst of pars plana', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\(364.64) Exudative cyst of pars plana\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Cysts of iris, ciliary body, and anterior chamber (364.6)\(364.64) Exudative cyst of pars plana\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.64''', NULL,
+ '(364.64) Exudative cyst of pars plana', '(364.64) Exudative cyst of pars plana', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.5''', NULL,
+ 'Degenerations of iris and ciliary body (364.5)', 'Degenerations of iris and ciliary body (364.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.51) Essential or progressive iris atrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.51) Essential or progressive iris atrophy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.51''', NULL,
+ '(364.51) Essential or progressive iris atrophy', '(364.51) Essential or progressive iris atrophy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.52) Iridoschisis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.52) Iridoschisis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.52''', NULL,
+ '(364.52) Iridoschisis', '(364.52) Iridoschisis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.53) Pigmentary iris degeneration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.53) Pigmentary iris degeneration\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.53''', NULL,
+ '(364.53) Pigmentary iris degeneration', '(364.53) Pigmentary iris degeneration', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.54) Degeneration of pupillary margin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.54) Degeneration of pupillary margin\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.54''', NULL,
+ '(364.54) Degeneration of pupillary margin', '(364.54) Degeneration of pupillary margin', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.55) Miotic cysts of pupillary margin\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.55) Miotic cysts of pupillary margin\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.55''', NULL,
+ '(364.55) Miotic cysts of pupillary margin', '(364.55) Miotic cysts of pupillary margin', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.56) Degenerative changes of chamber angle\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.56) Degenerative changes of chamber angle\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.56''', NULL,
+ '(364.56) Degenerative changes of chamber angle', '(364.56) Degenerative changes of chamber angle', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.57) Degenerative changes of ciliary body\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.57) Degenerative changes of ciliary body\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.57''', NULL,
+ '(364.57) Degenerative changes of ciliary body', '(364.57) Degenerative changes of ciliary body', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.59) Other iris atrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Degenerations of iris and ciliary body (364.5)\(364.59) Other iris atrophy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.59''', NULL,
+ '(364.59) Other iris atrophy', '(364.59) Other iris atrophy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Other disorders of iris and ciliary body (364.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Other disorders of iris and ciliary body (364.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.8''', NULL,
+ 'Other disorders of iris and ciliary body (364.8)', 'Other disorders of iris and ciliary body (364.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Other disorders of iris and ciliary body (364.8)\(364.81) Floppy iris syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Other disorders of iris and ciliary body (364.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Other disorders of iris and ciliary body (364.8)\(364.81) Floppy iris syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.81''', NULL,
+ '(364.81) Floppy iris syndrome', '(364.81) Floppy iris syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Other disorders of iris and ciliary body (364.8)\(364.89) Other disorders of iris and ciliary body\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Other disorders of iris and ciliary body (364.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Other disorders of iris and ciliary body (364.8)\(364.89) Other disorders of iris and ciliary body\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.89''', NULL,
+ '(364.89) Other disorders of iris and ciliary body', '(364.89) Other disorders of iris and ciliary body', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Vascular disorders of iris and ciliary body (364.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Vascular disorders of iris and ciliary body (364.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.4''', NULL,
+ 'Vascular disorders of iris and ciliary body (364.4)', 'Vascular disorders of iris and ciliary body (364.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Vascular disorders of iris and ciliary body (364.4)\(364.41) Hyphema of iris and ciliary body\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Vascular disorders of iris and ciliary body (364.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Vascular disorders of iris and ciliary body (364.4)\(364.41) Hyphema of iris and ciliary body\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.41''', NULL,
+ '(364.41) Hyphema of iris and ciliary body', '(364.41) Hyphema of iris and ciliary body', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Vascular disorders of iris and ciliary body (364.4)\(364.42) Rubeosis iridis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Vascular disorders of iris and ciliary body (364.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of iris and ciliary body (364)\Vascular disorders of iris and ciliary body (364.4)\(364.42) Rubeosis iridis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''364.42''', NULL,
+ '(364.42) Rubeosis iridis', '(364.42) Rubeosis iridis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375''', NULL,
+ 'Disorders of lacrimal system (375)', 'Disorders of lacrimal system (375)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\(375.9) Unspecified disorder of lacrimal system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\(375.9) Unspecified disorder of lacrimal system\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.9''', NULL,
+ '(375.9) Unspecified disorder of lacrimal system', '(375.9) Unspecified disorder of lacrimal system', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Acute and unspecified inflammation of lacrimal passages (375.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Acute and unspecified inflammation of lacrimal passages (375.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.3''', NULL,
+ 'Acute and unspecified inflammation of lacrimal passages (375.3)', 'Acute and unspecified inflammation of lacrimal passages (375.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Acute and unspecified inflammation of lacrimal passages (375.3)\(375.30) Dacryocystitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Acute and unspecified inflammation of lacrimal passages (375.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Acute and unspecified inflammation of lacrimal passages (375.3)\(375.30) Dacryocystitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.30''', NULL,
+ '(375.30) Dacryocystitis, unspecified', '(375.30) Dacryocystitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Acute and unspecified inflammation of lacrimal passages (375.3)\(375.31) Acute canaliculitis, lacrimal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Acute and unspecified inflammation of lacrimal passages (375.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Acute and unspecified inflammation of lacrimal passages (375.3)\(375.31) Acute canaliculitis, lacrimal\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.31''', NULL,
+ '(375.31) Acute canaliculitis, lacrimal', '(375.31) Acute canaliculitis, lacrimal', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Acute and unspecified inflammation of lacrimal passages (375.3)\(375.32) Acute dacryocystitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Acute and unspecified inflammation of lacrimal passages (375.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Acute and unspecified inflammation of lacrimal passages (375.3)\(375.32) Acute dacryocystitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.32''', NULL,
+ '(375.32) Acute dacryocystitis', '(375.32) Acute dacryocystitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Acute and unspecified inflammation of lacrimal passages (375.3)\(375.33) Phlegmonous dacryocystitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Acute and unspecified inflammation of lacrimal passages (375.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Acute and unspecified inflammation of lacrimal passages (375.3)\(375.33) Phlegmonous dacryocystitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.33''', NULL,
+ '(375.33) Phlegmonous dacryocystitis', '(375.33) Phlegmonous dacryocystitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Chronic inflammation of lacrimal passages (375.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Chronic inflammation of lacrimal passages (375.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.4''', NULL,
+ 'Chronic inflammation of lacrimal passages (375.4)', 'Chronic inflammation of lacrimal passages (375.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Chronic inflammation of lacrimal passages (375.4)\(375.41) Chronic canaliculitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Chronic inflammation of lacrimal passages (375.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Chronic inflammation of lacrimal passages (375.4)\(375.41) Chronic canaliculitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.41''', NULL,
+ '(375.41) Chronic canaliculitis', '(375.41) Chronic canaliculitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Chronic inflammation of lacrimal passages (375.4)\(375.42) Chronic dacryocystitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Chronic inflammation of lacrimal passages (375.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Chronic inflammation of lacrimal passages (375.4)\(375.42) Chronic dacryocystitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.42''', NULL,
+ '(375.42) Chronic dacryocystitis', '(375.42) Chronic dacryocystitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Chronic inflammation of lacrimal passages (375.4)\(375.43) Lacrimal mucocele\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Chronic inflammation of lacrimal passages (375.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Chronic inflammation of lacrimal passages (375.4)\(375.43) Lacrimal mucocele\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.43''', NULL,
+ '(375.43) Lacrimal mucocele', '(375.43) Lacrimal mucocele', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Dacryoadenitis (375.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Dacryoadenitis (375.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.0''', NULL,
+ 'Dacryoadenitis (375.0)', 'Dacryoadenitis (375.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Dacryoadenitis (375.0)\(375.00) Dacryoadenitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Dacryoadenitis (375.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Dacryoadenitis (375.0)\(375.00) Dacryoadenitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.00''', NULL,
+ '(375.00) Dacryoadenitis, unspecified', '(375.00) Dacryoadenitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Dacryoadenitis (375.0)\(375.01) Acute dacryoadenitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Dacryoadenitis (375.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Dacryoadenitis (375.0)\(375.01) Acute dacryoadenitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.01''', NULL,
+ '(375.01) Acute dacryoadenitis', '(375.01) Acute dacryoadenitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Dacryoadenitis (375.0)\(375.02) Chronic dacryoadenitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Dacryoadenitis (375.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Dacryoadenitis (375.0)\(375.02) Chronic dacryoadenitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.02''', NULL,
+ '(375.02) Chronic dacryoadenitis', '(375.02) Chronic dacryoadenitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Dacryoadenitis (375.0)\(375.03) Chronic enlargement of lacrimal gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Dacryoadenitis (375.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Dacryoadenitis (375.0)\(375.03) Chronic enlargement of lacrimal gland\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.03''', NULL,
+ '(375.03) Chronic enlargement of lacrimal gland', '(375.03) Chronic enlargement of lacrimal gland', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Epiphora (375.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Epiphora (375.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.2''', NULL,
+ 'Epiphora (375.2)', 'Epiphora (375.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Epiphora (375.2)\(375.20) Epiphora, unspecified as to cause\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Epiphora (375.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Epiphora (375.2)\(375.20) Epiphora, unspecified as to cause\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.20''', NULL,
+ '(375.20) Epiphora, unspecified as to cause', '(375.20) Epiphora, unspecified as to cause', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Epiphora (375.2)\(375.21) Epiphora due to excess lacrimation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Epiphora (375.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Epiphora (375.2)\(375.21) Epiphora due to excess lacrimation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.21''', NULL,
+ '(375.21) Epiphora due to excess lacrimation', '(375.21) Epiphora due to excess lacrimation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Epiphora (375.2)\(375.22) Epiphora due to insufficient drainage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Epiphora (375.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Epiphora (375.2)\(375.22) Epiphora due to insufficient drainage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.22''', NULL,
+ '(375.22) Epiphora due to insufficient drainage', '(375.22) Epiphora due to insufficient drainage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other changes of lacrimal passages (375.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other changes of lacrimal passages (375.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.6''', NULL,
+ 'Other changes of lacrimal passages (375.6)', 'Other changes of lacrimal passages (375.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other changes of lacrimal passages (375.6)\(375.61) Lacrimal fistula\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other changes of lacrimal passages (375.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other changes of lacrimal passages (375.6)\(375.61) Lacrimal fistula\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.61''', NULL,
+ '(375.61) Lacrimal fistula', '(375.61) Lacrimal fistula', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other changes of lacrimal passages (375.6)\(375.69) Other changes of lacrimal passages\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other changes of lacrimal passages (375.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other changes of lacrimal passages (375.6)\(375.69) Other changes of lacrimal passages\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.69''', NULL,
+ '(375.69) Other changes of lacrimal passages', '(375.69) Other changes of lacrimal passages', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.1''', NULL,
+ 'Other disorders of lacrimal gland (375.1)', 'Other disorders of lacrimal gland (375.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\(375.11) Dacryops\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\(375.11) Dacryops\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.11''', NULL,
+ '(375.11) Dacryops', '(375.11) Dacryops', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\(375.12) Other lacrimal cysts and cystic degeneration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\(375.12) Other lacrimal cysts and cystic degeneration\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.12''', NULL,
+ '(375.12) Other lacrimal cysts and cystic degeneration', '(375.12) Other lacrimal cysts and cystic degeneration', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\(375.13) Primary lacrimal atrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\(375.13) Primary lacrimal atrophy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.13''', NULL,
+ '(375.13) Primary lacrimal atrophy', '(375.13) Primary lacrimal atrophy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\(375.14) Secondary lacrimal atrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\(375.14) Secondary lacrimal atrophy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.14''', NULL,
+ '(375.14) Secondary lacrimal atrophy', '(375.14) Secondary lacrimal atrophy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\(375.15) Tear film insufficiency, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\(375.15) Tear film insufficiency, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.15''', NULL,
+ '(375.15) Tear film insufficiency, unspecified', '(375.15) Tear film insufficiency, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\(375.16) Dislocation of lacrimal gland\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal gland (375.1)\(375.16) Dislocation of lacrimal gland\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.16''', NULL,
+ '(375.16) Dislocation of lacrimal gland', '(375.16) Dislocation of lacrimal gland', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal system (375.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal system (375.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.8''', NULL,
+ 'Other disorders of lacrimal system (375.8)', 'Other disorders of lacrimal system (375.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal system (375.8)\(375.81) Granuloma of lacrimal passages\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal system (375.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal system (375.8)\(375.81) Granuloma of lacrimal passages\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.81''', NULL,
+ '(375.81) Granuloma of lacrimal passages', '(375.81) Granuloma of lacrimal passages', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal system (375.8)\(375.89) Other disorders of lacrimal system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal system (375.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Other disorders of lacrimal system (375.8)\(375.89) Other disorders of lacrimal system\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.89''', NULL,
+ '(375.89) Other disorders of lacrimal system', '(375.89) Other disorders of lacrimal system', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.5''', NULL,
+ 'Stenosis and insufficiency of lacrimal passages (375.5)', 'Stenosis and insufficiency of lacrimal passages (375.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\(375.51) Eversion of lacrimal punctum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\(375.51) Eversion of lacrimal punctum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.51''', NULL,
+ '(375.51) Eversion of lacrimal punctum', '(375.51) Eversion of lacrimal punctum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\(375.52) Stenosis of lacrimal punctum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\(375.52) Stenosis of lacrimal punctum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.52''', NULL,
+ '(375.52) Stenosis of lacrimal punctum', '(375.52) Stenosis of lacrimal punctum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\(375.53) Stenosis of lacrimal canaliculi\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\(375.53) Stenosis of lacrimal canaliculi\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.53''', NULL,
+ '(375.53) Stenosis of lacrimal canaliculi', '(375.53) Stenosis of lacrimal canaliculi', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\(375.54) Stenosis of lacrimal sac\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\(375.54) Stenosis of lacrimal sac\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.54''', NULL,
+ '(375.54) Stenosis of lacrimal sac', '(375.54) Stenosis of lacrimal sac', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\(375.55) Obstruction of nasolacrimal duct, neonatal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\(375.55) Obstruction of nasolacrimal duct, neonatal\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.55''', NULL,
+ '(375.55) Obstruction of nasolacrimal duct, neonatal', '(375.55) Obstruction of nasolacrimal duct, neonatal', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\(375.56) Stenosis of nasolacrimal duct, acquired\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\(375.56) Stenosis of nasolacrimal duct, acquired\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.56''', NULL,
+ '(375.56) Stenosis of nasolacrimal duct, acquired', '(375.56) Stenosis of nasolacrimal duct, acquired', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\(375.57) Dacryolith\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of lacrimal system (375)\Stenosis and insufficiency of lacrimal passages (375.5)\(375.57) Dacryolith\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''375.57''', NULL,
+ '(375.57) Dacryolith', '(375.57) Dacryolith', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377''', NULL,
+ 'Disorders of optic nerve and visual pathways (377)', 'Disorders of optic nerve and visual pathways (377)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\(377.9) Unspecified disorder of optic nerve and visual pathways\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\(377.9) Unspecified disorder of optic nerve and visual pathways\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.9''', NULL,
+ '(377.9) Unspecified disorder of optic nerve and visual pathways', '(377.9) Unspecified disorder of optic nerve and visual pathways', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of optic chiasm (377.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of optic chiasm (377.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.5''', NULL,
+ 'Disorders of optic chiasm (377.5)', 'Disorders of optic chiasm (377.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of optic chiasm (377.5)\(377.51) Disorders of optic chiasm associated with pituitary neoplasms and disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of optic chiasm (377.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of optic chiasm (377.5)\(377.51) Disorders of optic chiasm associated with pituitary neoplasms and disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.51''', NULL,
+ '(377.51) Disorders of optic chiasm associated with pituitary neoplasms and disorders', '(377.51) Disorders of optic chiasm associated with pituitary neoplasms and disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of optic chiasm (377.5)\(377.52) Disorders of optic chiasm associated with other neoplasms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of optic chiasm (377.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of optic chiasm (377.5)\(377.52) Disorders of optic chiasm associated with other neoplasms\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.52''', NULL,
+ '(377.52) Disorders of optic chiasm associated with other neoplasms', '(377.52) Disorders of optic chiasm associated with other neoplasms', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of optic chiasm (377.5)\(377.53) Disorders of optic chiasm associated with vascular disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of optic chiasm (377.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of optic chiasm (377.5)\(377.53) Disorders of optic chiasm associated with vascular disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.53''', NULL,
+ '(377.53) Disorders of optic chiasm associated with vascular disorders', '(377.53) Disorders of optic chiasm associated with vascular disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of optic chiasm (377.5)\(377.54) Disorders of optic chiasm associated with inflammatory disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of optic chiasm (377.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of optic chiasm (377.5)\(377.54) Disorders of optic chiasm associated with inflammatory disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.54''', NULL,
+ '(377.54) Disorders of optic chiasm associated with inflammatory disorders', '(377.54) Disorders of optic chiasm associated with inflammatory disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of other visual pathways (377.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of other visual pathways (377.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.6''', NULL,
+ 'Disorders of other visual pathways (377.6)', 'Disorders of other visual pathways (377.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of other visual pathways (377.6)\(377.61) Disorders of other visual pathways associated with neoplasms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of other visual pathways (377.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of other visual pathways (377.6)\(377.61) Disorders of other visual pathways associated with neoplasms\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.61''', NULL,
+ '(377.61) Disorders of other visual pathways associated with neoplasms', '(377.61) Disorders of other visual pathways associated with neoplasms', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of other visual pathways (377.6)\(377.62) Disorders of other visual pathways associated with vascular disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of other visual pathways (377.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of other visual pathways (377.6)\(377.62) Disorders of other visual pathways associated with vascular disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.62''', NULL,
+ '(377.62) Disorders of other visual pathways associated with vascular disorders', '(377.62) Disorders of other visual pathways associated with vascular disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of other visual pathways (377.6)\(377.63) Disorders of other visual pathways associated with inflammatory disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of other visual pathways (377.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of other visual pathways (377.6)\(377.63) Disorders of other visual pathways associated with inflammatory disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.63''', NULL,
+ '(377.63) Disorders of other visual pathways associated with inflammatory disorders', '(377.63) Disorders of other visual pathways associated with inflammatory disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of visual cortex (377.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of visual cortex (377.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.7''', NULL,
+ 'Disorders of visual cortex (377.7)', 'Disorders of visual cortex (377.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of visual cortex (377.7)\(377.71) Disorders of visual cortex associated with neoplasms\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of visual cortex (377.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of visual cortex (377.7)\(377.71) Disorders of visual cortex associated with neoplasms\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.71''', NULL,
+ '(377.71) Disorders of visual cortex associated with neoplasms', '(377.71) Disorders of visual cortex associated with neoplasms', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of visual cortex (377.7)\(377.72) Disorders of visual cortex associated with vascular disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of visual cortex (377.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of visual cortex (377.7)\(377.72) Disorders of visual cortex associated with vascular disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.72''', NULL,
+ '(377.72) Disorders of visual cortex associated with vascular disorders', '(377.72) Disorders of visual cortex associated with vascular disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of visual cortex (377.7)\(377.73) Disorders of visual cortex associated with inflammatory disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of visual cortex (377.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of visual cortex (377.7)\(377.73) Disorders of visual cortex associated with inflammatory disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.73''', NULL,
+ '(377.73) Disorders of visual cortex associated with inflammatory disorders', '(377.73) Disorders of visual cortex associated with inflammatory disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of visual cortex (377.7)\(377.75) Cortical blindness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of visual cortex (377.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Disorders of visual cortex (377.7)\(377.75) Cortical blindness\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.75''', NULL,
+ '(377.75) Cortical blindness', '(377.75) Cortical blindness', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.1''', NULL,
+ 'Optic atrophy (377.1)', 'Optic atrophy (377.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\(377.10) Optic atrophy, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\(377.10) Optic atrophy, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.10''', NULL,
+ '(377.10) Optic atrophy, unspecified', '(377.10) Optic atrophy, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\(377.11) Primary optic atrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\(377.11) Primary optic atrophy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.11''', NULL,
+ '(377.11) Primary optic atrophy', '(377.11) Primary optic atrophy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\(377.12) Postinflammatory optic atrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\(377.12) Postinflammatory optic atrophy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.12''', NULL,
+ '(377.12) Postinflammatory optic atrophy', '(377.12) Postinflammatory optic atrophy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\(377.13) Optic atrophy associated with retinal dystrophies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\(377.13) Optic atrophy associated with retinal dystrophies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.13''', NULL,
+ '(377.13) Optic atrophy associated with retinal dystrophies', '(377.13) Optic atrophy associated with retinal dystrophies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\(377.14) Glaucomatous atrophy [cupping] of optic disc\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\(377.14) Glaucomatous atrophy [cupping] of optic disc\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.14''', NULL,
+ '(377.14) Glaucomatous atrophy [cupping] of optic disc', '(377.14) Glaucomatous atrophy [cupping] of optic disc', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\(377.15) Partial optic atrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\(377.15) Partial optic atrophy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.15''', NULL,
+ '(377.15) Partial optic atrophy', '(377.15) Partial optic atrophy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\(377.16) Hereditary optic atrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic atrophy (377.1)\(377.16) Hereditary optic atrophy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.16''', NULL,
+ '(377.16) Hereditary optic atrophy', '(377.16) Hereditary optic atrophy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.3''', NULL,
+ 'Optic neuritis (377.3)', 'Optic neuritis (377.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\(377.30) Optic neuritis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\(377.30) Optic neuritis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.30''', NULL,
+ '(377.30) Optic neuritis, unspecified', '(377.30) Optic neuritis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\(377.31) Optic papillitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\(377.31) Optic papillitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.31''', NULL,
+ '(377.31) Optic papillitis', '(377.31) Optic papillitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\(377.32) Retrobulbar neuritis (acute)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\(377.32) Retrobulbar neuritis (acute)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.32) Retrobulbar neuritis (acute''', NULL,
+ '(377.32) Retrobulbar neuritis (acute)', '(377.32) Retrobulbar neuritis (acute)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\(377.33) Nutritional optic neuropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\(377.33) Nutritional optic neuropathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.33''', NULL,
+ '(377.33) Nutritional optic neuropathy', '(377.33) Nutritional optic neuropathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\(377.34) Toxic optic neuropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\(377.34) Toxic optic neuropathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.34''', NULL,
+ '(377.34) Toxic optic neuropathy', '(377.34) Toxic optic neuropathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\(377.39) Other optic neuritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Optic neuritis (377.3)\(377.39) Other optic neuritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.39''', NULL,
+ '(377.39) Other optic neuritis', '(377.39) Other optic neuritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic disc (377.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic disc (377.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.2''', NULL,
+ 'Other disorders of optic disc (377.2)', 'Other disorders of optic disc (377.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic disc (377.2)\(377.21) Drusen of optic disc\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic disc (377.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic disc (377.2)\(377.21) Drusen of optic disc\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.21''', NULL,
+ '(377.21) Drusen of optic disc', '(377.21) Drusen of optic disc', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic disc (377.2)\(377.22) Crater-like holes of optic disc\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic disc (377.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic disc (377.2)\(377.22) Crater-like holes of optic disc\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.22''', NULL,
+ '(377.22) Crater-like holes of optic disc', '(377.22) Crater-like holes of optic disc', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic disc (377.2)\(377.23) Coloboma of optic disc\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic disc (377.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic disc (377.2)\(377.23) Coloboma of optic disc\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.23''', NULL,
+ '(377.23) Coloboma of optic disc', '(377.23) Coloboma of optic disc', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic disc (377.2)\(377.24) Pseudopapilledema\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic disc (377.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic disc (377.2)\(377.24) Pseudopapilledema\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.24''', NULL,
+ '(377.24) Pseudopapilledema', '(377.24) Pseudopapilledema', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic nerve (377.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic nerve (377.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.4''', NULL,
+ 'Other disorders of optic nerve (377.4)', 'Other disorders of optic nerve (377.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic nerve (377.4)\(377.41) Ischemic optic neuropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic nerve (377.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic nerve (377.4)\(377.41) Ischemic optic neuropathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.41''', NULL,
+ '(377.41) Ischemic optic neuropathy', '(377.41) Ischemic optic neuropathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic nerve (377.4)\(377.42) Hemorrhage in optic nerve sheaths\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic nerve (377.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic nerve (377.4)\(377.42) Hemorrhage in optic nerve sheaths\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.42''', NULL,
+ '(377.42) Hemorrhage in optic nerve sheaths', '(377.42) Hemorrhage in optic nerve sheaths', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic nerve (377.4)\(377.43) Optic nerve hypoplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic nerve (377.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic nerve (377.4)\(377.43) Optic nerve hypoplasia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.43''', NULL,
+ '(377.43) Optic nerve hypoplasia', '(377.43) Optic nerve hypoplasia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic nerve (377.4)\(377.49) Other disorders of optic nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic nerve (377.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Other disorders of optic nerve (377.4)\(377.49) Other disorders of optic nerve\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.49''', NULL,
+ '(377.49) Other disorders of optic nerve', '(377.49) Other disorders of optic nerve', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.0''', NULL,
+ 'Papilledema (377.0)', 'Papilledema (377.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\(377.00) Papilledema, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\(377.00) Papilledema, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.00''', NULL,
+ '(377.00) Papilledema, unspecified', '(377.00) Papilledema, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\(377.01) Papilledema associated with increased intracranial pressure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\(377.01) Papilledema associated with increased intracranial pressure\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.01''', NULL,
+ '(377.01) Papilledema associated with increased intracranial pressure', '(377.01) Papilledema associated with increased intracranial pressure', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\(377.02) Papilledema associated with decreased ocular pressure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\(377.02) Papilledema associated with decreased ocular pressure\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.02''', NULL,
+ '(377.02) Papilledema associated with decreased ocular pressure', '(377.02) Papilledema associated with decreased ocular pressure', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\(377.03) Papilledema associated with retinal disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\(377.03) Papilledema associated with retinal disorder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.03''', NULL,
+ '(377.03) Papilledema associated with retinal disorder', '(377.03) Papilledema associated with retinal disorder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\(377.04) Foster-Kennedy syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of optic nerve and visual pathways (377)\Papilledema (377.0)\(377.04) Foster-Kennedy syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''377.04''', NULL,
+ '(377.04) Foster-Kennedy syndrome', '(377.04) Foster-Kennedy syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367''', NULL,
+ 'Disorders of refraction and accommodation (367)', 'Disorders of refraction and accommodation (367)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\(367.0) Hypermetropia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\(367.0) Hypermetropia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.0''', NULL,
+ '(367.0) Hypermetropia', '(367.0) Hypermetropia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\(367.1) Myopia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\(367.1) Myopia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.1''', NULL,
+ '(367.1) Myopia', '(367.1) Myopia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\(367.4) Presbyopia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\(367.4) Presbyopia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.4''', NULL,
+ '(367.4) Presbyopia', '(367.4) Presbyopia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\(367.9) Unspecified disorder of refraction and accommodation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\(367.9) Unspecified disorder of refraction and accommodation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.9''', NULL,
+ '(367.9) Unspecified disorder of refraction and accommodation', '(367.9) Unspecified disorder of refraction and accommodation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Anisometropia and aniseikonia (367.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Anisometropia and aniseikonia (367.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.3''', NULL,
+ 'Anisometropia and aniseikonia (367.3)', 'Anisometropia and aniseikonia (367.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Anisometropia and aniseikonia (367.3)\(367.31) Anisometropia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Anisometropia and aniseikonia (367.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Anisometropia and aniseikonia (367.3)\(367.31) Anisometropia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.31''', NULL,
+ '(367.31) Anisometropia', '(367.31) Anisometropia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Anisometropia and aniseikonia (367.3)\(367.32) Aniseikonia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Anisometropia and aniseikonia (367.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Anisometropia and aniseikonia (367.3)\(367.32) Aniseikonia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.32''', NULL,
+ '(367.32) Aniseikonia', '(367.32) Aniseikonia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Astigmatism (367.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Astigmatism (367.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.2''', NULL,
+ 'Astigmatism (367.2)', 'Astigmatism (367.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Astigmatism (367.2)\(367.20) Astigmatism, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Astigmatism (367.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Astigmatism (367.2)\(367.20) Astigmatism, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.20''', NULL,
+ '(367.20) Astigmatism, unspecified', '(367.20) Astigmatism, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Astigmatism (367.2)\(367.21) Regular astigmatism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Astigmatism (367.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Astigmatism (367.2)\(367.21) Regular astigmatism\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.21''', NULL,
+ '(367.21) Regular astigmatism', '(367.21) Regular astigmatism', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Astigmatism (367.2)\(367.22) Irregular astigmatism\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Astigmatism (367.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Astigmatism (367.2)\(367.22) Irregular astigmatism\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.22''', NULL,
+ '(367.22) Irregular astigmatism', '(367.22) Irregular astigmatism', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Disorders of accommodation (367.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Disorders of accommodation (367.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.5''', NULL,
+ 'Disorders of accommodation (367.5)', 'Disorders of accommodation (367.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Disorders of accommodation (367.5)\(367.51) Paresis of accommodation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Disorders of accommodation (367.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Disorders of accommodation (367.5)\(367.51) Paresis of accommodation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.51''', NULL,
+ '(367.51) Paresis of accommodation', '(367.51) Paresis of accommodation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Disorders of accommodation (367.5)\(367.52) Total or complete internal ophthalmoplegia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Disorders of accommodation (367.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Disorders of accommodation (367.5)\(367.52) Total or complete internal ophthalmoplegia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.52''', NULL,
+ '(367.52) Total or complete internal ophthalmoplegia', '(367.52) Total or complete internal ophthalmoplegia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Disorders of accommodation (367.5)\(367.53) Spasm of accommodation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Disorders of accommodation (367.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Disorders of accommodation (367.5)\(367.53) Spasm of accommodation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.53''', NULL,
+ '(367.53) Spasm of accommodation', '(367.53) Spasm of accommodation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Other disorders of refraction and accommodation (367.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Other disorders of refraction and accommodation (367.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.8''', NULL,
+ 'Other disorders of refraction and accommodation (367.8)', 'Other disorders of refraction and accommodation (367.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Other disorders of refraction and accommodation (367.8)\(367.81) Transient refractive change\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Other disorders of refraction and accommodation (367.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Other disorders of refraction and accommodation (367.8)\(367.81) Transient refractive change\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.81''', NULL,
+ '(367.81) Transient refractive change', '(367.81) Transient refractive change', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Other disorders of refraction and accommodation (367.8)\(367.89) Other disorders of refraction and accommodation\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Other disorders of refraction and accommodation (367.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of refraction and accommodation (367)\Other disorders of refraction and accommodation (367.8)\(367.89) Other disorders of refraction and accommodation\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''367.89''', NULL,
+ '(367.89) Other disorders of refraction and accommodation', '(367.89) Other disorders of refraction and accommodation', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360''', NULL,
+ 'Disorders of the globe (360)', 'Disorders of the globe (360)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\(360.9) Unspecified disorder of globe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\(360.9) Unspecified disorder of globe\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.9''', NULL,
+ '(360.9) Unspecified disorder of globe', '(360.9) Unspecified disorder of globe', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.4''', NULL,
+ 'Degenerated conditions of globe (360.4)', 'Degenerated conditions of globe (360.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\(360.40) Degenerated globe or eye, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\(360.40) Degenerated globe or eye, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.40''', NULL,
+ '(360.40) Degenerated globe or eye, unspecified', '(360.40) Degenerated globe or eye, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\(360.41) Blind hypotensive eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\(360.41) Blind hypotensive eye\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.41''', NULL,
+ '(360.41) Blind hypotensive eye', '(360.41) Blind hypotensive eye', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\(360.42) Blind hypertensive eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\(360.42) Blind hypertensive eye\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.42''', NULL,
+ '(360.42) Blind hypertensive eye', '(360.42) Blind hypertensive eye', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\(360.43) Hemophthalmos, except current injury\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\(360.43) Hemophthalmos, except current injury\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.43''', NULL,
+ '(360.43) Hemophthalmos, except current injury', '(360.43) Hemophthalmos, except current injury', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\(360.44) Leucocoria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerated conditions of globe (360.4)\(360.44) Leucocoria\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.44''', NULL,
+ '(360.44) Leucocoria', '(360.44) Leucocoria', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.2''', NULL,
+ 'Degenerative disorders of globe (360.2)', 'Degenerative disorders of globe (360.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\(360.20) Degenerative disorder of globe, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\(360.20) Degenerative disorder of globe, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.20''', NULL,
+ '(360.20) Degenerative disorder of globe, unspecified', '(360.20) Degenerative disorder of globe, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\(360.21) Progressive high (degenerative) myopia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\(360.21) Progressive high (degenerative) myopia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.21) Progressive high (degenerative''', NULL,
+ '(360.21) Progressive high (degenerative) myopia', '(360.21) Progressive high (degenerative) myopia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\(360.23) Siderosis of globe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\(360.23) Siderosis of globe\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.23''', NULL,
+ '(360.23) Siderosis of globe', '(360.23) Siderosis of globe', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\(360.24) Other metallosis of globe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\(360.24) Other metallosis of globe\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.24''', NULL,
+ '(360.24) Other metallosis of globe', '(360.24) Other metallosis of globe', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\(360.29) Other degenerative disorders of globe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Degenerative disorders of globe (360.2)\(360.29) Other degenerative disorders of globe\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.29''', NULL,
+ '(360.29) Other degenerative disorders of globe', '(360.29) Other degenerative disorders of globe', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.3''', NULL,
+ 'Hypotony of eye (360.3)', 'Hypotony of eye (360.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\(360.30) Hypotony of eye, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\(360.30) Hypotony of eye, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.30''', NULL,
+ '(360.30) Hypotony of eye, unspecified', '(360.30) Hypotony of eye, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\(360.31) Primary hypotony of eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\(360.31) Primary hypotony of eye\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.31''', NULL,
+ '(360.31) Primary hypotony of eye', '(360.31) Primary hypotony of eye', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\(360.32) Ocular fistula causing hypotony\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\(360.32) Ocular fistula causing hypotony\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.32''', NULL,
+ '(360.32) Ocular fistula causing hypotony', '(360.32) Ocular fistula causing hypotony', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\(360.33) Hypotony associated with other ocular disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\(360.33) Hypotony associated with other ocular disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.33''', NULL,
+ '(360.33) Hypotony associated with other ocular disorders', '(360.33) Hypotony associated with other ocular disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\(360.34) Flat anterior chamber of eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Hypotony of eye (360.3)\(360.34) Flat anterior chamber of eye\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.34''', NULL,
+ '(360.34) Flat anterior chamber of eye', '(360.34) Flat anterior chamber of eye', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other disorders of globe (360.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other disorders of globe (360.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.8''', NULL,
+ 'Other disorders of globe (360.8)', 'Other disorders of globe (360.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other disorders of globe (360.8)\(360.81) Luxation of globe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other disorders of globe (360.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other disorders of globe (360.8)\(360.81) Luxation of globe\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.81''', NULL,
+ '(360.81) Luxation of globe', '(360.81) Luxation of globe', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other disorders of globe (360.8)\(360.89) Other disorders of globe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other disorders of globe (360.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other disorders of globe (360.8)\(360.89) Other disorders of globe\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.89''', NULL,
+ '(360.89) Other disorders of globe', '(360.89) Other disorders of globe', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.1''', NULL,
+ 'Other endophthalmitis (360.1)', 'Other endophthalmitis (360.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\(360.11) Sympathetic uveitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\(360.11) Sympathetic uveitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.11''', NULL,
+ '(360.11) Sympathetic uveitis', '(360.11) Sympathetic uveitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\(360.12) Panuveitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\(360.12) Panuveitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.12''', NULL,
+ '(360.12) Panuveitis', '(360.12) Panuveitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\(360.13) Parasitic endophthalmitis NOS\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\(360.13) Parasitic endophthalmitis NOS\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.13''', NULL,
+ '(360.13) Parasitic endophthalmitis NOS', '(360.13) Parasitic endophthalmitis NOS', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\(360.14) Ophthalmia nodosa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\(360.14) Ophthalmia nodosa\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.14''', NULL,
+ '(360.14) Ophthalmia nodosa', '(360.14) Ophthalmia nodosa', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\(360.19) Other endophthalmitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Other endophthalmitis (360.1)\(360.19) Other endophthalmitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.19''', NULL,
+ '(360.19) Other endophthalmitis', '(360.19) Other endophthalmitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.0''', NULL,
+ 'Purulent endophthalmitis (360.0)', 'Purulent endophthalmitis (360.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\(360.00) Purulent endophthalmitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\(360.00) Purulent endophthalmitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.00''', NULL,
+ '(360.00) Purulent endophthalmitis, unspecified', '(360.00) Purulent endophthalmitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\(360.01) Acute endophthalmitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\(360.01) Acute endophthalmitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.01''', NULL,
+ '(360.01) Acute endophthalmitis', '(360.01) Acute endophthalmitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\(360.02) Panophthalmitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\(360.02) Panophthalmitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.02''', NULL,
+ '(360.02) Panophthalmitis', '(360.02) Panophthalmitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\(360.03) Chronic endophthalmitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\(360.03) Chronic endophthalmitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.03''', NULL,
+ '(360.03) Chronic endophthalmitis', '(360.03) Chronic endophthalmitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\(360.04) Vitreous abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Purulent endophthalmitis (360.0)\(360.04) Vitreous abscess\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.04''', NULL,
+ '(360.04) Vitreous abscess', '(360.04) Vitreous abscess', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''old) intraocular foreign body, magnetic (360.5''', NULL,
+ 'Retained (old) intraocular foreign body, magnetic (360.5)', 'Retained (old) intraocular foreign body, magnetic (360.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\(360.50) Foreign body, magnetic, intraocular, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\(360.50) Foreign body, magnetic, intraocular, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.50''', NULL,
+ '(360.50) Foreign body, magnetic, intraocular, unspecified', '(360.50) Foreign body, magnetic, intraocular, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\(360.51) Foreign body, magnetic, in anterior chamber of eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\(360.51) Foreign body, magnetic, in anterior chamber of eye\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.51''', NULL,
+ '(360.51) Foreign body, magnetic, in anterior chamber of eye', '(360.51) Foreign body, magnetic, in anterior chamber of eye', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\(360.52) Foreign body, magnetic, in iris or ciliary body\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\(360.52) Foreign body, magnetic, in iris or ciliary body\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.52''', NULL,
+ '(360.52) Foreign body, magnetic, in iris or ciliary body', '(360.52) Foreign body, magnetic, in iris or ciliary body', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\(360.53) Foreign body, magnetic, in lens\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\(360.53) Foreign body, magnetic, in lens\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.53''', NULL,
+ '(360.53) Foreign body, magnetic, in lens', '(360.53) Foreign body, magnetic, in lens', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\(360.54) Foreign body, magnetic, in vitreous\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\(360.54) Foreign body, magnetic, in vitreous\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.54''', NULL,
+ '(360.54) Foreign body, magnetic, in vitreous', '(360.54) Foreign body, magnetic, in vitreous', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\(360.55) Foreign body, magnetic, in posterior wall\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\(360.55) Foreign body, magnetic, in posterior wall\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.55''', NULL,
+ '(360.55) Foreign body, magnetic, in posterior wall', '(360.55) Foreign body, magnetic, in posterior wall', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\(360.59) Intraocular foreign body, magnetic, in other or multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, magnetic (360.5)\(360.59) Intraocular foreign body, magnetic, in other or multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.59''', NULL,
+ '(360.59) Intraocular foreign body, magnetic, in other or multiple sites', '(360.59) Intraocular foreign body, magnetic, in other or multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''old) intraocular foreign body, nonmagnetic (360.6''', NULL,
+ 'Retained (old) intraocular foreign body, nonmagnetic (360.6)', 'Retained (old) intraocular foreign body, nonmagnetic (360.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\(360.60) Foreign body, intraocular, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\(360.60) Foreign body, intraocular, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.60''', NULL,
+ '(360.60) Foreign body, intraocular, unspecified', '(360.60) Foreign body, intraocular, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\(360.61) Foreign body in anterior chamber\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\(360.61) Foreign body in anterior chamber\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.61''', NULL,
+ '(360.61) Foreign body in anterior chamber', '(360.61) Foreign body in anterior chamber', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\(360.62) Foreign body in iris or ciliary body\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\(360.62) Foreign body in iris or ciliary body\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.62''', NULL,
+ '(360.62) Foreign body in iris or ciliary body', '(360.62) Foreign body in iris or ciliary body', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\(360.63) Foreign body in lens\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\(360.63) Foreign body in lens\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.63''', NULL,
+ '(360.63) Foreign body in lens', '(360.63) Foreign body in lens', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\(360.64) Foreign body in vitreous\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\(360.64) Foreign body in vitreous\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.64''', NULL,
+ '(360.64) Foreign body in vitreous', '(360.64) Foreign body in vitreous', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\(360.65) Foreign body in posterior wall of eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\(360.65) Foreign body in posterior wall of eye\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.65''', NULL,
+ '(360.65) Foreign body in posterior wall of eye', '(360.65) Foreign body in posterior wall of eye', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\(360.69) Intraocular foreign body in other or multiple sites\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the globe (360)\Retained (old) intraocular foreign body, nonmagnetic (360.6)\(360.69) Intraocular foreign body in other or multiple sites\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''360.69''', NULL,
+ '(360.69) Intraocular foreign body in other or multiple sites', '(360.69) Intraocular foreign body in other or multiple sites', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376''', NULL,
+ 'Disorders of the orbit (376)', 'Disorders of the orbit (376)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\(376.6) Retained (old) foreign body following penetrating wound of orbit\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\(376.6) Retained (old) foreign body following penetrating wound of orbit\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.6) Retained (old''', NULL,
+ '(376.6) Retained (old) foreign body following penetrating wound of orbit', '(376.6) Retained (old) foreign body following penetrating wound of orbit', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\(376.9) Unspecified disorder of orbit\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\(376.9) Unspecified disorder of orbit\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.9''', NULL,
+ '(376.9) Unspecified disorder of orbit', '(376.9) Unspecified disorder of orbit', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.0''', NULL,
+ 'Acute inflammation of orbit (376.0)', 'Acute inflammation of orbit (376.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\(376.00) Acute inflammation of orbit, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\(376.00) Acute inflammation of orbit, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.00''', NULL,
+ '(376.00) Acute inflammation of orbit, unspecified', '(376.00) Acute inflammation of orbit, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\(376.01) Orbital cellulitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\(376.01) Orbital cellulitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.01''', NULL,
+ '(376.01) Orbital cellulitis', '(376.01) Orbital cellulitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\(376.02) Orbital periostitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\(376.02) Orbital periostitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.02''', NULL,
+ '(376.02) Orbital periostitis', '(376.02) Orbital periostitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\(376.03) Orbital osteomyelitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\(376.03) Orbital osteomyelitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.03''', NULL,
+ '(376.03) Orbital osteomyelitis', '(376.03) Orbital osteomyelitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\(376.04) Orbital tenonitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Acute inflammation of orbit (376.0)\(376.04) Orbital tenonitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.04''', NULL,
+ '(376.04) Orbital tenonitis', '(376.04) Orbital tenonitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Chronic inflammatory disorders of orbit (376.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Chronic inflammatory disorders of orbit (376.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.1''', NULL,
+ 'Chronic inflammatory disorders of orbit (376.1)', 'Chronic inflammatory disorders of orbit (376.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Chronic inflammatory disorders of orbit (376.1)\(376.10) Chronic inflammation of orbit, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Chronic inflammatory disorders of orbit (376.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Chronic inflammatory disorders of orbit (376.1)\(376.10) Chronic inflammation of orbit, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.10''', NULL,
+ '(376.10) Chronic inflammation of orbit, unspecified', '(376.10) Chronic inflammation of orbit, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Chronic inflammatory disorders of orbit (376.1)\(376.11) Orbital granuloma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Chronic inflammatory disorders of orbit (376.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Chronic inflammatory disorders of orbit (376.1)\(376.11) Orbital granuloma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.11''', NULL,
+ '(376.11) Orbital granuloma', '(376.11) Orbital granuloma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Chronic inflammatory disorders of orbit (376.1)\(376.12) Orbital myositis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Chronic inflammatory disorders of orbit (376.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Chronic inflammatory disorders of orbit (376.1)\(376.12) Orbital myositis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.12''', NULL,
+ '(376.12) Orbital myositis', '(376.12) Orbital myositis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Chronic inflammatory disorders of orbit (376.1)\(376.13) Parasitic infestation of orbit\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Chronic inflammatory disorders of orbit (376.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Chronic inflammatory disorders of orbit (376.1)\(376.13) Parasitic infestation of orbit\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.13''', NULL,
+ '(376.13) Parasitic infestation of orbit', '(376.13) Parasitic infestation of orbit', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.4''', NULL,
+ 'Deformity of orbit (376.4)', 'Deformity of orbit (376.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.40) Deformity of orbit, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.40) Deformity of orbit, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.40''', NULL,
+ '(376.40) Deformity of orbit, unspecified', '(376.40) Deformity of orbit, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.41) Hypertelorism of orbit\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.41) Hypertelorism of orbit\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.41''', NULL,
+ '(376.41) Hypertelorism of orbit', '(376.41) Hypertelorism of orbit', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.42) Exostosis of orbit\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.42) Exostosis of orbit\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.42''', NULL,
+ '(376.42) Exostosis of orbit', '(376.42) Exostosis of orbit', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.43) Local deformities of orbit due to bone disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.43) Local deformities of orbit due to bone disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.43''', NULL,
+ '(376.43) Local deformities of orbit due to bone disease', '(376.43) Local deformities of orbit due to bone disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.44) Orbital deformities associated with craniofacial deformities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.44) Orbital deformities associated with craniofacial deformities\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.44''', NULL,
+ '(376.44) Orbital deformities associated with craniofacial deformities', '(376.44) Orbital deformities associated with craniofacial deformities', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.45) Atrophy of orbit\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.45) Atrophy of orbit\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.45''', NULL,
+ '(376.45) Atrophy of orbit', '(376.45) Atrophy of orbit', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.46) Enlargement of orbit\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.46) Enlargement of orbit\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.46''', NULL,
+ '(376.46) Enlargement of orbit', '(376.46) Enlargement of orbit', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.47) Deformity of orbit due to trauma or surgery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Deformity of orbit (376.4)\(376.47) Deformity of orbit due to trauma or surgery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.47''', NULL,
+ '(376.47) Deformity of orbit due to trauma or surgery', '(376.47) Deformity of orbit due to trauma or surgery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Endocrine exophthalmos (376.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Endocrine exophthalmos (376.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.2''', NULL,
+ 'Endocrine exophthalmos (376.2)', 'Endocrine exophthalmos (376.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Endocrine exophthalmos (376.2)\(376.21) Thyrotoxic exophthalmos\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Endocrine exophthalmos (376.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Endocrine exophthalmos (376.2)\(376.21) Thyrotoxic exophthalmos\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.21''', NULL,
+ '(376.21) Thyrotoxic exophthalmos', '(376.21) Thyrotoxic exophthalmos', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Endocrine exophthalmos (376.2)\(376.22) Exophthalmic ophthalmoplegia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Endocrine exophthalmos (376.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Endocrine exophthalmos (376.2)\(376.22) Exophthalmic ophthalmoplegia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.22''', NULL,
+ '(376.22) Exophthalmic ophthalmoplegia', '(376.22) Exophthalmic ophthalmoplegia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Enophthalmos (376.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Enophthalmos (376.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.5''', NULL,
+ 'Enophthalmos (376.5)', 'Enophthalmos (376.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Enophthalmos (376.5)\(376.50) Enophthalmos, unspecified as to cause\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Enophthalmos (376.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Enophthalmos (376.5)\(376.50) Enophthalmos, unspecified as to cause\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.50''', NULL,
+ '(376.50) Enophthalmos, unspecified as to cause', '(376.50) Enophthalmos, unspecified as to cause', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Enophthalmos (376.5)\(376.51) Enophthalmos due to atrophy of orbital tissue\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Enophthalmos (376.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Enophthalmos (376.5)\(376.51) Enophthalmos due to atrophy of orbital tissue\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.51''', NULL,
+ '(376.51) Enophthalmos due to atrophy of orbital tissue', '(376.51) Enophthalmos due to atrophy of orbital tissue', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Enophthalmos (376.5)\(376.52) Enophthalmos due to trauma or surgery\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Enophthalmos (376.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Enophthalmos (376.5)\(376.52) Enophthalmos due to trauma or surgery\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.52''', NULL,
+ '(376.52) Enophthalmos due to trauma or surgery', '(376.52) Enophthalmos due to trauma or surgery', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.3''', NULL,
+ 'Other exophthalmic conditions (376.3)', 'Other exophthalmic conditions (376.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\(376.30) Exophthalmos, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\(376.30) Exophthalmos, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.30''', NULL,
+ '(376.30) Exophthalmos, unspecified', '(376.30) Exophthalmos, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\(376.31) Constant exophthalmos\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\(376.31) Constant exophthalmos\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.31''', NULL,
+ '(376.31) Constant exophthalmos', '(376.31) Constant exophthalmos', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\(376.32) Orbital hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\(376.32) Orbital hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.32''', NULL,
+ '(376.32) Orbital hemorrhage', '(376.32) Orbital hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\(376.33) Orbital edema or congestion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\(376.33) Orbital edema or congestion\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.33''', NULL,
+ '(376.33) Orbital edema or congestion', '(376.33) Orbital edema or congestion', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\(376.34) Intermittent exophthalmos\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\(376.34) Intermittent exophthalmos\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.34''', NULL,
+ '(376.34) Intermittent exophthalmos', '(376.34) Intermittent exophthalmos', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\(376.35) Pulsating exophthalmos\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\(376.35) Pulsating exophthalmos\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.35''', NULL,
+ '(376.35) Pulsating exophthalmos', '(376.35) Pulsating exophthalmos', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\(376.36) Lateral displacement of globe\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other exophthalmic conditions (376.3)\(376.36) Lateral displacement of globe\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.36''', NULL,
+ '(376.36) Lateral displacement of globe', '(376.36) Lateral displacement of globe', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other orbital disorders (376.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other orbital disorders (376.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.8''', NULL,
+ 'Other orbital disorders (376.8)', 'Other orbital disorders (376.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other orbital disorders (376.8)\(376.81) Orbital cysts\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other orbital disorders (376.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other orbital disorders (376.8)\(376.81) Orbital cysts\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.81''', NULL,
+ '(376.81) Orbital cysts', '(376.81) Orbital cysts', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other orbital disorders (376.8)\(376.82) Myopathy of extraocular muscles\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other orbital disorders (376.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other orbital disorders (376.8)\(376.82) Myopathy of extraocular muscles\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.82''', NULL,
+ '(376.82) Myopathy of extraocular muscles', '(376.82) Myopathy of extraocular muscles', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other orbital disorders (376.8)\(376.89) Other orbital disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other orbital disorders (376.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Disorders of the orbit (376)\Other orbital disorders (376.8)\(376.89) Other orbital disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''376.89''', NULL,
+ '(376.89) Other orbital disorders', '(376.89) Other orbital disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365''', NULL,
+ 'Glaucoma (365)', 'Glaucoma (365)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\(365.9) Unspecified glaucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\(365.9) Unspecified glaucoma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.9''', NULL,
+ '(365.9) Unspecified glaucoma', '(365.9) Unspecified glaucoma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.0''', NULL,
+ 'Borderline glaucoma [glaucoma suspect] (365.0)', 'Borderline glaucoma [glaucoma suspect] (365.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\(365.00) Preglaucoma, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\(365.00) Preglaucoma, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.00''', NULL,
+ '(365.00) Preglaucoma, unspecified', '(365.00) Preglaucoma, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\(365.01) Open angle with borderline findings, low risk\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\(365.01) Open angle with borderline findings, low risk\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.01''', NULL,
+ '(365.01) Open angle with borderline findings, low risk', '(365.01) Open angle with borderline findings, low risk', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\(365.02) Anatomical narrow angle borderline glaucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\(365.02) Anatomical narrow angle borderline glaucoma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.02''', NULL,
+ '(365.02) Anatomical narrow angle borderline glaucoma', '(365.02) Anatomical narrow angle borderline glaucoma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\(365.03) Steroid responders borderline glaucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\(365.03) Steroid responders borderline glaucoma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.03''', NULL,
+ '(365.03) Steroid responders borderline glaucoma', '(365.03) Steroid responders borderline glaucoma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\(365.04) Ocular hypertension\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Borderline glaucoma [glaucoma suspect] (365.0)\(365.04) Ocular hypertension\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.04''', NULL,
+ '(365.04) Ocular hypertension', '(365.04) Ocular hypertension', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Corticosteroid-induced glaucoma (365.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Corticosteroid-induced glaucoma (365.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.3''', NULL,
+ 'Corticosteroid-induced glaucoma (365.3)', 'Corticosteroid-induced glaucoma (365.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Corticosteroid-induced glaucoma (365.3)\(365.31) Corticosteroid-induced glaucoma, glaucomatous stage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Corticosteroid-induced glaucoma (365.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Corticosteroid-induced glaucoma (365.3)\(365.31) Corticosteroid-induced glaucoma, glaucomatous stage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.31''', NULL,
+ '(365.31) Corticosteroid-induced glaucoma, glaucomatous stage', '(365.31) Corticosteroid-induced glaucoma, glaucomatous stage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Corticosteroid-induced glaucoma (365.3)\(365.32) Corticosteroid-induced glaucoma, residual stage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Corticosteroid-induced glaucoma (365.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Corticosteroid-induced glaucoma (365.3)\(365.32) Corticosteroid-induced glaucoma, residual stage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.32''', NULL,
+ '(365.32) Corticosteroid-induced glaucoma, residual stage', '(365.32) Corticosteroid-induced glaucoma, residual stage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.4''', NULL,
+ 'Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)', 'Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\(365.41) Glaucoma associated with chamber angle anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\(365.41) Glaucoma associated with chamber angle anomalies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.41''', NULL,
+ '(365.41) Glaucoma associated with chamber angle anomalies', '(365.41) Glaucoma associated with chamber angle anomalies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\(365.42) Glaucoma associated with anomalies of iris\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\(365.42) Glaucoma associated with anomalies of iris\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.42''', NULL,
+ '(365.42) Glaucoma associated with anomalies of iris', '(365.42) Glaucoma associated with anomalies of iris', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\(365.43) Glaucoma associated with other anterior segment anomalies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\(365.43) Glaucoma associated with other anterior segment anomalies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.43''', NULL,
+ '(365.43) Glaucoma associated with other anterior segment anomalies', '(365.43) Glaucoma associated with other anterior segment anomalies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\(365.44) Glaucoma associated with systemic syndromes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with congenital anomalies, dystrophies, and systemic syndromes (365.4)\(365.44) Glaucoma associated with systemic syndromes\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.44''', NULL,
+ '(365.44) Glaucoma associated with systemic syndromes', '(365.44) Glaucoma associated with systemic syndromes', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with disorders of the lens (365.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with disorders of the lens (365.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.5''', NULL,
+ 'Glaucoma associated with disorders of the lens (365.5)', 'Glaucoma associated with disorders of the lens (365.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with disorders of the lens (365.5)\(365.51) Phacolytic glaucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with disorders of the lens (365.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with disorders of the lens (365.5)\(365.51) Phacolytic glaucoma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.51''', NULL,
+ '(365.51) Phacolytic glaucoma', '(365.51) Phacolytic glaucoma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with disorders of the lens (365.5)\(365.52) Pseudoexfoliation glaucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with disorders of the lens (365.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with disorders of the lens (365.5)\(365.52) Pseudoexfoliation glaucoma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.52''', NULL,
+ '(365.52) Pseudoexfoliation glaucoma', '(365.52) Pseudoexfoliation glaucoma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with disorders of the lens (365.5)\(365.59) Glaucoma associated with other lens disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with disorders of the lens (365.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with disorders of the lens (365.5)\(365.59) Glaucoma associated with other lens disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.59''', NULL,
+ '(365.59) Glaucoma associated with other lens disorders', '(365.59) Glaucoma associated with other lens disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.6''', NULL,
+ 'Glaucoma associated with other ocular disorders (365.6)', 'Glaucoma associated with other ocular disorders (365.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\(365.60) Glaucoma associated with unspecified ocular disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\(365.60) Glaucoma associated with unspecified ocular disorder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.60''', NULL,
+ '(365.60) Glaucoma associated with unspecified ocular disorder', '(365.60) Glaucoma associated with unspecified ocular disorder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\(365.61) Glaucoma associated with pupillary block\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\(365.61) Glaucoma associated with pupillary block\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.61''', NULL,
+ '(365.61) Glaucoma associated with pupillary block', '(365.61) Glaucoma associated with pupillary block', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\(365.62) Glaucoma associated with ocular inflammations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\(365.62) Glaucoma associated with ocular inflammations\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.62''', NULL,
+ '(365.62) Glaucoma associated with ocular inflammations', '(365.62) Glaucoma associated with ocular inflammations', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\(365.63) Glaucoma associated with vascular disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\(365.63) Glaucoma associated with vascular disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.63''', NULL,
+ '(365.63) Glaucoma associated with vascular disorders', '(365.63) Glaucoma associated with vascular disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\(365.64) Glaucoma associated with tumors or cysts\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\(365.64) Glaucoma associated with tumors or cysts\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.64''', NULL,
+ '(365.64) Glaucoma associated with tumors or cysts', '(365.64) Glaucoma associated with tumors or cysts', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\(365.65) Glaucoma associated with ocular trauma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma associated with other ocular disorders (365.6)\(365.65) Glaucoma associated with ocular trauma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.65''', NULL,
+ '(365.65) Glaucoma associated with ocular trauma', '(365.65) Glaucoma associated with ocular trauma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma stage (365.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma stage (365.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.7''', NULL,
+ 'Glaucoma stage (365.7)', 'Glaucoma stage (365.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma stage (365.7)\(365.70) Glaucoma stage, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma stage (365.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Glaucoma stage (365.7)\(365.70) Glaucoma stage, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.70''', NULL,
+ '(365.70) Glaucoma stage, unspecified', '(365.70) Glaucoma stage, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.1''', NULL,
+ 'Open-angle glaucoma (365.1)', 'Open-angle glaucoma (365.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\(365.10) Open-angle glaucoma, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\(365.10) Open-angle glaucoma, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.10''', NULL,
+ '(365.10) Open-angle glaucoma, unspecified', '(365.10) Open-angle glaucoma, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\(365.11) Primary open angle glaucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\(365.11) Primary open angle glaucoma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.11''', NULL,
+ '(365.11) Primary open angle glaucoma', '(365.11) Primary open angle glaucoma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\(365.12) Low tension open-angle glaucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\(365.12) Low tension open-angle glaucoma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.12''', NULL,
+ '(365.12) Low tension open-angle glaucoma', '(365.12) Low tension open-angle glaucoma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\(365.13) Pigmentary open-angle glaucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\(365.13) Pigmentary open-angle glaucoma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.13''', NULL,
+ '(365.13) Pigmentary open-angle glaucoma', '(365.13) Pigmentary open-angle glaucoma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\(365.14) Glaucoma of childhood\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\(365.14) Glaucoma of childhood\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.14''', NULL,
+ '(365.14) Glaucoma of childhood', '(365.14) Glaucoma of childhood', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\(365.15) Residual stage of open angle glaucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Open-angle glaucoma (365.1)\(365.15) Residual stage of open angle glaucoma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.15''', NULL,
+ '(365.15) Residual stage of open angle glaucoma', '(365.15) Residual stage of open angle glaucoma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Other specified forms of glaucoma (365.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Other specified forms of glaucoma (365.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.8''', NULL,
+ 'Other specified forms of glaucoma (365.8)', 'Other specified forms of glaucoma (365.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Other specified forms of glaucoma (365.8)\(365.81) Hypersecretion glaucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Other specified forms of glaucoma (365.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Other specified forms of glaucoma (365.8)\(365.81) Hypersecretion glaucoma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.81''', NULL,
+ '(365.81) Hypersecretion glaucoma', '(365.81) Hypersecretion glaucoma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Other specified forms of glaucoma (365.8)\(365.82) Glaucoma with increased episcleral venous pressure\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Other specified forms of glaucoma (365.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Other specified forms of glaucoma (365.8)\(365.82) Glaucoma with increased episcleral venous pressure\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.82''', NULL,
+ '(365.82) Glaucoma with increased episcleral venous pressure', '(365.82) Glaucoma with increased episcleral venous pressure', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Other specified forms of glaucoma (365.8)\(365.83) Aqueous misdirection\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Other specified forms of glaucoma (365.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Other specified forms of glaucoma (365.8)\(365.83) Aqueous misdirection\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.83''', NULL,
+ '(365.83) Aqueous misdirection', '(365.83) Aqueous misdirection', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Other specified forms of glaucoma (365.8)\(365.89) Other specified glaucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Other specified forms of glaucoma (365.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Other specified forms of glaucoma (365.8)\(365.89) Other specified glaucoma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.89''', NULL,
+ '(365.89) Other specified glaucoma', '(365.89) Other specified glaucoma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.2''', NULL,
+ 'Primary angle-closure glaucoma (365.2)', 'Primary angle-closure glaucoma (365.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\(365.20) Primary angle-closure glaucoma, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\(365.20) Primary angle-closure glaucoma, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.20''', NULL,
+ '(365.20) Primary angle-closure glaucoma, unspecified', '(365.20) Primary angle-closure glaucoma, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\(365.21) Intermittent angle-closure glaucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\(365.21) Intermittent angle-closure glaucoma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.21''', NULL,
+ '(365.21) Intermittent angle-closure glaucoma', '(365.21) Intermittent angle-closure glaucoma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\(365.22) Acute angle-closure glaucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\(365.22) Acute angle-closure glaucoma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.22''', NULL,
+ '(365.22) Acute angle-closure glaucoma', '(365.22) Acute angle-closure glaucoma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\(365.23) Chronic angle-closure glaucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\(365.23) Chronic angle-closure glaucoma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.23''', NULL,
+ '(365.23) Chronic angle-closure glaucoma', '(365.23) Chronic angle-closure glaucoma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\(365.24) Residual stage of angle-closure glaucoma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Glaucoma (365)\Primary angle-closure glaucoma (365.2)\(365.24) Residual stage of angle-closure glaucoma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''365.24''', NULL,
+ '(365.24) Residual stage of angle-closure glaucoma', '(365.24) Residual stage of angle-closure glaucoma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373''', NULL,
+ 'Inflammation of eyelids (373)', 'Inflammation of eyelids (373)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\(373.2) Chalazion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\(373.2) Chalazion\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.2''', NULL,
+ '(373.2) Chalazion', '(373.2) Chalazion', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\(373.4) Infective dermatitis of eyelid of types resulting in deformity\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\(373.4) Infective dermatitis of eyelid of types resulting in deformity\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.4''', NULL,
+ '(373.4) Infective dermatitis of eyelid of types resulting in deformity', '(373.4) Infective dermatitis of eyelid of types resulting in deformity', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\(373.5) Other infective dermatitis of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\(373.5) Other infective dermatitis of eyelid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.5''', NULL,
+ '(373.5) Other infective dermatitis of eyelid', '(373.5) Other infective dermatitis of eyelid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\(373.6) Parasitic infestation of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\(373.6) Parasitic infestation of eyelid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.6''', NULL,
+ '(373.6) Parasitic infestation of eyelid', '(373.6) Parasitic infestation of eyelid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\(373.8) Other inflammations of eyelids\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\(373.8) Other inflammations of eyelids\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.8''', NULL,
+ '(373.8) Other inflammations of eyelids', '(373.8) Other inflammations of eyelids', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\(373.9) Unspecified inflammation of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\(373.9) Unspecified inflammation of eyelid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.9''', NULL,
+ '(373.9) Unspecified inflammation of eyelid', '(373.9) Unspecified inflammation of eyelid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Blepharitis (373.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Blepharitis (373.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.0''', NULL,
+ 'Blepharitis (373.0)', 'Blepharitis (373.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Blepharitis (373.0)\(373.00) Blepharitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Blepharitis (373.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Blepharitis (373.0)\(373.00) Blepharitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.00''', NULL,
+ '(373.00) Blepharitis, unspecified', '(373.00) Blepharitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Blepharitis (373.0)\(373.01) Ulcerative blepharitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Blepharitis (373.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Blepharitis (373.0)\(373.01) Ulcerative blepharitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.01''', NULL,
+ '(373.01) Ulcerative blepharitis', '(373.01) Ulcerative blepharitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Blepharitis (373.0)\(373.02) Squamous blepharitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Blepharitis (373.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Blepharitis (373.0)\(373.02) Squamous blepharitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.02''', NULL,
+ '(373.02) Squamous blepharitis', '(373.02) Squamous blepharitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Hordeolum and other deep inflammation of eyelid (373.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Hordeolum and other deep inflammation of eyelid (373.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.1''', NULL,
+ 'Hordeolum and other deep inflammation of eyelid (373.1)', 'Hordeolum and other deep inflammation of eyelid (373.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Hordeolum and other deep inflammation of eyelid (373.1)\(373.11) Hordeolum externum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Hordeolum and other deep inflammation of eyelid (373.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Hordeolum and other deep inflammation of eyelid (373.1)\(373.11) Hordeolum externum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.11''', NULL,
+ '(373.11) Hordeolum externum', '(373.11) Hordeolum externum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Hordeolum and other deep inflammation of eyelid (373.1)\(373.12) Hordeolum internum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Hordeolum and other deep inflammation of eyelid (373.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Hordeolum and other deep inflammation of eyelid (373.1)\(373.12) Hordeolum internum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.12''', NULL,
+ '(373.12) Hordeolum internum', '(373.12) Hordeolum internum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Hordeolum and other deep inflammation of eyelid (373.1)\(373.13) Abscess of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Hordeolum and other deep inflammation of eyelid (373.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Hordeolum and other deep inflammation of eyelid (373.1)\(373.13) Abscess of eyelid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.13''', NULL,
+ '(373.13) Abscess of eyelid', '(373.13) Abscess of eyelid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Noninfectious dermatoses of eyelid (373.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Noninfectious dermatoses of eyelid (373.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.3''', NULL,
+ 'Noninfectious dermatoses of eyelid (373.3)', 'Noninfectious dermatoses of eyelid (373.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Noninfectious dermatoses of eyelid (373.3)\(373.31) Eczematous dermatitis of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Noninfectious dermatoses of eyelid (373.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Noninfectious dermatoses of eyelid (373.3)\(373.31) Eczematous dermatitis of eyelid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.31''', NULL,
+ '(373.31) Eczematous dermatitis of eyelid', '(373.31) Eczematous dermatitis of eyelid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Noninfectious dermatoses of eyelid (373.3)\(373.32) Contact and allergic dermatitis of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Noninfectious dermatoses of eyelid (373.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Noninfectious dermatoses of eyelid (373.3)\(373.32) Contact and allergic dermatitis of eyelid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.32''', NULL,
+ '(373.32) Contact and allergic dermatitis of eyelid', '(373.32) Contact and allergic dermatitis of eyelid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Noninfectious dermatoses of eyelid (373.3)\(373.33) Xeroderma of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Noninfectious dermatoses of eyelid (373.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Noninfectious dermatoses of eyelid (373.3)\(373.33) Xeroderma of eyelid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.33''', NULL,
+ '(373.33) Xeroderma of eyelid', '(373.33) Xeroderma of eyelid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Noninfectious dermatoses of eyelid (373.3)\(373.34) Discoid lupus erythematosus of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Noninfectious dermatoses of eyelid (373.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Inflammation of eyelids (373)\Noninfectious dermatoses of eyelid (373.3)\(373.34) Discoid lupus erythematosus of eyelid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''373.34''', NULL,
+ '(373.34) Discoid lupus erythematosus of eyelid', '(373.34) Discoid lupus erythematosus of eyelid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370''', NULL,
+ 'Keratitis (370)', 'Keratitis (370)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\(370.8) Other forms of keratitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\(370.8) Other forms of keratitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.8''', NULL,
+ '(370.8) Other forms of keratitis', '(370.8) Other forms of keratitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\(370.9) Unspecified keratitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\(370.9) Unspecified keratitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.9''', NULL,
+ '(370.9) Unspecified keratitis', '(370.9) Unspecified keratitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.3''', NULL,
+ 'Certain types of keratoconjunctivitis (370.3)', 'Certain types of keratoconjunctivitis (370.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\(370.31) Phlyctenular keratoconjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\(370.31) Phlyctenular keratoconjunctivitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.31''', NULL,
+ '(370.31) Phlyctenular keratoconjunctivitis', '(370.31) Phlyctenular keratoconjunctivitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\(370.32) Limbar and corneal involvement in vernal conjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\(370.32) Limbar and corneal involvement in vernal conjunctivitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.32''', NULL,
+ '(370.32) Limbar and corneal involvement in vernal conjunctivitis', '(370.32) Limbar and corneal involvement in vernal conjunctivitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\(370.33) Keratoconjunctivitis sicca, not specified as Sjogren''s\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\(370.33) Keratoconjunctivitis sicca, not specified as Sjogren''s\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.33''', NULL,
+ '(370.33) Keratoconjunctivitis sicca, not specified as Sjogren''s', '(370.33) Keratoconjunctivitis sicca, not specified as Sjogren''s', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\(370.34) Exposure keratoconjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\(370.34) Exposure keratoconjunctivitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.34''', NULL,
+ '(370.34) Exposure keratoconjunctivitis', '(370.34) Exposure keratoconjunctivitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\(370.35) Neurotrophic keratoconjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Certain types of keratoconjunctivitis (370.3)\(370.35) Neurotrophic keratoconjunctivitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.35''', NULL,
+ '(370.35) Neurotrophic keratoconjunctivitis', '(370.35) Neurotrophic keratoconjunctivitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.6''', NULL,
+ 'Corneal neovascularization (370.6)', 'Corneal neovascularization (370.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\(370.60) Corneal neovascularization, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\(370.60) Corneal neovascularization, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.60''', NULL,
+ '(370.60) Corneal neovascularization, unspecified', '(370.60) Corneal neovascularization, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\(370.61) Localized vascularization of cornea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\(370.61) Localized vascularization of cornea\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.61''', NULL,
+ '(370.61) Localized vascularization of cornea', '(370.61) Localized vascularization of cornea', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\(370.62) Pannus (corneal)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\(370.62) Pannus (corneal)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.62) Pannus (corneal''', NULL,
+ '(370.62) Pannus (corneal)', '(370.62) Pannus (corneal)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\(370.63) Deep vascularization of cornea\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\(370.63) Deep vascularization of cornea\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.63''', NULL,
+ '(370.63) Deep vascularization of cornea', '(370.63) Deep vascularization of cornea', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\(370.64) Ghost vessels (corneal)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal neovascularization (370.6)\(370.64) Ghost vessels (corneal)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.64) Ghost vessels (corneal''', NULL,
+ '(370.64) Ghost vessels (corneal)', '(370.64) Ghost vessels (corneal)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.0''', NULL,
+ 'Corneal ulcer (370.0)', 'Corneal ulcer (370.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.00) Corneal ulcer, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.00) Corneal ulcer, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.00''', NULL,
+ '(370.00) Corneal ulcer, unspecified', '(370.00) Corneal ulcer, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.01) Marginal corneal ulcer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.01) Marginal corneal ulcer\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.01''', NULL,
+ '(370.01) Marginal corneal ulcer', '(370.01) Marginal corneal ulcer', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.02) Ring corneal ulcer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.02) Ring corneal ulcer\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.02''', NULL,
+ '(370.02) Ring corneal ulcer', '(370.02) Ring corneal ulcer', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.03) Central corneal ulcer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.03) Central corneal ulcer\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.03''', NULL,
+ '(370.03) Central corneal ulcer', '(370.03) Central corneal ulcer', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.04) Hypopyon ulcer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.04) Hypopyon ulcer\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.04''', NULL,
+ '(370.04) Hypopyon ulcer', '(370.04) Hypopyon ulcer', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.05) Mycotic corneal ulcer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.05) Mycotic corneal ulcer\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.05''', NULL,
+ '(370.05) Mycotic corneal ulcer', '(370.05) Mycotic corneal ulcer', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.06) Perforated corneal ulcer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.06) Perforated corneal ulcer\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.06''', NULL,
+ '(370.06) Perforated corneal ulcer', '(370.06) Perforated corneal ulcer', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.07) Mooren''s ulcer\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Corneal ulcer (370.0)\(370.07) Mooren''s ulcer\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.07''', NULL,
+ '(370.07) Mooren''s ulcer', '(370.07) Mooren''s ulcer', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.5''', NULL,
+ 'Interstitial and deep keratitis (370.5)', 'Interstitial and deep keratitis (370.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\(370.50) Interstitial keratitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\(370.50) Interstitial keratitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.50''', NULL,
+ '(370.50) Interstitial keratitis, unspecified', '(370.50) Interstitial keratitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\(370.52) Diffuse interstitial keratitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\(370.52) Diffuse interstitial keratitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.52''', NULL,
+ '(370.52) Diffuse interstitial keratitis', '(370.52) Diffuse interstitial keratitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\(370.54) Sclerosing keratitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\(370.54) Sclerosing keratitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.54''', NULL,
+ '(370.54) Sclerosing keratitis', '(370.54) Sclerosing keratitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\(370.55) Corneal abscess\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\(370.55) Corneal abscess\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.55''', NULL,
+ '(370.55) Corneal abscess', '(370.55) Corneal abscess', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\(370.59) Other interstitial and deep keratitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Interstitial and deep keratitis (370.5)\(370.59) Other interstitial and deep keratitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.59''', NULL,
+ '(370.59) Other interstitial and deep keratitis', '(370.59) Other interstitial and deep keratitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Other and unspecified keratoconjunctivitis (370.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Other and unspecified keratoconjunctivitis (370.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.4''', NULL,
+ 'Other and unspecified keratoconjunctivitis (370.4)', 'Other and unspecified keratoconjunctivitis (370.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Other and unspecified keratoconjunctivitis (370.4)\(370.40) Keratoconjunctivitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Other and unspecified keratoconjunctivitis (370.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Other and unspecified keratoconjunctivitis (370.4)\(370.40) Keratoconjunctivitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.40''', NULL,
+ '(370.40) Keratoconjunctivitis, unspecified', '(370.40) Keratoconjunctivitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Other and unspecified keratoconjunctivitis (370.4)\(370.44) Keratitis or keratoconjunctivitis in exanthema\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Other and unspecified keratoconjunctivitis (370.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Other and unspecified keratoconjunctivitis (370.4)\(370.44) Keratitis or keratoconjunctivitis in exanthema\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.44''', NULL,
+ '(370.44) Keratitis or keratoconjunctivitis in exanthema', '(370.44) Keratitis or keratoconjunctivitis in exanthema', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Other and unspecified keratoconjunctivitis (370.4)\(370.49) Other keratoconjunctivitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Other and unspecified keratoconjunctivitis (370.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Other and unspecified keratoconjunctivitis (370.4)\(370.49) Other keratoconjunctivitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.49''', NULL,
+ '(370.49) Other keratoconjunctivitis', '(370.49) Other keratoconjunctivitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.2''', NULL,
+ 'Superficial keratitis without conjunctivitis (370.2)', 'Superficial keratitis without conjunctivitis (370.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\(370.20) Superficial keratitis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\(370.20) Superficial keratitis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.20''', NULL,
+ '(370.20) Superficial keratitis, unspecified', '(370.20) Superficial keratitis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\(370.21) Punctate keratitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\(370.21) Punctate keratitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.21''', NULL,
+ '(370.21) Punctate keratitis', '(370.21) Punctate keratitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\(370.22) Macular keratitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\(370.22) Macular keratitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.22''', NULL,
+ '(370.22) Macular keratitis', '(370.22) Macular keratitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\(370.23) Filamentary keratitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\(370.23) Filamentary keratitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.23''', NULL,
+ '(370.23) Filamentary keratitis', '(370.23) Filamentary keratitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\(370.24) Photokeratitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Keratitis (370)\Superficial keratitis without conjunctivitis (370.2)\(370.24) Photokeratitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''370.24''', NULL,
+ '(370.24) Photokeratitis', '(370.24) Photokeratitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379''', NULL,
+ 'Other disorders of eye (379)', 'Other disorders of eye (379)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\(379.8) Other specified disorders of eye and adnexa\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\(379.8) Other specified disorders of eye and adnexa\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.8''', NULL,
+ '(379.8) Other specified disorders of eye and adnexa', '(379.8) Other specified disorders of eye and adnexa', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.4''', NULL,
+ 'Anomalies of pupillary function (379.4)', 'Anomalies of pupillary function (379.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\(379.40) Abnormal pupillary function, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\(379.40) Abnormal pupillary function, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.40''', NULL,
+ '(379.40) Abnormal pupillary function, unspecified', '(379.40) Abnormal pupillary function, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\(379.41) Anisocoria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\(379.41) Anisocoria\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.41''', NULL,
+ '(379.41) Anisocoria', '(379.41) Anisocoria', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\(379.42) Miosis (persistent), not due to miotics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\(379.42) Miosis (persistent), not due to miotics\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.42) Miosis (persistent''', NULL,
+ '(379.42) Miosis (persistent), not due to miotics', '(379.42) Miosis (persistent), not due to miotics', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\(379.43) Mydriasis (persistent), not due to mydriatics\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\(379.43) Mydriasis (persistent), not due to mydriatics\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.43) Mydriasis (persistent''', NULL,
+ '(379.43) Mydriasis (persistent), not due to mydriatics', '(379.43) Mydriasis (persistent), not due to mydriatics', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\(379.45) Argyll Robertson pupil, atypical\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\(379.45) Argyll Robertson pupil, atypical\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.45''', NULL,
+ '(379.45) Argyll Robertson pupil, atypical', '(379.45) Argyll Robertson pupil, atypical', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\(379.46) Tonic pupillary reaction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\(379.46) Tonic pupillary reaction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.46''', NULL,
+ '(379.46) Tonic pupillary reaction', '(379.46) Tonic pupillary reaction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\(379.49) Other anomalies of pupillary function\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Anomalies of pupillary function (379.4)\(379.49) Other anomalies of pupillary function\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.49''', NULL,
+ '(379.49) Other anomalies of pupillary function', '(379.49) Other anomalies of pupillary function', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.3''', NULL,
+ 'Aphakia and other disorders of lens (379.3)', 'Aphakia and other disorders of lens (379.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\(379.31) Aphakia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\(379.31) Aphakia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.31''', NULL,
+ '(379.31) Aphakia', '(379.31) Aphakia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\(379.32) Subluxation of lens\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\(379.32) Subluxation of lens\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.32''', NULL,
+ '(379.32) Subluxation of lens', '(379.32) Subluxation of lens', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\(379.33) Anterior dislocation of lens\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\(379.33) Anterior dislocation of lens\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.33''', NULL,
+ '(379.33) Anterior dislocation of lens', '(379.33) Anterior dislocation of lens', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\(379.34) Posterior dislocation of lens\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\(379.34) Posterior dislocation of lens\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.34''', NULL,
+ '(379.34) Posterior dislocation of lens', '(379.34) Posterior dislocation of lens', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\(379.39) Other disorders of lens\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Aphakia and other disorders of lens (379.3)\(379.39) Other disorders of lens\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.39''', NULL,
+ '(379.39) Other disorders of lens', '(379.39) Other disorders of lens', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.2''', NULL,
+ 'Disorders of vitreous body (379.2)', 'Disorders of vitreous body (379.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\(379.21) Vitreous degeneration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\(379.21) Vitreous degeneration\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.21''', NULL,
+ '(379.21) Vitreous degeneration', '(379.21) Vitreous degeneration', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\(379.22) Crystalline deposits in vitreous\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\(379.22) Crystalline deposits in vitreous\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.22''', NULL,
+ '(379.22) Crystalline deposits in vitreous', '(379.22) Crystalline deposits in vitreous', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\(379.23) Vitreous hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\(379.23) Vitreous hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.23''', NULL,
+ '(379.23) Vitreous hemorrhage', '(379.23) Vitreous hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\(379.24) Other vitreous opacities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\(379.24) Other vitreous opacities\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.24''', NULL,
+ '(379.24) Other vitreous opacities', '(379.24) Other vitreous opacities', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\(379.25) Vitreous membranes and strands\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\(379.25) Vitreous membranes and strands\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.25''', NULL,
+ '(379.25) Vitreous membranes and strands', '(379.25) Vitreous membranes and strands', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\(379.26) Vitreous prolapse\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\(379.26) Vitreous prolapse\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.26''', NULL,
+ '(379.26) Vitreous prolapse', '(379.26) Vitreous prolapse', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\(379.29) Other disorders of vitreous\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Disorders of vitreous body (379.2)\(379.29) Other disorders of vitreous\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.29''', NULL,
+ '(379.29) Other disorders of vitreous', '(379.29) Other disorders of vitreous', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Inflammation (infection) of postprocedural bleb (379.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Inflammation (infection) of postprocedural bleb (379.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''infection) of postprocedural bleb (379.6''', NULL,
+ 'Inflammation (infection) of postprocedural bleb (379.6)', 'Inflammation (infection) of postprocedural bleb (379.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Inflammation (infection) of postprocedural bleb (379.6)\(379.60) Inflammation (infection) of postprocedural bleb, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Inflammation (infection) of postprocedural bleb (379.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Inflammation (infection) of postprocedural bleb (379.6)\(379.60) Inflammation (infection) of postprocedural bleb, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.60) Inflammation (infection''', NULL,
+ '(379.60) Inflammation (infection) of postprocedural bleb, unspecified', '(379.60) Inflammation (infection) of postprocedural bleb, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Inflammation (infection) of postprocedural bleb (379.6)\(379.61) Inflammation (infection) of postprocedural bleb, stage 1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Inflammation (infection) of postprocedural bleb (379.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Inflammation (infection) of postprocedural bleb (379.6)\(379.61) Inflammation (infection) of postprocedural bleb, stage 1\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.61) Inflammation (infection''', NULL,
+ '(379.61) Inflammation (infection) of postprocedural bleb, stage 1', '(379.61) Inflammation (infection) of postprocedural bleb, stage 1', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Inflammation (infection) of postprocedural bleb (379.6)\(379.62) Inflammation (infection) of postprocedural bleb, stage 2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Inflammation (infection) of postprocedural bleb (379.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Inflammation (infection) of postprocedural bleb (379.6)\(379.62) Inflammation (infection) of postprocedural bleb, stage 2\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.62) Inflammation (infection''', NULL,
+ '(379.62) Inflammation (infection) of postprocedural bleb, stage 2', '(379.62) Inflammation (infection) of postprocedural bleb, stage 2', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Inflammation (infection) of postprocedural bleb (379.6)\(379.63) Inflammation (infection) of postprocedural bleb, stage 3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Inflammation (infection) of postprocedural bleb (379.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Inflammation (infection) of postprocedural bleb (379.6)\(379.63) Inflammation (infection) of postprocedural bleb, stage 3\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.63) Inflammation (infection''', NULL,
+ '(379.63) Inflammation (infection) of postprocedural bleb, stage 3', '(379.63) Inflammation (infection) of postprocedural bleb, stage 3', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.5''', NULL,
+ 'Nystagmus and other irregular eye movements (379.5)', 'Nystagmus and other irregular eye movements (379.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.50) Nystagmus, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.50) Nystagmus, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.50''', NULL,
+ '(379.50) Nystagmus, unspecified', '(379.50) Nystagmus, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.51) Congenital nystagmus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.51) Congenital nystagmus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.51''', NULL,
+ '(379.51) Congenital nystagmus', '(379.51) Congenital nystagmus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.52) Latent nystagmus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.52) Latent nystagmus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.52''', NULL,
+ '(379.52) Latent nystagmus', '(379.52) Latent nystagmus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.53) Visual deprivation nystagmus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.53) Visual deprivation nystagmus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.53''', NULL,
+ '(379.53) Visual deprivation nystagmus', '(379.53) Visual deprivation nystagmus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.54) Nystagmus associated with disorders of the vestibular system\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.54) Nystagmus associated with disorders of the vestibular system\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.54''', NULL,
+ '(379.54) Nystagmus associated with disorders of the vestibular system', '(379.54) Nystagmus associated with disorders of the vestibular system', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.55) Dissociated nystagmus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.55) Dissociated nystagmus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.55''', NULL,
+ '(379.55) Dissociated nystagmus', '(379.55) Dissociated nystagmus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.56) Other forms of nystagmus\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.56) Other forms of nystagmus\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.56''', NULL,
+ '(379.56) Other forms of nystagmus', '(379.56) Other forms of nystagmus', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.57) Deficiencies of saccadic eye movements\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.57) Deficiencies of saccadic eye movements\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.57''', NULL,
+ '(379.57) Deficiencies of saccadic eye movements', '(379.57) Deficiencies of saccadic eye movements', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.58) Deficiencies of smooth pursuit movements\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.58) Deficiencies of smooth pursuit movements\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.58''', NULL,
+ '(379.58) Deficiencies of smooth pursuit movements', '(379.58) Deficiencies of smooth pursuit movements', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.59) Other irregularities of eye movements\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Nystagmus and other irregular eye movements (379.5)\(379.59) Other irregularities of eye movements\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.59''', NULL,
+ '(379.59) Other irregularities of eye movements', '(379.59) Other irregularities of eye movements', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.1''', NULL,
+ 'Other disorders of sclera (379.1)', 'Other disorders of sclera (379.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\(379.11) Scleral ectasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\(379.11) Scleral ectasia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.11''', NULL,
+ '(379.11) Scleral ectasia', '(379.11) Scleral ectasia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\(379.12) Staphyloma posticum\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\(379.12) Staphyloma posticum\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.12''', NULL,
+ '(379.12) Staphyloma posticum', '(379.12) Staphyloma posticum', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\(379.13) Equatorial staphyloma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\(379.13) Equatorial staphyloma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.13''', NULL,
+ '(379.13) Equatorial staphyloma', '(379.13) Equatorial staphyloma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\(379.14) Anterior staphyloma, localized\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\(379.14) Anterior staphyloma, localized\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.14''', NULL,
+ '(379.14) Anterior staphyloma, localized', '(379.14) Anterior staphyloma, localized', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\(379.15) Ring staphyloma\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\(379.15) Ring staphyloma\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.15''', NULL,
+ '(379.15) Ring staphyloma', '(379.15) Ring staphyloma', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\(379.16) Other degenerative disorders of sclera\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\(379.16) Other degenerative disorders of sclera\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.16''', NULL,
+ '(379.16) Other degenerative disorders of sclera', '(379.16) Other degenerative disorders of sclera', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\(379.19) Other disorders of sclera\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Other disorders of sclera (379.1)\(379.19) Other disorders of sclera\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.19''', NULL,
+ '(379.19) Other disorders of sclera', '(379.19) Other disorders of sclera', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.0''', NULL,
+ 'Scleritis and episcleritis (379.0)', 'Scleritis and episcleritis (379.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.00) Scleritis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.00) Scleritis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.00''', NULL,
+ '(379.00) Scleritis, unspecified', '(379.00) Scleritis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.01) Episcleritis periodica fugax\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.01) Episcleritis periodica fugax\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.01''', NULL,
+ '(379.01) Episcleritis periodica fugax', '(379.01) Episcleritis periodica fugax', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.02) Nodular episcleritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.02) Nodular episcleritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.02''', NULL,
+ '(379.02) Nodular episcleritis', '(379.02) Nodular episcleritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.03) Anterior scleritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.03) Anterior scleritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.03''', NULL,
+ '(379.03) Anterior scleritis', '(379.03) Anterior scleritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.04) Scleromalacia perforans\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.04) Scleromalacia perforans\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.04''', NULL,
+ '(379.04) Scleromalacia perforans', '(379.04) Scleromalacia perforans', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.05) Scleritis with corneal involvement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.05) Scleritis with corneal involvement\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.05''', NULL,
+ '(379.05) Scleritis with corneal involvement', '(379.05) Scleritis with corneal involvement', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.06) Brawny scleritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.06) Brawny scleritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.06''', NULL,
+ '(379.06) Brawny scleritis', '(379.06) Brawny scleritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.07) Posterior scleritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.07) Posterior scleritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.07''', NULL,
+ '(379.07) Posterior scleritis', '(379.07) Posterior scleritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.09) Other scleritis and episcleritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Scleritis and episcleritis (379.0)\(379.09) Other scleritis and episcleritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.09''', NULL,
+ '(379.09) Other scleritis and episcleritis', '(379.09) Other scleritis and episcleritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.9''', NULL,
+ 'Unspecified disorder of eye and adnexa (379.9)', 'Unspecified disorder of eye and adnexa (379.9)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\(379.90) Disorder of eye, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\(379.90) Disorder of eye, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.90''', NULL,
+ '(379.90) Disorder of eye, unspecified', '(379.90) Disorder of eye, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\(379.91) Pain in or around eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\(379.91) Pain in or around eye\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.91''', NULL,
+ '(379.91) Pain in or around eye', '(379.91) Pain in or around eye', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\(379.92) Swelling or mass of eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\(379.92) Swelling or mass of eye\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.92''', NULL,
+ '(379.92) Swelling or mass of eye', '(379.92) Swelling or mass of eye', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\(379.93) Redness or discharge of eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\(379.93) Redness or discharge of eye\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.93''', NULL,
+ '(379.93) Redness or discharge of eye', '(379.93) Redness or discharge of eye', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\(379.99) Other ill-defined disorders of eye\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eye (379)\Unspecified disorder of eye and adnexa (379.9)\(379.99) Other ill-defined disorders of eye\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''379.99''', NULL,
+ '(379.99) Other ill-defined disorders of eye', '(379.99) Other ill-defined disorders of eye', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374''', NULL,
+ 'Other disorders of eyelids (374)', 'Other disorders of eyelids (374)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\(374.9) Unspecified disorder of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\(374.9) Unspecified disorder of eyelid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.9''', NULL,
+ '(374.9) Unspecified disorder of eyelid', '(374.9) Unspecified disorder of eyelid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.5''', NULL,
+ 'Degenerative disorders of eyelid and periocular area (374.5)', 'Degenerative disorders of eyelid and periocular area (374.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\(374.50) Degenerative disorder of eyelid, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\(374.50) Degenerative disorder of eyelid, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.50''', NULL,
+ '(374.50) Degenerative disorder of eyelid, unspecified', '(374.50) Degenerative disorder of eyelid, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\(374.51) Xanthelasma of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\(374.51) Xanthelasma of eyelid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.51''', NULL,
+ '(374.51) Xanthelasma of eyelid', '(374.51) Xanthelasma of eyelid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\(374.52) Hyperpigmentation of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\(374.52) Hyperpigmentation of eyelid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.52''', NULL,
+ '(374.52) Hyperpigmentation of eyelid', '(374.52) Hyperpigmentation of eyelid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\(374.53) Hypopigmentation of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\(374.53) Hypopigmentation of eyelid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.53''', NULL,
+ '(374.53) Hypopigmentation of eyelid', '(374.53) Hypopigmentation of eyelid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\(374.54) Hypertrichosis of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\(374.54) Hypertrichosis of eyelid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.54''', NULL,
+ '(374.54) Hypertrichosis of eyelid', '(374.54) Hypertrichosis of eyelid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\(374.55) Hypotrichosis of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\(374.55) Hypotrichosis of eyelid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.55''', NULL,
+ '(374.55) Hypotrichosis of eyelid', '(374.55) Hypotrichosis of eyelid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\(374.56) Other degenerative disorders of skin affecting eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Degenerative disorders of eyelid and periocular area (374.5)\(374.56) Other degenerative disorders of skin affecting eyelid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.56''', NULL,
+ '(374.56) Other degenerative disorders of skin affecting eyelid', '(374.56) Other degenerative disorders of skin affecting eyelid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.1''', NULL,
+ 'Ectropion (374.1)', 'Ectropion (374.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\(374.10) Ectropion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\(374.10) Ectropion, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.10''', NULL,
+ '(374.10) Ectropion, unspecified', '(374.10) Ectropion, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\(374.11) Senile ectropion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\(374.11) Senile ectropion\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.11''', NULL,
+ '(374.11) Senile ectropion', '(374.11) Senile ectropion', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\(374.12) Mechanical ectropion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\(374.12) Mechanical ectropion\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.12''', NULL,
+ '(374.12) Mechanical ectropion', '(374.12) Mechanical ectropion', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\(374.13) Spastic ectropion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\(374.13) Spastic ectropion\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.13''', NULL,
+ '(374.13) Spastic ectropion', '(374.13) Spastic ectropion', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\(374.14) Cicatricial ectropion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ectropion (374.1)\(374.14) Cicatricial ectropion\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.14''', NULL,
+ '(374.14) Cicatricial ectropion', '(374.14) Cicatricial ectropion', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.0''', NULL,
+ 'Entropion and trichiasis of eyelid (374.0)', 'Entropion and trichiasis of eyelid (374.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\(374.00) Entropion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\(374.00) Entropion, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.00''', NULL,
+ '(374.00) Entropion, unspecified', '(374.00) Entropion, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\(374.01) Senile entropion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\(374.01) Senile entropion\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.01''', NULL,
+ '(374.01) Senile entropion', '(374.01) Senile entropion', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\(374.02) Mechanical entropion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\(374.02) Mechanical entropion\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.02''', NULL,
+ '(374.02) Mechanical entropion', '(374.02) Mechanical entropion', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\(374.03) Spastic entropion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\(374.03) Spastic entropion\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.03''', NULL,
+ '(374.03) Spastic entropion', '(374.03) Spastic entropion', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\(374.04) Cicatricial entropion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\(374.04) Cicatricial entropion\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.04''', NULL,
+ '(374.04) Cicatricial entropion', '(374.04) Cicatricial entropion', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\(374.05) Trichiasis of eyelid without entropion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Entropion and trichiasis of eyelid (374.0)\(374.05) Trichiasis of eyelid without entropion\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.05''', NULL,
+ '(374.05) Trichiasis of eyelid without entropion', '(374.05) Trichiasis of eyelid without entropion', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Lagophthalmos (374.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Lagophthalmos (374.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.2''', NULL,
+ 'Lagophthalmos (374.2)', 'Lagophthalmos (374.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Lagophthalmos (374.2)\(374.20) Lagophthalmos, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Lagophthalmos (374.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Lagophthalmos (374.2)\(374.20) Lagophthalmos, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.20''', NULL,
+ '(374.20) Lagophthalmos, unspecified', '(374.20) Lagophthalmos, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Lagophthalmos (374.2)\(374.21) Paralytic lagophthalmos\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Lagophthalmos (374.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Lagophthalmos (374.2)\(374.21) Paralytic lagophthalmos\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.21''', NULL,
+ '(374.21) Paralytic lagophthalmos', '(374.21) Paralytic lagophthalmos', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Lagophthalmos (374.2)\(374.22) Mechanical lagophthalmos\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Lagophthalmos (374.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Lagophthalmos (374.2)\(374.22) Mechanical lagophthalmos\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.22''', NULL,
+ '(374.22) Mechanical lagophthalmos', '(374.22) Mechanical lagophthalmos', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Lagophthalmos (374.2)\(374.23) Cicatricial lagophthalmos\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Lagophthalmos (374.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Lagophthalmos (374.2)\(374.23) Cicatricial lagophthalmos\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.23''', NULL,
+ '(374.23) Cicatricial lagophthalmos', '(374.23) Cicatricial lagophthalmos', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.4''', NULL,
+ 'Other disorders affecting eyelid function (374.4)', 'Other disorders affecting eyelid function (374.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\(374.41) Lid retraction or lag\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\(374.41) Lid retraction or lag\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.41''', NULL,
+ '(374.41) Lid retraction or lag', '(374.41) Lid retraction or lag', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\(374.43) Abnormal innervation syndrome of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\(374.43) Abnormal innervation syndrome of eyelid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.43''', NULL,
+ '(374.43) Abnormal innervation syndrome of eyelid', '(374.43) Abnormal innervation syndrome of eyelid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\(374.44) Sensory disorders of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\(374.44) Sensory disorders of eyelid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.44''', NULL,
+ '(374.44) Sensory disorders of eyelid', '(374.44) Sensory disorders of eyelid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\(374.45) Other sensorimotor disorders of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\(374.45) Other sensorimotor disorders of eyelid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.45''', NULL,
+ '(374.45) Other sensorimotor disorders of eyelid', '(374.45) Other sensorimotor disorders of eyelid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\(374.46) Blepharophimosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders affecting eyelid function (374.4)\(374.46) Blepharophimosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.46''', NULL,
+ '(374.46) Blepharophimosis', '(374.46) Blepharophimosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.8''', NULL,
+ 'Other disorders of eyelid (374.8)', 'Other disorders of eyelid (374.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.81) Hemorrhage of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.81) Hemorrhage of eyelid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.81''', NULL,
+ '(374.81) Hemorrhage of eyelid', '(374.81) Hemorrhage of eyelid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.82) Edema of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.82) Edema of eyelid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.82''', NULL,
+ '(374.82) Edema of eyelid', '(374.82) Edema of eyelid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.83) Elephantiasis of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.83) Elephantiasis of eyelid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.83''', NULL,
+ '(374.83) Elephantiasis of eyelid', '(374.83) Elephantiasis of eyelid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.84) Cysts of eyelids\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.84) Cysts of eyelids\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.84''', NULL,
+ '(374.84) Cysts of eyelids', '(374.84) Cysts of eyelids', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.85) Vascular anomalies of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.85) Vascular anomalies of eyelid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.85''', NULL,
+ '(374.85) Vascular anomalies of eyelid', '(374.85) Vascular anomalies of eyelid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.86) Retained foreign body of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.86) Retained foreign body of eyelid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.86''', NULL,
+ '(374.86) Retained foreign body of eyelid', '(374.86) Retained foreign body of eyelid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.87) Dermatochalasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.87) Dermatochalasis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.87''', NULL,
+ '(374.87) Dermatochalasis', '(374.87) Dermatochalasis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.89) Other disorders of eyelid\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Other disorders of eyelid (374.8)\(374.89) Other disorders of eyelid\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.89''', NULL,
+ '(374.89) Other disorders of eyelid', '(374.89) Other disorders of eyelid', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.3''', NULL,
+ 'Ptosis of eyelid (374.3)', 'Ptosis of eyelid (374.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\(374.30) Ptosis of eyelid, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\(374.30) Ptosis of eyelid, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.30''', NULL,
+ '(374.30) Ptosis of eyelid, unspecified', '(374.30) Ptosis of eyelid, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\(374.31) Paralytic ptosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\(374.31) Paralytic ptosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.31''', NULL,
+ '(374.31) Paralytic ptosis', '(374.31) Paralytic ptosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\(374.32) Myogenic ptosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\(374.32) Myogenic ptosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.32''', NULL,
+ '(374.32) Myogenic ptosis', '(374.32) Myogenic ptosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\(374.33) Mechanical ptosis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\(374.33) Mechanical ptosis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.33''', NULL,
+ '(374.33) Mechanical ptosis', '(374.33) Mechanical ptosis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\(374.34) Blepharochalasis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other disorders of eyelids (374)\Ptosis of eyelid (374.3)\(374.34) Blepharochalasis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''374.34''', NULL,
+ '(374.34) Blepharochalasis', '(374.34) Blepharochalasis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362''', NULL,
+ 'Other retinal disorders (362)', 'Other retinal disorders (362)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\(362.9) Unspecified retinal disorder\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\(362.9) Unspecified retinal disorder\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.9''', NULL,
+ '(362.9) Unspecified retinal disorder', '(362.9) Unspecified retinal disorder', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.5''', NULL,
+ 'Degeneration of macula and posterior pole of retina (362.5)', 'Degeneration of macula and posterior pole of retina (362.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.50) Macular degeneration (senile), unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.50) Macular degeneration (senile), unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.50) Macular degeneration (senile''', NULL,
+ '(362.50) Macular degeneration (senile), unspecified', '(362.50) Macular degeneration (senile), unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.51) Nonexudative senile macular degeneration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.51) Nonexudative senile macular degeneration\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.51''', NULL,
+ '(362.51) Nonexudative senile macular degeneration', '(362.51) Nonexudative senile macular degeneration', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.52) Exudative senile macular degeneration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.52) Exudative senile macular degeneration\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.52''', NULL,
+ '(362.52) Exudative senile macular degeneration', '(362.52) Exudative senile macular degeneration', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.53) Cystoid macular degeneration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.53) Cystoid macular degeneration\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.53''', NULL,
+ '(362.53) Cystoid macular degeneration', '(362.53) Cystoid macular degeneration', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.54) Macular cyst, hole, or pseudohole\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.54) Macular cyst, hole, or pseudohole\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.54''', NULL,
+ '(362.54) Macular cyst, hole, or pseudohole', '(362.54) Macular cyst, hole, or pseudohole', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.55) Toxic maculopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.55) Toxic maculopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.55''', NULL,
+ '(362.55) Toxic maculopathy', '(362.55) Toxic maculopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.56) Macular puckering\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.56) Macular puckering\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.56''', NULL,
+ '(362.56) Macular puckering', '(362.56) Macular puckering', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.57) Drusen (degenerative)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Degeneration of macula and posterior pole of retina (362.5)\(362.57) Drusen (degenerative)\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.57) Drusen (degenerative''', NULL,
+ '(362.57) Drusen (degenerative)', '(362.57) Drusen (degenerative)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.0''', NULL,
+ 'Diabetic retinopathy (362.0)', 'Diabetic retinopathy (362.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\(362.01) Background diabetic retinopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\(362.01) Background diabetic retinopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.01''', NULL,
+ '(362.01) Background diabetic retinopathy', '(362.01) Background diabetic retinopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\(362.02) Proliferative diabetic retinopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\(362.02) Proliferative diabetic retinopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.02''', NULL,
+ '(362.02) Proliferative diabetic retinopathy', '(362.02) Proliferative diabetic retinopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\(362.03) Nonproliferative diabetic retinopathy NOS\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\(362.03) Nonproliferative diabetic retinopathy NOS\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.03''', NULL,
+ '(362.03) Nonproliferative diabetic retinopathy NOS', '(362.03) Nonproliferative diabetic retinopathy NOS', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\(362.04) Mild nonproliferative diabetic retinopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\(362.04) Mild nonproliferative diabetic retinopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.04''', NULL,
+ '(362.04) Mild nonproliferative diabetic retinopathy', '(362.04) Mild nonproliferative diabetic retinopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\(362.05) Moderate nonproliferative diabetic retinopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\(362.05) Moderate nonproliferative diabetic retinopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.05''', NULL,
+ '(362.05) Moderate nonproliferative diabetic retinopathy', '(362.05) Moderate nonproliferative diabetic retinopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\(362.06) Severe nonproliferative diabetic retinopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\(362.06) Severe nonproliferative diabetic retinopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.06''', NULL,
+ '(362.06) Severe nonproliferative diabetic retinopathy', '(362.06) Severe nonproliferative diabetic retinopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\(362.07) Diabetic macular edema\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Diabetic retinopathy (362.0)\(362.07) Diabetic macular edema\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.07''', NULL,
+ '(362.07) Diabetic macular edema', '(362.07) Diabetic macular edema', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.7''', NULL,
+ 'Hereditary retinal dystrophies (362.7)', 'Hereditary retinal dystrophies (362.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.70) Hereditary retinal dystrophy, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.70) Hereditary retinal dystrophy, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.70''', NULL,
+ '(362.70) Hereditary retinal dystrophy, unspecified', '(362.70) Hereditary retinal dystrophy, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.71) Retinal dystrophy in systemic or cerebroretinal lipidoses\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.71) Retinal dystrophy in systemic or cerebroretinal lipidoses\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.71''', NULL,
+ '(362.71) Retinal dystrophy in systemic or cerebroretinal lipidoses', '(362.71) Retinal dystrophy in systemic or cerebroretinal lipidoses', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.72) Retinal dystrophy in other systemic disorders and syndromes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.72) Retinal dystrophy in other systemic disorders and syndromes\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.72''', NULL,
+ '(362.72) Retinal dystrophy in other systemic disorders and syndromes', '(362.72) Retinal dystrophy in other systemic disorders and syndromes', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.73) Vitreoretinal dystrophies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.73) Vitreoretinal dystrophies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.73''', NULL,
+ '(362.73) Vitreoretinal dystrophies', '(362.73) Vitreoretinal dystrophies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.74) Pigmentary retinal dystrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.74) Pigmentary retinal dystrophy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.74''', NULL,
+ '(362.74) Pigmentary retinal dystrophy', '(362.74) Pigmentary retinal dystrophy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.75) Other dystrophies primarily involving the sensory retina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.75) Other dystrophies primarily involving the sensory retina\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.75''', NULL,
+ '(362.75) Other dystrophies primarily involving the sensory retina', '(362.75) Other dystrophies primarily involving the sensory retina', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.76) Dystrophies primarily involving the retinal pigment epithelium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.76) Dystrophies primarily involving the retinal pigment epithelium\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.76''', NULL,
+ '(362.76) Dystrophies primarily involving the retinal pigment epithelium', '(362.76) Dystrophies primarily involving the retinal pigment epithelium', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.77) Dystrophies primarily involving Bruch''s membrane\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Hereditary retinal dystrophies (362.7)\(362.77) Dystrophies primarily involving Bruch''s membrane\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.77''', NULL,
+ '(362.77) Dystrophies primarily involving Bruch''s membrane', '(362.77) Dystrophies primarily involving Bruch''s membrane', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.1''', NULL,
+ 'Other background retinopathy and retinal vascular changes (362.1)', 'Other background retinopathy and retinal vascular changes (362.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.10) Background retinopathy, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.10) Background retinopathy, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.10''', NULL,
+ '(362.10) Background retinopathy, unspecified', '(362.10) Background retinopathy, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.11) Hypertensive retinopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.11) Hypertensive retinopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.11''', NULL,
+ '(362.11) Hypertensive retinopathy', '(362.11) Hypertensive retinopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.12) Exudative retinopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.12) Exudative retinopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.12''', NULL,
+ '(362.12) Exudative retinopathy', '(362.12) Exudative retinopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.13) Changes in vascular appearance of retina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.13) Changes in vascular appearance of retina\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.13''', NULL,
+ '(362.13) Changes in vascular appearance of retina', '(362.13) Changes in vascular appearance of retina', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.14) Retinal microaneurysms NOS\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.14) Retinal microaneurysms NOS\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.14''', NULL,
+ '(362.14) Retinal microaneurysms NOS', '(362.14) Retinal microaneurysms NOS', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.15) Retinal telangiectasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.15) Retinal telangiectasia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.15''', NULL,
+ '(362.15) Retinal telangiectasia', '(362.15) Retinal telangiectasia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.16) Retinal neovascularization NOS\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.16) Retinal neovascularization NOS\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.16''', NULL,
+ '(362.16) Retinal neovascularization NOS', '(362.16) Retinal neovascularization NOS', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.17) Other intraretinal microvascular abnormalities\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.17) Other intraretinal microvascular abnormalities\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.17''', NULL,
+ '(362.17) Other intraretinal microvascular abnormalities', '(362.17) Other intraretinal microvascular abnormalities', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.18) Retinal vasculitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other background retinopathy and retinal vascular changes (362.1)\(362.18) Retinal vasculitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.18''', NULL,
+ '(362.18) Retinal vasculitis', '(362.18) Retinal vasculitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.2''', NULL,
+ 'Other proliferative retinopathy (362.2)', 'Other proliferative retinopathy (362.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\(362.21) Retrolental fibroplasia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\(362.21) Retrolental fibroplasia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.21''', NULL,
+ '(362.21) Retrolental fibroplasia', '(362.21) Retrolental fibroplasia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\(362.22) Retinopathy of prematurity, stage 0\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\(362.22) Retinopathy of prematurity, stage 0\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.22''', NULL,
+ '(362.22) Retinopathy of prematurity, stage 0', '(362.22) Retinopathy of prematurity, stage 0', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\(362.23) Retinopathy of prematurity, stage 1\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\(362.23) Retinopathy of prematurity, stage 1\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.23''', NULL,
+ '(362.23) Retinopathy of prematurity, stage 1', '(362.23) Retinopathy of prematurity, stage 1', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\(362.24) Retinopathy of prematurity, stage 2\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\(362.24) Retinopathy of prematurity, stage 2\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.24''', NULL,
+ '(362.24) Retinopathy of prematurity, stage 2', '(362.24) Retinopathy of prematurity, stage 2', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\(362.25) Retinopathy of prematurity, stage 3\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\(362.25) Retinopathy of prematurity, stage 3\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.25''', NULL,
+ '(362.25) Retinopathy of prematurity, stage 3', '(362.25) Retinopathy of prematurity, stage 3', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\(362.26) Retinopathy of prematurity, stage 4\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\(362.26) Retinopathy of prematurity, stage 4\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.26''', NULL,
+ '(362.26) Retinopathy of prematurity, stage 4', '(362.26) Retinopathy of prematurity, stage 4', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\(362.29) Other nondiabetic proliferative retinopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other proliferative retinopathy (362.2)\(362.29) Other nondiabetic proliferative retinopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.29''', NULL,
+ '(362.29) Other nondiabetic proliferative retinopathy', '(362.29) Other nondiabetic proliferative retinopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.8''', NULL,
+ 'Other retinal disorders (362.8)', 'Other retinal disorders (362.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\(362.81) Retinal hemorrhage\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\(362.81) Retinal hemorrhage\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.81''', NULL,
+ '(362.81) Retinal hemorrhage', '(362.81) Retinal hemorrhage', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\(362.82) Retinal exudates and deposits\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\(362.82) Retinal exudates and deposits\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.82''', NULL,
+ '(362.82) Retinal exudates and deposits', '(362.82) Retinal exudates and deposits', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\(362.83) Retinal edema\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\(362.83) Retinal edema\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.83''', NULL,
+ '(362.83) Retinal edema', '(362.83) Retinal edema', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\(362.84) Retinal ischemia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\(362.84) Retinal ischemia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.84''', NULL,
+ '(362.84) Retinal ischemia', '(362.84) Retinal ischemia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\(362.85) Retinal nerve fiber bundle defects\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\(362.85) Retinal nerve fiber bundle defects\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.85''', NULL,
+ '(362.85) Retinal nerve fiber bundle defects', '(362.85) Retinal nerve fiber bundle defects', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\(362.89) Other retinal disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Other retinal disorders (362.8)\(362.89) Other retinal disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.89''', NULL,
+ '(362.89) Other retinal disorders', '(362.89) Other retinal disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.6''', NULL,
+ 'Peripheral retinal degenerations (362.6)', 'Peripheral retinal degenerations (362.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\(362.60) Peripheral retinal degeneration, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\(362.60) Peripheral retinal degeneration, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.60''', NULL,
+ '(362.60) Peripheral retinal degeneration, unspecified', '(362.60) Peripheral retinal degeneration, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\(362.61) Paving stone degeneration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\(362.61) Paving stone degeneration\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.61''', NULL,
+ '(362.61) Paving stone degeneration', '(362.61) Paving stone degeneration', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\(362.62) Microcystoid degeneration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\(362.62) Microcystoid degeneration\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.62''', NULL,
+ '(362.62) Microcystoid degeneration', '(362.62) Microcystoid degeneration', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\(362.63) Lattice degeneration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\(362.63) Lattice degeneration\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.63''', NULL,
+ '(362.63) Lattice degeneration', '(362.63) Lattice degeneration', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\(362.64) Senile reticular degeneration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\(362.64) Senile reticular degeneration\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.64''', NULL,
+ '(362.64) Senile reticular degeneration', '(362.64) Senile reticular degeneration', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\(362.65) Secondary pigmentary degeneration\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\(362.65) Secondary pigmentary degeneration\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.65''', NULL,
+ '(362.65) Secondary pigmentary degeneration', '(362.65) Secondary pigmentary degeneration', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\(362.66) Secondary vitreoretinal degenerations\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Peripheral retinal degenerations (362.6)\(362.66) Secondary vitreoretinal degenerations\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.66''', NULL,
+ '(362.66) Secondary vitreoretinal degenerations', '(362.66) Secondary vitreoretinal degenerations', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.3''', NULL,
+ 'Retinal vascular occlusion (362.3)', 'Retinal vascular occlusion (362.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.30) Retinal vascular occlusion, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.30) Retinal vascular occlusion, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.30''', NULL,
+ '(362.30) Retinal vascular occlusion, unspecified', '(362.30) Retinal vascular occlusion, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.31) Central retinal artery occlusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.31) Central retinal artery occlusion\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.31''', NULL,
+ '(362.31) Central retinal artery occlusion', '(362.31) Central retinal artery occlusion', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.32) Retinal arterial branch occlusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.32) Retinal arterial branch occlusion\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.32''', NULL,
+ '(362.32) Retinal arterial branch occlusion', '(362.32) Retinal arterial branch occlusion', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.33) Partial retinal arterial occlusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.33) Partial retinal arterial occlusion\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.33''', NULL,
+ '(362.33) Partial retinal arterial occlusion', '(362.33) Partial retinal arterial occlusion', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.34) Transient retinal arterial occlusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.34) Transient retinal arterial occlusion\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.34''', NULL,
+ '(362.34) Transient retinal arterial occlusion', '(362.34) Transient retinal arterial occlusion', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.35) Central retinal vein occlusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.35) Central retinal vein occlusion\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.35''', NULL,
+ '(362.35) Central retinal vein occlusion', '(362.35) Central retinal vein occlusion', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.36) Venous tributary (branch) occlusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.36) Venous tributary (branch) occlusion\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.36) Venous tributary (branch''', NULL,
+ '(362.36) Venous tributary (branch) occlusion', '(362.36) Venous tributary (branch) occlusion', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.37) Venous engorgement\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Retinal vascular occlusion (362.3)\(362.37) Venous engorgement\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.37''', NULL,
+ '(362.37) Venous engorgement', '(362.37) Venous engorgement', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Separation of retinal layers (362.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Separation of retinal layers (362.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.4''', NULL,
+ 'Separation of retinal layers (362.4)', 'Separation of retinal layers (362.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Separation of retinal layers (362.4)\(362.40) Retinal layer separation, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Separation of retinal layers (362.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Separation of retinal layers (362.4)\(362.40) Retinal layer separation, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.40''', NULL,
+ '(362.40) Retinal layer separation, unspecified', '(362.40) Retinal layer separation, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Separation of retinal layers (362.4)\(362.41) Central serous retinopathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Separation of retinal layers (362.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Separation of retinal layers (362.4)\(362.41) Central serous retinopathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.41''', NULL,
+ '(362.41) Central serous retinopathy', '(362.41) Central serous retinopathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Separation of retinal layers (362.4)\(362.42) Serous detachment of retinal pigment epithelium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Separation of retinal layers (362.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Separation of retinal layers (362.4)\(362.42) Serous detachment of retinal pigment epithelium\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.42''', NULL,
+ '(362.42) Serous detachment of retinal pigment epithelium', '(362.42) Serous detachment of retinal pigment epithelium', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Separation of retinal layers (362.4)\(362.43) Hemorrhagic detachment of retinal pigment epithelium\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Separation of retinal layers (362.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Other retinal disorders (362)\Separation of retinal layers (362.4)\(362.43) Hemorrhagic detachment of retinal pigment epithelium\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''362.43''', NULL,
+ '(362.43) Hemorrhagic detachment of retinal pigment epithelium', '(362.43) Hemorrhagic detachment of retinal pigment epithelium', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361''', NULL,
+ 'Retinal detachments and defects (361)', 'Retinal detachments and defects (361)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\(361.2) Serous retinal detachment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\(361.2) Serous retinal detachment\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.2''', NULL,
+ '(361.2) Serous retinal detachment', '(361.2) Serous retinal detachment', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\(361.9) Unspecified retinal detachment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\(361.9) Unspecified retinal detachment\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.9''', NULL,
+ '(361.9) Unspecified retinal detachment', '(361.9) Unspecified retinal detachment', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Other forms of retinal detachment (361.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Other forms of retinal detachment (361.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.8''', NULL,
+ 'Other forms of retinal detachment (361.8)', 'Other forms of retinal detachment (361.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Other forms of retinal detachment (361.8)\(361.81) Traction detachment of retina\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Other forms of retinal detachment (361.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Other forms of retinal detachment (361.8)\(361.81) Traction detachment of retina\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.81''', NULL,
+ '(361.81) Traction detachment of retina', '(361.81) Traction detachment of retina', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Other forms of retinal detachment (361.8)\(361.89) Other forms of retinal detachment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Other forms of retinal detachment (361.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Other forms of retinal detachment (361.8)\(361.89) Other forms of retinal detachment\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.89''', NULL,
+ '(361.89) Other forms of retinal detachment', '(361.89) Other forms of retinal detachment', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal defects without detachment (361.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal defects without detachment (361.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.3''', NULL,
+ 'Retinal defects without detachment (361.3)', 'Retinal defects without detachment (361.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal defects without detachment (361.3)\(361.30) Retinal defect, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal defects without detachment (361.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal defects without detachment (361.3)\(361.30) Retinal defect, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.30''', NULL,
+ '(361.30) Retinal defect, unspecified', '(361.30) Retinal defect, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal defects without detachment (361.3)\(361.31) Round hole of retina without detachment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal defects without detachment (361.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal defects without detachment (361.3)\(361.31) Round hole of retina without detachment\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.31''', NULL,
+ '(361.31) Round hole of retina without detachment', '(361.31) Round hole of retina without detachment', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal defects without detachment (361.3)\(361.32) Horseshoe tear of retina without detachment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal defects without detachment (361.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal defects without detachment (361.3)\(361.32) Horseshoe tear of retina without detachment\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.32''', NULL,
+ '(361.32) Horseshoe tear of retina without detachment', '(361.32) Horseshoe tear of retina without detachment', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal defects without detachment (361.3)\(361.33) Multiple defects of retina without detachment\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal defects without detachment (361.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal defects without detachment (361.3)\(361.33) Multiple defects of retina without detachment\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.33''', NULL,
+ '(361.33) Multiple defects of retina without detachment', '(361.33) Multiple defects of retina without detachment', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.0''', NULL,
+ 'Retinal detachment with retinal defect (361.0)', 'Retinal detachment with retinal defect (361.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.00) Retinal detachment with retinal defect, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.00) Retinal detachment with retinal defect, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.00''', NULL,
+ '(361.00) Retinal detachment with retinal defect, unspecified', '(361.00) Retinal detachment with retinal defect, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.01) Recent retinal detachment, partial, with single defect\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.01) Recent retinal detachment, partial, with single defect\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.01''', NULL,
+ '(361.01) Recent retinal detachment, partial, with single defect', '(361.01) Recent retinal detachment, partial, with single defect', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.02) Recent retinal detachment, partial, with multiple defects\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.02) Recent retinal detachment, partial, with multiple defects\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.02''', NULL,
+ '(361.02) Recent retinal detachment, partial, with multiple defects', '(361.02) Recent retinal detachment, partial, with multiple defects', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.03) Recent retinal detachment, partial, with giant tear\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.03) Recent retinal detachment, partial, with giant tear\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.03''', NULL,
+ '(361.03) Recent retinal detachment, partial, with giant tear', '(361.03) Recent retinal detachment, partial, with giant tear', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.04) Recent retinal detachment, partial, with retinal dialysis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.04) Recent retinal detachment, partial, with retinal dialysis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.04''', NULL,
+ '(361.04) Recent retinal detachment, partial, with retinal dialysis', '(361.04) Recent retinal detachment, partial, with retinal dialysis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.05) Recent retinal detachment, total or subtotal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.05) Recent retinal detachment, total or subtotal\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.05''', NULL,
+ '(361.05) Recent retinal detachment, total or subtotal', '(361.05) Recent retinal detachment, total or subtotal', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.06) Old retinal detachment, partial\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.06) Old retinal detachment, partial\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.06''', NULL,
+ '(361.06) Old retinal detachment, partial', '(361.06) Old retinal detachment, partial', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.07) Old retinal detachment, total or subtotal\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinal detachment with retinal defect (361.0)\(361.07) Old retinal detachment, total or subtotal\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.07''', NULL,
+ '(361.07) Old retinal detachment, total or subtotal', '(361.07) Old retinal detachment, total or subtotal', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.1''', NULL,
+ 'Retinoschisis and retinal cysts (361.1)', 'Retinoschisis and retinal cysts (361.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\(361.10) Retinoschisis, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\(361.10) Retinoschisis, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.10''', NULL,
+ '(361.10) Retinoschisis, unspecified', '(361.10) Retinoschisis, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\(361.11) Flat retinoschisis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\(361.11) Flat retinoschisis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.11''', NULL,
+ '(361.11) Flat retinoschisis', '(361.11) Flat retinoschisis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\(361.12) Bullous retinoschisis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\(361.12) Bullous retinoschisis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.12''', NULL,
+ '(361.12) Bullous retinoschisis', '(361.12) Bullous retinoschisis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\(361.13) Primary retinal cysts\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\(361.13) Primary retinal cysts\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.13''', NULL,
+ '(361.13) Primary retinal cysts', '(361.13) Primary retinal cysts', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\(361.14) Secondary retinal cysts\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\(361.14) Secondary retinal cysts\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.14''', NULL,
+ '(361.14) Secondary retinal cysts', '(361.14) Secondary retinal cysts', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\(361.19) Other retinoschisis and retinal cysts\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Retinal detachments and defects (361)\Retinoschisis and retinal cysts (361.1)\(361.19) Other retinoschisis and retinal cysts\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''361.19''', NULL,
+ '(361.19) Other retinoschisis and retinal cysts', '(361.19) Other retinoschisis and retinal cysts', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378''', NULL,
+ 'Strabismus and other disorders of binocular eye movements (378)', 'Strabismus and other disorders of binocular eye movements (378)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\(378.9) Unspecified disorder of eye movements\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\(378.9) Unspecified disorder of eye movements\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.9''', NULL,
+ '(378.9) Unspecified disorder of eye movements', '(378.9) Unspecified disorder of eye movements', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.0''', NULL,
+ 'Esotropia (378.0)', 'Esotropia (378.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.00) Esotropia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.00) Esotropia, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.00''', NULL,
+ '(378.00) Esotropia, unspecified', '(378.00) Esotropia, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.01) Monocular esotropia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.01) Monocular esotropia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.01''', NULL,
+ '(378.01) Monocular esotropia', '(378.01) Monocular esotropia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.02) Monocular esotropia with A pattern\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.02) Monocular esotropia with A pattern\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.02''', NULL,
+ '(378.02) Monocular esotropia with A pattern', '(378.02) Monocular esotropia with A pattern', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.03) Monocular esotropia with V pattern\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.03) Monocular esotropia with V pattern\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.03''', NULL,
+ '(378.03) Monocular esotropia with V pattern', '(378.03) Monocular esotropia with V pattern', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.04) Monocular esotropia with other noncomitancies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.04) Monocular esotropia with other noncomitancies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.04''', NULL,
+ '(378.04) Monocular esotropia with other noncomitancies', '(378.04) Monocular esotropia with other noncomitancies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.05) Alternating esotropia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.05) Alternating esotropia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.05''', NULL,
+ '(378.05) Alternating esotropia', '(378.05) Alternating esotropia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.06) Alternating esotropia with A pattern\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.06) Alternating esotropia with A pattern\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.06''', NULL,
+ '(378.06) Alternating esotropia with A pattern', '(378.06) Alternating esotropia with A pattern', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.07) Alternating esotropia with V pattern\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.07) Alternating esotropia with V pattern\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.07''', NULL,
+ '(378.07) Alternating esotropia with V pattern', '(378.07) Alternating esotropia with V pattern', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.08) Alternating esotropia with other noncomitancies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Esotropia (378.0)\(378.08) Alternating esotropia with other noncomitancies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.08''', NULL,
+ '(378.08) Alternating esotropia with other noncomitancies', '(378.08) Alternating esotropia with other noncomitancies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.1''', NULL,
+ 'Exotropia (378.1)', 'Exotropia (378.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.10) Exotropia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.10) Exotropia, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.10''', NULL,
+ '(378.10) Exotropia, unspecified', '(378.10) Exotropia, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.11) Monocular exotropia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.11) Monocular exotropia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.11''', NULL,
+ '(378.11) Monocular exotropia', '(378.11) Monocular exotropia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.12) Monocular exotropia with A pattern\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.12) Monocular exotropia with A pattern\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.12''', NULL,
+ '(378.12) Monocular exotropia with A pattern', '(378.12) Monocular exotropia with A pattern', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.13) Monocular exotropia with V pattern\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.13) Monocular exotropia with V pattern\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.13''', NULL,
+ '(378.13) Monocular exotropia with V pattern', '(378.13) Monocular exotropia with V pattern', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.14) Monocular exotropia with other noncomitancies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.14) Monocular exotropia with other noncomitancies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.14''', NULL,
+ '(378.14) Monocular exotropia with other noncomitancies', '(378.14) Monocular exotropia with other noncomitancies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.15) Alternating exotropia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.15) Alternating exotropia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.15''', NULL,
+ '(378.15) Alternating exotropia', '(378.15) Alternating exotropia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.16) Alternating exotropia with A pattern\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.16) Alternating exotropia with A pattern\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.16''', NULL,
+ '(378.16) Alternating exotropia with A pattern', '(378.16) Alternating exotropia with A pattern', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.17) Alternating exotropia with V pattern\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.17) Alternating exotropia with V pattern\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.17''', NULL,
+ '(378.17) Alternating exotropia with V pattern', '(378.17) Alternating exotropia with V pattern', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.18) Alternating exotropia with other noncomitancies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Exotropia (378.1)\(378.18) Alternating exotropia with other noncomitancies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.18''', NULL,
+ '(378.18) Alternating exotropia with other noncomitancies', '(378.18) Alternating exotropia with other noncomitancies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.4''', NULL,
+ 'Heterophoria (378.4)', 'Heterophoria (378.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\(378.40) Heterophoria, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\(378.40) Heterophoria, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.40''', NULL,
+ '(378.40) Heterophoria, unspecified', '(378.40) Heterophoria, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\(378.41) Esophoria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\(378.41) Esophoria\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.41''', NULL,
+ '(378.41) Esophoria', '(378.41) Esophoria', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\(378.42) Exophoria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\(378.42) Exophoria\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.42''', NULL,
+ '(378.42) Exophoria', '(378.42) Exophoria', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\(378.43) Vertical heterophoria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\(378.43) Vertical heterophoria\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.43''', NULL,
+ '(378.43) Vertical heterophoria', '(378.43) Vertical heterophoria', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\(378.44) Cyclophoria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\(378.44) Cyclophoria\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.44''', NULL,
+ '(378.44) Cyclophoria', '(378.44) Cyclophoria', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\(378.45) Alternating hyperphoria\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Heterophoria (378.4)\(378.45) Alternating hyperphoria\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.45''', NULL,
+ '(378.45) Alternating hyperphoria', '(378.45) Alternating hyperphoria', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.2''', NULL,
+ 'Intermittent heterotropia (378.2)', 'Intermittent heterotropia (378.2)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\(378.20) Intermittent heterotropia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\(378.20) Intermittent heterotropia, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.20''', NULL,
+ '(378.20) Intermittent heterotropia, unspecified', '(378.20) Intermittent heterotropia, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\(378.21) Intermittent esotropia, monocular\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\(378.21) Intermittent esotropia, monocular\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.21''', NULL,
+ '(378.21) Intermittent esotropia, monocular', '(378.21) Intermittent esotropia, monocular', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\(378.22) Intermittent esotropia, alternating\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\(378.22) Intermittent esotropia, alternating\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.22''', NULL,
+ '(378.22) Intermittent esotropia, alternating', '(378.22) Intermittent esotropia, alternating', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\(378.23) Intermittent exotropia, monocular\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\(378.23) Intermittent exotropia, monocular\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.23''', NULL,
+ '(378.23) Intermittent exotropia, monocular', '(378.23) Intermittent exotropia, monocular', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\(378.24) Intermittent exotropia, alternating\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Intermittent heterotropia (378.2)\(378.24) Intermittent exotropia, alternating\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.24''', NULL,
+ '(378.24) Intermittent exotropia, alternating', '(378.24) Intermittent exotropia, alternating', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Mechanical strabismus (378.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Mechanical strabismus (378.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.6''', NULL,
+ 'Mechanical strabismus (378.6)', 'Mechanical strabismus (378.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Mechanical strabismus (378.6)\(378.60) Mechanical strabismus, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Mechanical strabismus (378.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Mechanical strabismus (378.6)\(378.60) Mechanical strabismus, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.60''', NULL,
+ '(378.60) Mechanical strabismus, unspecified', '(378.60) Mechanical strabismus, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Mechanical strabismus (378.6)\(378.61) Brown''s (tendon) sheath syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Mechanical strabismus (378.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Mechanical strabismus (378.6)\(378.61) Brown''s (tendon) sheath syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.61) Brown''s (tendon''', NULL,
+ '(378.61) Brown''s (tendon) sheath syndrome', '(378.61) Brown''s (tendon) sheath syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Mechanical strabismus (378.6)\(378.62) Mechanical strabismus from other musculofascial disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Mechanical strabismus (378.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Mechanical strabismus (378.6)\(378.62) Mechanical strabismus from other musculofascial disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.62''', NULL,
+ '(378.62) Mechanical strabismus from other musculofascial disorders', '(378.62) Mechanical strabismus from other musculofascial disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Mechanical strabismus (378.6)\(378.63) Limited duction associated with other conditions\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Mechanical strabismus (378.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Mechanical strabismus (378.6)\(378.63) Limited duction associated with other conditions\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.63''', NULL,
+ '(378.63) Limited duction associated with other conditions', '(378.63) Limited duction associated with other conditions', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.3''', NULL,
+ 'Other and unspecified heterotropia (378.3)', 'Other and unspecified heterotropia (378.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\(378.30) Heterotropia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\(378.30) Heterotropia, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.30''', NULL,
+ '(378.30) Heterotropia, unspecified', '(378.30) Heterotropia, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\(378.31) Hypertropia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\(378.31) Hypertropia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.31''', NULL,
+ '(378.31) Hypertropia', '(378.31) Hypertropia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\(378.32) Hypotropia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\(378.32) Hypotropia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.32''', NULL,
+ '(378.32) Hypotropia', '(378.32) Hypotropia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\(378.33) Cyclotropia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\(378.33) Cyclotropia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.33''', NULL,
+ '(378.33) Cyclotropia', '(378.33) Cyclotropia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\(378.34) Monofixation syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\(378.34) Monofixation syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.34''', NULL,
+ '(378.34) Monofixation syndrome', '(378.34) Monofixation syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\(378.35) Accommodative component in esotropia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other and unspecified heterotropia (378.3)\(378.35) Accommodative component in esotropia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.35''', NULL,
+ '(378.35) Accommodative component in esotropia', '(378.35) Accommodative component in esotropia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.8''', NULL,
+ 'Other disorders of binocular eye movements (378.8)', 'Other disorders of binocular eye movements (378.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\(378.81) Palsy of conjugate gaze\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\(378.81) Palsy of conjugate gaze\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.81''', NULL,
+ '(378.81) Palsy of conjugate gaze', '(378.81) Palsy of conjugate gaze', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\(378.82) Spasm of conjugate gaze\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\(378.82) Spasm of conjugate gaze\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.82''', NULL,
+ '(378.82) Spasm of conjugate gaze', '(378.82) Spasm of conjugate gaze', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\(378.83) Convergence insufficiency or palsy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\(378.83) Convergence insufficiency or palsy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.83''', NULL,
+ '(378.83) Convergence insufficiency or palsy', '(378.83) Convergence insufficiency or palsy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\(378.84) Convergence excess or spasm\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\(378.84) Convergence excess or spasm\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.84''', NULL,
+ '(378.84) Convergence excess or spasm', '(378.84) Convergence excess or spasm', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\(378.85) Anomalies of divergence\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\(378.85) Anomalies of divergence\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.85''', NULL,
+ '(378.85) Anomalies of divergence', '(378.85) Anomalies of divergence', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\(378.86) Internuclear ophthalmoplegia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\(378.86) Internuclear ophthalmoplegia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.86''', NULL,
+ '(378.86) Internuclear ophthalmoplegia', '(378.86) Internuclear ophthalmoplegia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\(378.87) Other dissociated deviation of eye movements\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other disorders of binocular eye movements (378.8)\(378.87) Other dissociated deviation of eye movements\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.87''', NULL,
+ '(378.87) Other dissociated deviation of eye movements', '(378.87) Other dissociated deviation of eye movements', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other specified strabismus (378.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other specified strabismus (378.7)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.7''', NULL,
+ 'Other specified strabismus (378.7)', 'Other specified strabismus (378.7)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other specified strabismus (378.7)\(378.71) Duane''s syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other specified strabismus (378.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other specified strabismus (378.7)\(378.71) Duane''s syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.71''', NULL,
+ '(378.71) Duane''s syndrome', '(378.71) Duane''s syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other specified strabismus (378.7)\(378.72) Progressive external ophthalmoplegia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other specified strabismus (378.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other specified strabismus (378.7)\(378.72) Progressive external ophthalmoplegia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.72''', NULL,
+ '(378.72) Progressive external ophthalmoplegia', '(378.72) Progressive external ophthalmoplegia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other specified strabismus (378.7)\(378.73) Strabismus in other neuromuscular disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other specified strabismus (378.7)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Other specified strabismus (378.7)\(378.73) Strabismus in other neuromuscular disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.73''', NULL,
+ '(378.73) Strabismus in other neuromuscular disorders', '(378.73) Strabismus in other neuromuscular disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.5''', NULL,
+ 'Paralytic strabismus (378.5)', 'Paralytic strabismus (378.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\(378.50) Paralytic strabismus, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\(378.50) Paralytic strabismus, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.50''', NULL,
+ '(378.50) Paralytic strabismus, unspecified', '(378.50) Paralytic strabismus, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\(378.51) Third or oculomotor nerve palsy, partial\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\(378.51) Third or oculomotor nerve palsy, partial\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.51''', NULL,
+ '(378.51) Third or oculomotor nerve palsy, partial', '(378.51) Third or oculomotor nerve palsy, partial', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\(378.52) Third or oculomotor nerve palsy, total\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\(378.52) Third or oculomotor nerve palsy, total\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.52''', NULL,
+ '(378.52) Third or oculomotor nerve palsy, total', '(378.52) Third or oculomotor nerve palsy, total', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\(378.53) Fourth or trochlear nerve palsy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\(378.53) Fourth or trochlear nerve palsy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.53''', NULL,
+ '(378.53) Fourth or trochlear nerve palsy', '(378.53) Fourth or trochlear nerve palsy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\(378.54) Sixth or abducens nerve palsy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\(378.54) Sixth or abducens nerve palsy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.54''', NULL,
+ '(378.54) Sixth or abducens nerve palsy', '(378.54) Sixth or abducens nerve palsy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\(378.55) External ophthalmoplegia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\(378.55) External ophthalmoplegia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.55''', NULL,
+ '(378.55) External ophthalmoplegia', '(378.55) External ophthalmoplegia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\(378.56) Total ophthalmoplegia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Strabismus and other disorders of binocular eye movements (378)\Paralytic strabismus (378.5)\(378.56) Total ophthalmoplegia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''378.56''', NULL,
+ '(378.56) Total ophthalmoplegia', '(378.56) Total ophthalmoplegia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368''', NULL,
+ 'Visual disturbances (368)', 'Visual disturbances (368)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\(368.2) Diplopia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\(368.2) Diplopia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.2''', NULL,
+ '(368.2) Diplopia', '(368.2) Diplopia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\(368.8) Other specified visual disturbances\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\(368.8) Other specified visual disturbances\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.8''', NULL,
+ '(368.8) Other specified visual disturbances', '(368.8) Other specified visual disturbances', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\(368.9) Unspecified visual disturbance\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\(368.9) Unspecified visual disturbance\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.9''', NULL,
+ '(368.9) Unspecified visual disturbance', '(368.9) Unspecified visual disturbance', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Amblyopia ex anopsia (368.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Amblyopia ex anopsia (368.0)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.0''', NULL,
+ 'Amblyopia ex anopsia (368.0)', 'Amblyopia ex anopsia (368.0)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Amblyopia ex anopsia (368.0)\(368.00) Amblyopia, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Amblyopia ex anopsia (368.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Amblyopia ex anopsia (368.0)\(368.00) Amblyopia, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.00''', NULL,
+ '(368.00) Amblyopia, unspecified', '(368.00) Amblyopia, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Amblyopia ex anopsia (368.0)\(368.01) Strabismic amblyopia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Amblyopia ex anopsia (368.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Amblyopia ex anopsia (368.0)\(368.01) Strabismic amblyopia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.01''', NULL,
+ '(368.01) Strabismic amblyopia', '(368.01) Strabismic amblyopia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Amblyopia ex anopsia (368.0)\(368.02) Deprivation amblyopia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Amblyopia ex anopsia (368.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Amblyopia ex anopsia (368.0)\(368.02) Deprivation amblyopia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.02''', NULL,
+ '(368.02) Deprivation amblyopia', '(368.02) Deprivation amblyopia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Amblyopia ex anopsia (368.0)\(368.03) Refractive amblyopia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Amblyopia ex anopsia (368.0)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Amblyopia ex anopsia (368.0)\(368.03) Refractive amblyopia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.03''', NULL,
+ '(368.03) Refractive amblyopia', '(368.03) Refractive amblyopia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.5''', NULL,
+ 'Color vision deficiencies (368.5)', 'Color vision deficiencies (368.5)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\(368.51) Protan defect\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\(368.51) Protan defect\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.51''', NULL,
+ '(368.51) Protan defect', '(368.51) Protan defect', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\(368.52) Deutan defect\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\(368.52) Deutan defect\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.52''', NULL,
+ '(368.52) Deutan defect', '(368.52) Deutan defect', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\(368.53) Tritan defect\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\(368.53) Tritan defect\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.53''', NULL,
+ '(368.53) Tritan defect', '(368.53) Tritan defect', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\(368.54) Achromatopsia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\(368.54) Achromatopsia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.54''', NULL,
+ '(368.54) Achromatopsia', '(368.54) Achromatopsia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\(368.55) Acquired color vision deficiencies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\(368.55) Acquired color vision deficiencies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.55''', NULL,
+ '(368.55) Acquired color vision deficiencies', '(368.55) Acquired color vision deficiencies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\(368.59) Other color vision deficiencies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Color vision deficiencies (368.5)\(368.59) Other color vision deficiencies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.59''', NULL,
+ '(368.59) Other color vision deficiencies', '(368.59) Other color vision deficiencies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.6''', NULL,
+ 'Night blindness (368.6)', 'Night blindness (368.6)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\(368.60) Night blindness, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\(368.60) Night blindness, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.60''', NULL,
+ '(368.60) Night blindness, unspecified', '(368.60) Night blindness, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\(368.61) Congenital night blindness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\(368.61) Congenital night blindness\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.61''', NULL,
+ '(368.61) Congenital night blindness', '(368.61) Congenital night blindness', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\(368.62) Acquired night blindness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\(368.62) Acquired night blindness\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.62''', NULL,
+ '(368.62) Acquired night blindness', '(368.62) Acquired night blindness', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\(368.63) Abnormal dark adaptation curve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\(368.63) Abnormal dark adaptation curve\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.63''', NULL,
+ '(368.63) Abnormal dark adaptation curve', '(368.63) Abnormal dark adaptation curve', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\(368.69) Other night blindness\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Night blindness (368.6)\(368.69) Other night blindness\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.69''', NULL,
+ '(368.69) Other night blindness', '(368.69) Other night blindness', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.3''', NULL,
+ 'Other disorders of binocular vision (368.3)', 'Other disorders of binocular vision (368.3)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\(368.30) Binocular vision disorder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\(368.30) Binocular vision disorder, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.30''', NULL,
+ '(368.30) Binocular vision disorder, unspecified', '(368.30) Binocular vision disorder, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\(368.31) Suppression of binocular vision\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\(368.31) Suppression of binocular vision\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.31''', NULL,
+ '(368.31) Suppression of binocular vision', '(368.31) Suppression of binocular vision', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\(368.32) Simultaneous visual perception without fusion\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\(368.32) Simultaneous visual perception without fusion\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.32''', NULL,
+ '(368.32) Simultaneous visual perception without fusion', '(368.32) Simultaneous visual perception without fusion', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\(368.33) Fusion with defective stereopsis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\(368.33) Fusion with defective stereopsis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.33''', NULL,
+ '(368.33) Fusion with defective stereopsis', '(368.33) Fusion with defective stereopsis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\(368.34) Abnormal retinal correspondence\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Other disorders of binocular vision (368.3)\(368.34) Abnormal retinal correspondence\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.34''', NULL,
+ '(368.34) Abnormal retinal correspondence', '(368.34) Abnormal retinal correspondence', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.1''', NULL,
+ 'Subjective visual disturbances (368.1)', 'Subjective visual disturbances (368.1)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\(368.10) Subjective visual disturbance, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\(368.10) Subjective visual disturbance, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.10''', NULL,
+ '(368.10) Subjective visual disturbance, unspecified', '(368.10) Subjective visual disturbance, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\(368.11) Sudden visual loss\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\(368.11) Sudden visual loss\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.11''', NULL,
+ '(368.11) Sudden visual loss', '(368.11) Sudden visual loss', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\(368.12) Transient visual loss\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\(368.12) Transient visual loss\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.12''', NULL,
+ '(368.12) Transient visual loss', '(368.12) Transient visual loss', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\(368.13) Visual discomfort\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\(368.13) Visual discomfort\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.13''', NULL,
+ '(368.13) Visual discomfort', '(368.13) Visual discomfort', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\(368.14) Visual distortions of shape and size\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\(368.14) Visual distortions of shape and size\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.14''', NULL,
+ '(368.14) Visual distortions of shape and size', '(368.14) Visual distortions of shape and size', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\(368.15) Other visual distortions and entoptic phenomena\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\(368.15) Other visual distortions and entoptic phenomena\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.15''', NULL,
+ '(368.15) Other visual distortions and entoptic phenomena', '(368.15) Other visual distortions and entoptic phenomena', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\(368.16) Psychophysical visual disturbances\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Subjective visual disturbances (368.1)\(368.16) Psychophysical visual disturbances\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.16''', NULL,
+ '(368.16) Psychophysical visual disturbances', '(368.16) Psychophysical visual disturbances', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.4''', NULL,
+ 'Visual field defects (368.4)', 'Visual field defects (368.4)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.40) Visual field defect, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.40) Visual field defect, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.40''', NULL,
+ '(368.40) Visual field defect, unspecified', '(368.40) Visual field defect, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.41) Scotoma involving central area\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.41) Scotoma involving central area\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.41''', NULL,
+ '(368.41) Scotoma involving central area', '(368.41) Scotoma involving central area', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.42) Scotoma of blind spot area\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.42) Scotoma of blind spot area\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.42''', NULL,
+ '(368.42) Scotoma of blind spot area', '(368.42) Scotoma of blind spot area', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.43) Sector or arcuate visual field defects\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.43) Sector or arcuate visual field defects\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.43''', NULL,
+ '(368.43) Sector or arcuate visual field defects', '(368.43) Sector or arcuate visual field defects', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.44) Other localized visual field defect\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.44) Other localized visual field defect\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.44''', NULL,
+ '(368.44) Other localized visual field defect', '(368.44) Other localized visual field defect', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.45) Generalized visual field contraction or constriction\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.45) Generalized visual field contraction or constriction\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.45''', NULL,
+ '(368.45) Generalized visual field contraction or constriction', '(368.45) Generalized visual field contraction or constriction', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.46) Homonymous bilateral field defects\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.46) Homonymous bilateral field defects\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.46''', NULL,
+ '(368.46) Homonymous bilateral field defects', '(368.46) Homonymous bilateral field defects', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.47) Heteronymous bilateral field defects\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the eye and adnexa (360-379.99)\Visual disturbances (368)\Visual field defects (368.4)\(368.47) Heteronymous bilateral field defects\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''368.47''', NULL,
+ '(368.47) Heteronymous bilateral field defects', '(368.47) Heteronymous bilateral field defects', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value BETWEEN ''350'' AND ''359.99''', NULL,
+ 'Disorders of the peripheral nervous system (350-359.99)', 'Disorders of the peripheral nervous system (350-359.99)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''352''', NULL,
+ 'Disorders of other cranial nerves (352)', 'Disorders of other cranial nerves (352)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.0) Disorders of olfactory (1st) nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.0) Disorders of olfactory (1st) nerve\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''352.0) Disorders of olfactory (1st''', NULL,
+ '(352.0) Disorders of olfactory (1st) nerve', '(352.0) Disorders of olfactory (1st) nerve', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.1) Glossopharyngeal neuralgia\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.1) Glossopharyngeal neuralgia\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''352.1''', NULL,
+ '(352.1) Glossopharyngeal neuralgia', '(352.1) Glossopharyngeal neuralgia', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.2) Other disorders of glossopharyngeal [9th] nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.2) Other disorders of glossopharyngeal [9th] nerve\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''352.2''', NULL,
+ '(352.2) Other disorders of glossopharyngeal [9th] nerve', '(352.2) Other disorders of glossopharyngeal [9th] nerve', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.3) Disorders of pneumogastric [10th] nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.3) Disorders of pneumogastric [10th] nerve\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''352.3''', NULL,
+ '(352.3) Disorders of pneumogastric [10th] nerve', '(352.3) Disorders of pneumogastric [10th] nerve', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.4) Disorders of accessory [11th] nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.4) Disorders of accessory [11th] nerve\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''352.4''', NULL,
+ '(352.4) Disorders of accessory [11th] nerve', '(352.4) Disorders of accessory [11th] nerve', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.5) Disorders of hypoglossal [12th] nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.5) Disorders of hypoglossal [12th] nerve\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''352.5''', NULL,
+ '(352.5) Disorders of hypoglossal [12th] nerve', '(352.5) Disorders of hypoglossal [12th] nerve', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.6) Multiple cranial nerve palsies\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.6) Multiple cranial nerve palsies\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''352.6''', NULL,
+ '(352.6) Multiple cranial nerve palsies', '(352.6) Multiple cranial nerve palsies', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.9) Unspecified disorder of cranial nerves\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Disorders of other cranial nerves (352)\(352.9) Unspecified disorder of cranial nerves\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''352.9''', NULL,
+ '(352.9) Unspecified disorder of cranial nerves', '(352.9) Unspecified disorder of cranial nerves', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Facial nerve disorders (351)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Facial nerve disorders (351)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''351''', NULL,
+ 'Facial nerve disorders (351)', 'Facial nerve disorders (351)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Facial nerve disorders (351)\(351.0) Bell''s palsy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Facial nerve disorders (351)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Facial nerve disorders (351)\(351.0) Bell''s palsy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''351.0''', NULL,
+ '(351.0) Bell''s palsy', '(351.0) Bell''s palsy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Facial nerve disorders (351)\(351.1) Geniculate ganglionitis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Facial nerve disorders (351)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Facial nerve disorders (351)\(351.1) Geniculate ganglionitis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''351.1''', NULL,
+ '(351.1) Geniculate ganglionitis', '(351.1) Geniculate ganglionitis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Facial nerve disorders (351)\(351.8) Other facial nerve disorders\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Facial nerve disorders (351)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Facial nerve disorders (351)\(351.8) Other facial nerve disorders\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''351.8''', NULL,
+ '(351.8) Other facial nerve disorders', '(351.8) Other facial nerve disorders', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Facial nerve disorders (351)\(351.9) Facial nerve disorder, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Facial nerve disorders (351)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Facial nerve disorders (351)\(351.9) Facial nerve disorder, unspecified\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''351.9''', NULL,
+ '(351.9) Facial nerve disorder, unspecified', '(351.9) Facial nerve disorder, unspecified', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''356''', NULL,
+ 'Hereditary and idiopathic peripheral neuropathy (356)', 'Hereditary and idiopathic peripheral neuropathy (356)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\(356.0) Hereditary peripheral neuropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\(356.0) Hereditary peripheral neuropathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''356.0''', NULL,
+ '(356.0) Hereditary peripheral neuropathy', '(356.0) Hereditary peripheral neuropathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\(356.1) Peroneal muscular atrophy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\(356.1) Peroneal muscular atrophy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''356.1''', NULL,
+ '(356.1) Peroneal muscular atrophy', '(356.1) Peroneal muscular atrophy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\(356.2) Hereditary sensory neuropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\(356.2) Hereditary sensory neuropathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''356.2''', NULL,
+ '(356.2) Hereditary sensory neuropathy', '(356.2) Hereditary sensory neuropathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\(356.3) Refsum''s disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\(356.3) Refsum''s disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''356.3''', NULL,
+ '(356.3) Refsum''s disease', '(356.3) Refsum''s disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\(356.4) Idiopathic progressive polyneuropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\(356.4) Idiopathic progressive polyneuropathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''356.4''', NULL,
+ '(356.4) Idiopathic progressive polyneuropathy', '(356.4) Idiopathic progressive polyneuropathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\(356.8) Other specified idiopathic peripheral neuropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\(356.8) Other specified idiopathic peripheral neuropathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''356.8''', NULL,
+ '(356.8) Other specified idiopathic peripheral neuropathy', '(356.8) Other specified idiopathic peripheral neuropathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\(356.9) Unspecified hereditary and idiopathic peripheral neuropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Hereditary and idiopathic peripheral neuropathy (356)\(356.9) Unspecified hereditary and idiopathic peripheral neuropathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''356.9''', NULL,
+ '(356.9) Unspecified hereditary and idiopathic peripheral neuropathy', '(356.9) Unspecified hereditary and idiopathic peripheral neuropathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''357''', NULL,
+ 'Inflammatory and toxic neuropathy (357)', 'Inflammatory and toxic neuropathy (357)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.0) Acute infective polyneuritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.0) Acute infective polyneuritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''357.0''', NULL,
+ '(357.0) Acute infective polyneuritis', '(357.0) Acute infective polyneuritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.1) Polyneuropathy in collagen vascular disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.1) Polyneuropathy in collagen vascular disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''357.1''', NULL,
+ '(357.1) Polyneuropathy in collagen vascular disease', '(357.1) Polyneuropathy in collagen vascular disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.2) Polyneuropathy in diabetes\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.2) Polyneuropathy in diabetes\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''357.2''', NULL,
+ '(357.2) Polyneuropathy in diabetes', '(357.2) Polyneuropathy in diabetes', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.3) Polyneuropathy in malignant disease\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.3) Polyneuropathy in malignant disease\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''357.3''', NULL,
+ '(357.3) Polyneuropathy in malignant disease', '(357.3) Polyneuropathy in malignant disease', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.4) Polyneuropathy in other diseases classified elsewhere\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.4) Polyneuropathy in other diseases classified elsewhere\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''357.4''', NULL,
+ '(357.4) Polyneuropathy in other diseases classified elsewhere', '(357.4) Polyneuropathy in other diseases classified elsewhere', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.5) Alcoholic polyneuropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.5) Alcoholic polyneuropathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''357.5''', NULL,
+ '(357.5) Alcoholic polyneuropathy', '(357.5) Alcoholic polyneuropathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.6) Polyneuropathy due to drugs\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.6) Polyneuropathy due to drugs\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''357.6''', NULL,
+ '(357.6) Polyneuropathy due to drugs', '(357.6) Polyneuropathy due to drugs', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.7) Polyneuropathy due to other toxic agents\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.7) Polyneuropathy due to other toxic agents\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''357.7''', NULL,
+ '(357.7) Polyneuropathy due to other toxic agents', '(357.7) Polyneuropathy due to other toxic agents', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.9) Unspecified inflammatory and toxic neuropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\(357.9) Unspecified inflammatory and toxic neuropathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''357.9''', NULL,
+ '(357.9) Unspecified inflammatory and toxic neuropathy', '(357.9) Unspecified inflammatory and toxic neuropathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\Other inflammatory and toxic neuropathies (357.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\Other inflammatory and toxic neuropathies (357.8)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''357.8''', NULL,
+ 'Other inflammatory and toxic neuropathies (357.8)', 'Other inflammatory and toxic neuropathies (357.8)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\Other inflammatory and toxic neuropathies (357.8)\(357.81) Chronic inflammatory demyelinating polyneuritis\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\Other inflammatory and toxic neuropathies (357.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\Other inflammatory and toxic neuropathies (357.8)\(357.81) Chronic inflammatory demyelinating polyneuritis\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''357.81''', NULL,
+ '(357.81) Chronic inflammatory demyelinating polyneuritis', '(357.81) Chronic inflammatory demyelinating polyneuritis', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\Other inflammatory and toxic neuropathies (357.8)\(357.82) Critical illness polyneuropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\Other inflammatory and toxic neuropathies (357.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\Other inflammatory and toxic neuropathies (357.8)\(357.82) Critical illness polyneuropathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''357.82''', NULL,
+ '(357.82) Critical illness polyneuropathy', '(357.82) Critical illness polyneuropathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\Other inflammatory and toxic neuropathies (357.8)\(357.89) Other inflammatory and toxic neuropathy\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\Other inflammatory and toxic neuropathies (357.8)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Inflammatory and toxic neuropathy (357)\Other inflammatory and toxic neuropathies (357.8)\(357.89) Other inflammatory and toxic neuropathy\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''357.89''', NULL,
+ '(357.89) Other inflammatory and toxic neuropathy', '(357.89) Other inflammatory and toxic neuropathy', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\', 1, 0,
+ 1, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''355''', NULL,
+ 'Mononeuritis of lower limb (355)', 'Mononeuritis of lower limb (355)', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.0) Lesion of sciatic nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.0) Lesion of sciatic nerve\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''355.0''', NULL,
+ '(355.0) Lesion of sciatic nerve', '(355.0) Lesion of sciatic nerve', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.1) Meralgia paresthetica\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.1) Meralgia paresthetica\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''355.1''', NULL,
+ '(355.1) Meralgia paresthetica', '(355.1) Meralgia paresthetica', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.2) Other lesion of femoral nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.2) Other lesion of femoral nerve\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''355.2''', NULL,
+ '(355.2) Other lesion of femoral nerve', '(355.2) Other lesion of femoral nerve', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.3) Lesion of lateral popliteal nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.3) Lesion of lateral popliteal nerve\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''355.3''', NULL,
+ '(355.3) Lesion of lateral popliteal nerve', '(355.3) Lesion of lateral popliteal nerve', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.4) Lesion of medial popliteal nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.4) Lesion of medial popliteal nerve\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''355.4''', NULL,
+ '(355.4) Lesion of medial popliteal nerve', '(355.4) Lesion of medial popliteal nerve', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.5) Tarsal tunnel syndrome\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.5) Tarsal tunnel syndrome\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''355.5''', NULL,
+ '(355.5) Tarsal tunnel syndrome', '(355.5) Tarsal tunnel syndrome', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.6) Lesion of plantar nerve\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.6) Lesion of plantar nerve\', 1, 0,
+ 0, 0, @sqlset_condition_occurrence, '@.condition_source_value = ''355.6''', NULL,
+ '(355.6) Lesion of plantar nerve', '(355.6) Lesion of plantar nerve', GETDATE(), GETDATE()
+INSERT INTO app.Concept (ExternalId, ExternalParentId, UniversalId, IsPatientCountAutoCalculated, IsNumeric,
+ IsParent, IsRoot, SqlSetId, SqlSetWhere, SqlFieldNumeric, UiDisplayName, UiDisplayText,
+ AddDateTime, ContentLastUpdateDateTime)
+ SELECT 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous system and sense organs (320-389.99)\Disorders of the peripheral nervous system (350-359.99)\Mononeuritis of lower limb (355)\(355.8) Mononeuritis of lower limb, unspecified\', 'urn:leaf:concept:shrine:\\SHRINE\SHRINE\Diagnoses\Diseases of the nervous sys